Reputation: 947
I'm building a .NET winforms application and I need to convert avi video format to mpeg video format. How can I do this?
Thank you in advance.
Upvotes: 0
Views: 6677
Reputation: 11
One of the major problems that we faced when developing our application is the ability to convert different video formats (AVI, OGG, MP4, etc.) to DVD format. We ended up using a third-party toolkit named leadtools. I think they have mpeg DirectShow filters that might help you to fulfill your requirements. You can find more information here: http://leadtools.com/sdk/multimedia/conversion.htm
Upvotes: 1
Reputation: 16310
You can use third party component which you call from c#....The mostly used component for the conversion is FFmpeg .
FFmpeg
includes libavcodec - the leading audio/video codec library.
Upvotes: 0
Reputation: 28970
You can use Platform FFmpeg
in order to convert your files
Link : http://www.ffmpeg.org/
Upvotes: 4