0

I want to modify all the frames loaded from NetStream before playing them out. Is there any possible way? better with build-in classes and methods, or 3rd-party lib.

Benson
  • 248
  • 3
  • 15

1 Answers1

0
var frames:Vector.<bitmap>; 
onEnterFrame(event:Event) : void {
    frames.add(video);
}

Briefly speaking, play the video, then record it in the handler of EnterFrame event. But this way has many disanvatages...though.

Benson
  • 248
  • 3
  • 15