Reputation: 1177
I need to extract all meta data along with play-length information from the video files in pure C .
I goggled and found MediaInfo Library but was not able to find any relevant c sample code .
Is there any other way to achieve this with / without MetaInfo ?
Or can somebody point me to a good sample code of MediaInfo in C
Upvotes: 1
Views: 1583
Reputation: 6729
ffprobe which is part of ffmpeg can do a whole lot more.
ffprobe without switches will give some common information It also has lot of switches of which you can use one at a time [exclusively]
Try it out.
Upvotes: 2