Error: GPX without temporal references

Started by koomot, December 29, 2023, 12:54:16 PM

Previous topic - Next topic

StarGeek

If you used the -ee3 option on that video, then it looks like the video doesn't include a GPS track.

Run this command to add the needed GPSDateTime tags to your mov files
exiftool "-GPSDateTime<CreateDate" /path/to/files/

You should then be able to create a GPX track out of your mov files, though it will be based solely on the single GPS coordinate in each of the files.
"It didn't work" isn't helpful. What was the exact command used and the output.
Read FAQ #3 and use that cmd
Please use the Code button for exiftool output

Please include your OS/Exiftool version/filetype

koomot

Thank you so much, it seems to work! I just had to change the command to this: exiftool '-GPSDateTime<CreationDate' /path/to/files/
And then I used this command with the order option changed: exiftool -fileOrder GPSDateTime -ee3 -p gpx.fmt  . > out.gpx

Is that correct?