4

I am looking to parse mp4 for my .net application. I couldn't find any mp4 parser in .net.

Found mp4parser which is in java.

Please let me know is there any C# version available? if no, is it possible to use mp4parser with .net?

durron597
  • 31,968
  • 17
  • 99
  • 158
Sandeep Kumar M
  • 3,841
  • 3
  • 38
  • 59

1 Answers1

1

I would suggest utilizing FFMPEG to accomplish your task. More information on using ffmpeg with C# can be found at :

http://it.toolbox.com/blogs/rymoore/using-c-ffmpeg-11334

Sourceforge has an example project integrating ffmpeg into a c# application.

http://sourceforge.net/projects/sharpffmpeg/files/

Here ais a stackoverflow discussion relating to c# and ffmpeg. You may also find this useful.

Solid FFmpeg wrapper for C#/.NET

Community
  • 1
  • 1
Michael Eakins
  • 4,149
  • 3
  • 35
  • 54