Does anyone know of a set of bindings for C# to drive the FFMpeg library directly ? I could shell to ffmpeg.exe directly but I found it hard to sync/control as a separate process. any help would be appreciated.

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

I've seen this library:

ffmpeg-sharp a wrapper library over the FFmpeg multimedia suite that provides easy to use wrappers for use in C#.

link|improve this answer
I had seen this but wasnt sure how good it was. thanks. – MikeJ Nov 7 '08 at 17:42
2  
I just checkout latest version of ffmpeg-sharp and it doesn't compile :-( – Jakub Šturc Apr 23 '09 at 13:53
The Interop part compiles & works fine. – Fraser Jul 25 '09 at 4:29
-1: None of this currently compiles. – casperOne Sep 13 '10 at 0:38
4  
So it's been quite a while (over 3 years) since I was last able to tackle the project and I know this question is very old, but I just wanted to post that I've made a major update to the library and that it now compiles and the examples work. Hopefully it will work well for your project or others that might see this. – Justin Cherniak Jan 6 at 5:48
show 2 more comments
feedback

It's actually pretty easy to control as a separate process. If you redirect StandardOut and StandardError then you can subscribe to the Process.OnData* events and receive the command line output. It's then trivial enough to parse the status line using a regex and work out things like % complete and so on.

The hardest thing is working out what command line to pass to get decent quality! I'd recommend this page and this page if you're using H.264/AAC+.

link|improve this answer
Great tip, Greg. Links don't work, so maybe just Google "ffmpeg-x264-encoding-guide" (without the quotes). – Avi Dec 7 '11 at 11:55
feedback

Tao.ffmpeg: http://www.taoframework.com/project/ffmpeg it compiles and has a binary dist which is more than can be said for ffmpeg-sharp at this point. It is, however, not particularly easy to use.

link|improve this answer
This one actually works. Unfortunately the function signatures aren't set up for automatic marshalling; expect lots of IntPtr parameters. – romkyns Oct 30 '11 at 22:24
Unfortunately TAO Framework project is gone. – D.Rosado Jan 4 at 12:40
feedback

Another choice. I think it's easy enough for beginers. You even needn't know about ffmpeg. Just follow the samples. Then it works.

Solid FFmpeg C# .Net Wrapper

link|improve this answer
1  
$200 for a license. – Chris Oct 1 '11 at 21:09
and no documentation - the code methods or classes have no documentation I gave up after a few hours. – Csharper Dec 23 '11 at 23:59
feedback

Your Answer

 
or
required, but never shown

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