Is there something like EXIF for video?

4

1

Pictures in jpeg format use EXIF to store metadata, in case you rename the file or change its timestamp is very useful. However, I don't know if that is the case for video files. Is there any kind of format that supports such implementation? The only way I know of preserving metadata on a video file is either set the filename correctly or use mkv with the description fields and such. However I would like to see if that can be done in mp4 of avi format to make it more widely playable.

Smeterlink

Posted 2016-02-07T10:21:35.573

Reputation: 394

Answers

2

Yes, but it differs by file format. For example, the QuickTime container format has many types of metadata within. This format type is used by MOV, M4V, MP4 and other less popular ones.

You mention MKV (Matroska) which uses a different container format again.

Drew Noakes

Posted 2016-02-07T10:21:35.573

Reputation: 1 907

0

Yes, I have used exiftool to read the metadata from mov videos from iphone and mp4 videos from android. It contains metadata like the datetime that the video was taken (not when the file was saved or modified). You can also use exiftool to write metadata as well.

https://en.wikipedia.org/wiki/ExifTool

wisbucky

Posted 2016-02-07T10:21:35.573

Reputation: 1 522