Table of Content

GoPro Linux

Linux Bash scripts and command line interface for processing media filmed on GoPro HERO 3, 4, 5, 6, and 7 cameras Github GoPro-Linux

Installation

Requirements

GoPro Installation

You can download the file directly from github:

$ curl https://raw.githubusercontent.com/KonradIT/gopro-linux/master/gopro -o /opt/bin/gopro
$ chmod +x /opt/bin/gopro

Often used commands

###Removing finshey

Usage

$ gopro fisheye ./file.to.apply.filter.jpg
GoPro Tool for Linux
To see a list of commands and syntax available run: gopro help
Checking dependencies...
Resolution:
-[0] 4:3 Wide FOV
-[1] 4:3 Medium FOV
-[2] 4:3 Narrow FOV
Photo resolution:

Sample

With this it will ran through all files and will use the medium filter (my personal default)

$ for f in *.JPG ; do yes 1 | gopro fisheye ${f} ; done