.MOV Geolocation data

Started by rcamjordan13, August 26, 2019, 05:52:12 PM

Previous topic - Next topic

rcamjordan13

Hello,

I have been messing around with this tool for a few hours now and can't seem to find any geolocation data, or lack thereof, for a .MOV file that I have. I am able to view other exif info such as the original recording date but can't seem to locate anything on goelocation.

Is it possible for exiftool to pull geolocation data from a .MOV file?

StarGeek

The answer is: Maybe.

Unfortunately, there isn't a standard for gps data in a video stream and every company seems to do it a different way.  At the moment, exiftool can pull data from over 25 (I think) different formats.

To check to see if the video has just a static coordinate, you can try:
exiftool -gps* -a -s -G1 File.MOV

You can also test to see if the video has gps coordinates embedded in the video stream with
exiftool -gps* -ee -a -s -G1 File.MOV

If the file does show data in that second command and you want to make a GPS track log from the data, take a look at Inverse Geotagging

If there's no output, then the file either doesn't have any gps data or it's in a format that exiftool doesn't know about. 
"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

Phil Harvey

Quote from: StarGeek on August 26, 2019, 06:12:20 PM
At the moment, exiftool can pull data from over 25 (I think) different formats.

The current count is 30 different formats.

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).