Flex - 从视频复制单帧

时间:2010-10-24 14:03:58

标签: flex video copy png frame

我正在使用Flex中的视频。我希望能够在某一点暂停视频并将显示的帧复制为图像,并将其保存到数据库中。我想知道是否有人知道如何从暂停的视频复制单帧? 谢谢 --Matt

1 个答案:

答案 0 :(得分:1)

假设您的视频名为“剪辑”

var frameGrab:BitmapData = new BitmapData( clip.width, clip.height, false, 0x000000);
frameGrab.draw(clip); // < the .draw() method will copy the frame from your video.

// Add to the stage...
var frame:Bitmap = new Bitmap(frameGrab);
addChild(frame);