FLVPlayback Video Smoothing
Andrew Wason from Motionbox Inc. sent me the following workaround, which allows you to activate video smoothing for FLVPlayback components (in this case the instance FLVPlayer):
MovieClip(FLVPlayer.getVideoPlayer(FLVPlayer.activeVideoPlayerIndex))._video.smoothing = true;
By converting the component video player’s data type to a MovieClip, you get around the video player’s access control and can directly access its video object. This way you can then change its smoothing parameter.
See it for yourself:
Thanks again to Andrew for sharing this workaround.
Update!
Peace,
kolt
flv.getVideoPlayer(flv.activeVideoPlayerIndex).smoothing = true;
and it WORKS
flv is the FLVPlayback instance name.
psc.rephixartlab.com
**flv is the FLVPlayback instance name**
This freaking works!!! I'd hump your leg if you were right here. This is the only place I can find the fing answer on the entire internet. THANK YOU GUYS