Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Library for FLV/F4V conversation in C# .NET?

Is there any library that can covert input video (of some specific video files) to f4v or flv programatically in c# .NET?

Thanks in advance.

like image 835
totocaster Avatar asked May 06 '10 16:05

totocaster


3 Answers

http://ffmpegdotnet.codeplex.com/

like image 91
James Westgate Avatar answered Oct 21 '22 23:10

James Westgate


This code does the trick pretty well: http://jasonjano.wordpress.com/2010/02/09/a-simple-c-wrapper-for-ffmpeg/

ps. you can easily modify it if you need any extra features of ffmpeg. We did, only because we are using it to slice music/videos, but you should be able to use it as is.

like image 41
eglasius Avatar answered Oct 22 '22 01:10

eglasius


Take a look at http://www.intuitive.sk/fflib/

like image 34
Hamed Avatar answered Oct 21 '22 23:10

Hamed