GPS Time Sync Questions #990
-
Hello, I have 3 GoPro Hero 10s. I am trying to get the exact time at which each frame from each GoPro was captured for computer vision tasks. I am looking at the GPS Time Synchronization feature and figured this might be helpful. I ran a test with one of my GoPros and got the below metadata when probing via ffmpeg. My question is what does the time in the timecode refer to? Is it current GPS time? or time since power on? Secondly, is there a better way to get all of the metadata from the MP4 other than ffmpeg prope? Metadata Snippet: Full Metadata: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
ffmpeg only get stock metadata, nothing custom, nothing frame based. Use https://gopro.github.io/labs/control/metadata/ for more GoPro header metadata. But all the metadata you will need to code and extract the GPS5 track, GPS9 is HERO11 (better than HERO10, more designed for your needs.) Code access for all GPMF data: https://gopro.github.io/gpmf-parser/ |
Beta Was this translation helpful? Give feedback.
ffmpeg only get stock metadata, nothing custom, nothing frame based. Use https://gopro.github.io/labs/control/metadata/ for more GoPro header metadata. But all the metadata you will need to code and extract the GPS5 track, GPS9 is HERO11 (better than HERO10, more designed for your needs.) Code access for all GPMF data: https://gopro.github.io/gpmf-parser/