Skip to main content

Open GoPro API and Examples

Project description

Open GoPro Python SDK

GoPro Logo

Build and Test Build Docs Code style: black PyPI MIT License

This is a Python package that provides an interface for the user to exercise the Open GoPro Bluetooth Low Energy (BLE) and Wi-Fi API's as well as install command line interfaces to take photos, videos, and view the preview stream.

Documentation

This README is only an overview of the package.

Complete documentation can be found on Open GoPro

Installation

    $ pip install open-gopro

Features

  • Top-level GoPro class interface to use both BLE / WiFi
  • Cross-platform (tested on MacOS Big Sur, Windows 10, and Ubuntu 20.04)
    • BLE implemented using bleak
    • Wi-Fi controller provided in the Open GoPro package (loosely based on the Wireless Library
  • Supports all commands, settings, and statuses from the Open GoPro API
  • Supports all versions of the Open GoPro API
  • Automatically handles connection maintenance:
    • manage camera ready / encoding
    • periodically sends keep alive signals
  • Includes detailed logging for each module
  • Includes demo scripts installed as command-line applications to show BLE and WiFi functionality
    • Take a photo
    • Take a video
    • View the live stream
    • Log the battery

Usage

To automatically connect to GoPro device via BLE and WiFI, set the preset, set video parameters, take a video, and download all files:

import time
from open_gopro import GoPro

with GoPro() as gopro:
    gopro.ble_command.load_preset(gopro.params.Preset.CINEMATIC)
    gopro.ble_setting.resolution.set(gopro.params.Resolution.RES_4K)
    gopro.ble_setting.fps.set(gopro.params.FPS.FPS_30)
    gopro.ble_command.set_shutter(gopro.params.Shutter.ON)
    time.sleep(2) # Record for 2 seconds
    gopro.ble_command.set_shutter(gopro.params.Shutter.OFF)

    # Download all of the files from the camera
    media_list = [x["n"] for x in gopro.wifi_command.get_media_list()["media"][0]["fs"]]
    for file in media_list:
        gopro.wifi_command.download_file(camera_file=file)

And much more!

Demos

Note! These demos can be found on Github

Demos can be found in the installed package in the "demos" folder. They are installed as a CLI entrypoint and can be run via:

$ gopro-photo
$ gopro-video
$ gopro-stream
$ gopro-log-battery
$ gopro-log-battery

For more information on each, try running with help as such:

$ gopro-photo --help

usage: gopro-photo [-h] [-i IDENTIFIER] [-l LOG] [-o OUTPUT]

Connect to a GoPro camera, take a photo, then download it.

optional arguments:
  -h, --help            show this help message and exit
  -i IDENTIFIER, --identifier IDENTIFIER
                        Last 4 digits of GoPro serial number, which is the last 4 digits of the default camera SSID. If not used, first discovered GoPro will be connected to
  -l LOG, --log LOG     Location to store detailed log
  -o OUTPUT, --output OUTPUT
                        Where to write the photo to. If not set, write to 'photo.jpg'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

open_gopro-0.6.1.tar.gz (63.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page