views:

21

answers:

2

Hello!!!

I need some suggestions about to create .flv from 1000 images.

The application I'm building will be use flash to show the .flv, and the server, who have red5 rtmp and php5. The server will be do the conversion from .jpg to .flv.

I searching information but I didn't find which language can be the best to do conversion, or some examples about it...

Someone can help me?

Any idea from I can start it?

thanks!

A: 

A thought: why do you have to convert the images in the first place? Why not just use Flash to display the images. That can be done using ActionScript.

If the images are not the correct size, then use your application server to resize them before putting them in a location accessible to your Flash application.

Ciaran Archer
+2  A: 

You can use ffmpeg library. It is very useful library for convertion.

Here is the link

http://www.ffmpeg.org/

You can run this command from your php code.And you can run it in a loop for all images.

ffmpeg -f image2 -i image%d.jpg video.mpg

Also you can find many commands about ffmpeg here.

http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs

Judas Imam