GoPro Sync: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Gopro Sync = discusses how to get files from the Gopro via Quik to a fileshare. WIP == Fix 2016 Recording Date == After some time with empty batteries, correct date and time on a Gopro are lost. Make sure to connect it to Quik to set the correct time before you record. If it is too late and recordings have the wrong times, Eye of Gnome can show the GPS time of JPGs which usually still is correct (no idea why Gopro doesn't use it to set time). Time difference is t...") |
|||
Line 12: | Line 12: | ||
Time difference is then (GPSDateStamp + GPSTimeStamp) - DateTime | Time difference is then (GPSDateStamp + GPSTimeStamp) - DateTime | ||
To fix the issue easily I wrote a python script which uses the great exiftool | To fix the issue easily I wrote a python script which uses the great exiftool. See https://gist.github.com/joba-1/bdff43371dee7e23f536e7da5e373116 | ||
* use a JPG to calculate time difference between GPSDateTime and DateTime | * use a JPG to calculate time difference between GPSDateTime and DateTime |
Revision as of 23:52, 19 July 2024
Gopro Sync
discusses how to get files from the Gopro via Quik to a fileshare. WIP
Fix 2016 Recording Date
After some time with empty batteries, correct date and time on a Gopro are lost. Make sure to connect it to Quik to set the correct time before you record.
If it is too late and recordings have the wrong times, Eye of Gnome can show the GPS time of JPGs which usually still is correct (no idea why Gopro doesn't use it to set time).
Time difference is then (GPSDateStamp + GPSTimeStamp) - DateTime
To fix the issue easily I wrote a python script which uses the great exiftool. See https://gist.github.com/joba-1/bdff43371dee7e23f536e7da5e373116
- use a JPG to calculate time difference between GPSDateTime and DateTime
- extract date from media files and add time diff
- see https://exiftool.org/forum/index.php?topic=12444.15
- thanks to the author of exiftool :)