Building Flash Movie Dynamicaly with Jpgs/png

Go To StackoverFlow.com

1

I would like to create a flash movie dynamically with jpgs and other data on server. Is there any server side software that does this?

2009-06-16 10:46
by NoName
Could you clearly state what you are attempting to do - Prabhu R 2009-06-16 11:48


0

See swftools. Here is an example:

$ jpeg2swf -o movie.swf -3 1 -X 640 -Y 480 -f -z *.jpg

to create a movie out of all the JPEG files in the directory.

Another option is to use the Perl module SWF::Builder.

2009-06-18 04:35
by Sinan Ünür
Thanks.. I think this may help - NoName 2009-06-18 10:12


0

PHP comes with the Ming library. It's fairly basic, but it should do what you need (create a series of SWFBitmap objects, adding each one to a new frame of a SWFMovie.

2009-06-18 04:23
by Branden Hall
Ads