Papervision Render to Movie or Film Strip

300 Views Asked by At

I am looking BitmapViewport3D for rendering to a texture, and I am wondering if there is a way to render to a movie or film strip for later viewing. Anything like that built into PaperVision?

2

There are 2 best solutions below

2
On
import org.papervision3d.materials.MovieAssetMaterial;
var material:MovieAssetMaterial = new MovieAssetMaterial("material",false,true);
plane = new Plane(material,500,500); scene.addChild(plane);

"material" is the linkage ID from the asset in the library that you want to apply as the material.

0
On

There is a way to do this... someone made a really cool library called FilmStrip.

I haven't tried it yet myself, but essentially it outputs each frame to a jpeg and you can turn it into a movie with ffmpeg etc.