vote up 1 vote down star
2

I need to allow web site users to upload videos to my web site in various common formats. From these I need to convert them to Flash video, and also limit their lengths and size. I need to do this automatically as part of the web site processing.

Is there some simple tool that will allow me to do this? If not, can you point me in a direction that might help me out.

Thanks.

flag

3 Answers

vote up 2 vote down

With ffmpeg you can run the following command to convert input.avi to output.flv for flash:

ffmpeg -y -i input.avi -acodec mp3 -f flv output.flv
link|flag
Whilst this approach will certainly work, I would recommend interfacing directly with the DLL. – Matt Jun 8 at 16:10
vote up 0 vote down

ffmpeg or mencoder is usually used for this kind of thing.

As you are using asp.net you should really be interfacing with the DLL. There is also a c# wrapper available for ffmpeg.

link|flag
vote up 0 vote down

I use ffmpeg and it works perfectly well doing this with my videos.

link|flag

Your Answer

Get an OpenID
or

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