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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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).