tags:

views:

37

answers:

1

Does anyone know of any good resources describing how to create a flash video directly from a series of images that would make up the video in c#?.

I'm guessing ffmpeg...any guides available?

A: 

If you want use ffmpeg, you should look not for guides for how to use ffmpeg, but guides for how to call console application from C# and pass parameter. =)) I mean - ffmpeg is just console encoder, and you just need to run it, and pass from cmd line parameters - what to encode and how, and wait when it finish.

Here some code, and other related info (search/google is power) http://stackoverflow.com/questions/1707516/c-and-ffmpeg-preferably-without-shell-commands

Zakus