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?
A:
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.
Branden Hall
2009-06-18 04:23:27
A:
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.
Sinan Ünür
2009-06-18 04:35:01
Thanks.. I think this may help.
2009-06-18 10:12:30