docker-gpx2video
allows execution of gpx2video through any Docker environment.
- You'll want to create a folder where the input, layout and output files will be read and written. This folder is represented in the following instructions as
/your_local_data
. - Extract GPS data:
docker run --rm -it -v /your_local_data:/data dennistt/gpx2video -m /data/vid.mp4 -o /data/vid.gpx -f 3 extract
- Create overlaid video:
docker run --rm -it -v /your_local_data:/data dennistt/gpx2video -m /data/vid.mp4 -g /data/vid.gpx -l /data/layout.xml -o /data/vid-out.mp4 video
See the gpx2video documentation for more details on command usage.