GoPro Plus is an open-source project designed to enable users to interact with the GoPro Plus media library from the command line. This project aims to provide a convenient way to access and manage your GoPro media without the need to use the web interface.
GoPro Plus supports downloading more than 25 media files at a time which is a tedious π€¦ limitation enforced by GoPro Media Library website.
π³ Docker hub: https://hub.docker.com/repository/docker/itsankoff/gopro/general
docker pull itsankoff/gopro
docker run -e AUTH_TOKEN=<gopro-auth_token> itsankoff/gopro
Supported Docker ENV variable options:
-e AUTH_TOKEN=<gopro-auth-token>
- (required) authentication token obtained from GoPro Media Library website. See setup guide.-e ACTION=<list|download>
- (optional) action to execute. The default isdownload
.-e START_PAGE=<number>
- (optional) run the<action>
from specific page (GoPro Media Library API is paginated). The default1
.-e PAGES=<number>
- (optional) run the<action>
over the specified number of pages. Default1000000
which should mean max and will download the all cloud assets.-e PER_PAGE=<number>
- (optional) specify number of items per page. Default15
.-e DOWNLOAD_PATH=<path>
- (optional) specify output path to download the assets. Default./download
in current working directory.-e PROGRESS_MODE=<inline|newline|noline>
- (optional) specify printing mode for download progress. Defaultnoline
.
Before you can use GoPro Plus, you need to have the following installed:
python3.10+
pip3
virtualenv
direnv
(optional)docker
(optional)
To run GoPro Plus locally on your machine, follow these steps:
git clone https://github.com/itsankoff/gopro-plus.git
cd gopro-plus
virtualenv .venv
- (optional)
echo source .venv/bin/activate > .envrc # assuming direnv usage
- (optional)
echo AUTH_TOKEN="<gopro-auth-token (see below)>" >> .envrc # assuming direnv usage
./gopro
- running the help section
-
Makefile
- check for convenient shortcutsbuild
- build a docker containerrun
- run as local docker containerrelease
- building the docker image for multiple platforms.stop
- stop docker containerlogs
- show docker logs in a follow modeclean
- stop and remove spawned containers
-
Dockerfile
- base configuration for the docker image
To set up AUTH_TOKEN
as an environment variable, you'll need to retrieve
your JWT token by logging into your GoPro Plus media library account.
- Open a browser of choice (Firefox/Chrome is prefered, for Safari you need to enable Developer Tools)
- Go to GoPro Plus Media Library (assuming that you are signed out. If you are not, please sing out)
- Open your browser's Developer Tools (Ctrl+Shift+I on most browsers or Cmd+Option+I on Mac).
- Go to the Network Tab on the Developer Tools console.
- In the Filter field enter -
server-io
- In the
Headers
tab, look for Cookies header and find in its contentgp_access_token
. It should starts witheyJhbG...
. - Copy the string (it should be a long sequence of gibberish characters)
For Linux/macOS:
export AUTH_TOKEN="<gibberish_string_here>"
For Windows Command Prompt:
set AUTH_TOKEN="<gibberish_string_here>"
For Windows PowerShell:
$env:AUTH_TOKEN="<gibberish_string_here>"
Once the AUTH_TOKEN is set, you can run the GoPro Plus application without needing to pass the token explicitly.
Remember to replace <gibberish_string_here>
with the actual token you copied from the console.
By following these steps, you should be able to effectively manage your GoPro Plus media directly from your command line using GoPro Plus.