Если ваше видео называется "клип"
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);