I get all kinds of EXIF data (like location and camera model) easily from images, and I'm trying to replicate this for my .MOV movie files pulled from my iPhone.
I know Apple has this information somewhere because you can see the location in the Photos app, but I don't know how to programmatically access this when looking at .MOV files directly.
In order of preference for my use-case (Python-based personal photo organizer / enrichment):
- Is this available ideally somewhere in the file (or another file) itself
- Stored somewhere in iCloud that is queryable / scrapeable
- Available when building an iOS application (thinking I could build a sync-type app)
To get created date and other properties of MOV files so far, I'm using hachoir based on this StackOverflow answer: Getting metadata for MOV video