Does anyone have an idea how this could be done? Or a product?

I have a SWF timeline animation that grabs XML/images dynamically and then need to output/encode that as a video.

link|improve this question
I guess it could be done using some sort of screen capture or screen sharing software. – Lars Blåsjö Oct 9 '11 at 19:20
feedback

3 Answers

You could build the functionality (in flash) to render each frame to a BitmapData-object, and then send that encoded as JPEG to a (local) service (either through URLLoader or via TCP/IP sockets) which saves them as images on file and then converts that into a movie once all frames are rendered.

EDIT: You can use a part of AS3 Core Lib ( https://github.com/mikechambers/as3corelib ) to convert a BitmapData into a JPEG file (in memory).

link|improve this answer
feedback

If you want a FLV as output, you could use an FLV encoder like this: http://www.zeropointnine.com/blog/simpleflvwriteras-as3-class-to-create-flvs/

link|improve this answer
feedback

Maybe you should check the swf to video sdk from moyea: http://www.swfkits.com/swf-to-video-sdk/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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