Does anyone know a simple way of converting a mp4 file to an ogg file?

Have to do it, but don't have much knowlegde about it, and all I can find are programs, not examples or libraries.

Thanks in advance

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I would recommend dispatching this to FFMPEG - http://www.ffmpeg.org/ - using a Process and command line arguments. You can redirect I/O if you need to (e.g. logging). Just do something like process.WaitForExit() after you've started it. You could do this on a background thread (BackgroundWorker, ThreadPool, etc...) if you need to not block the UI.

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.