How to read the metadata of a MKV movie files in C# (or C or C++ or AS3)?

for example such

creator
metadatacreator
hasKeyframes
hasVideo
hasAudio
hasMetaData
canSeekToEnd
duration
datasize
videosize
videocodecid
audiosize
audiocodecid
audiosamplerate
audiosamplesize
stereo
filesize
lasttimestamp
lastkeyframetimestamp
lastkeyframelocation
keyframes (filepositions, times)
width
height
framerate
videodatarate
audiodatarate
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

There is always attempting to parse the header yourself.

Also I've seen references to the EBML library being used to decode MKV files. Good luck!

link|improve this answer
feedback

You might try asking this over at doom9 forums in their development section. Also mediainfo.dll might also work for you.

link|improve this answer
feedback

I recently posted C# version to https://bitbucket.org/OlegZee/nebml. It contains Title editor sample which demostrate inline editing of certain properties.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.