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.
Adobe announces Flash CS5!
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
flv.getVideoPlayer(flv.activeVideoPlayerIndex).smoothing = true;
Thanks!
flv.getVideoPlayer(flv.activeVideoPlayerIndex).smoothing = true;
and it WORKS
flv is the FLVPlayback instance name.
THAT WORKED FOR ME TOO!! THANKS FOR POSTING THAT FOLLOW UP!
I'm usig flash cs3 with AS2,... and a video converter from youtube (the flv with VLC player looks smooth in any scale)
any help??
MovieClip(FLVPlayer.getVideoPlayer(FLVPlayer.activeVideoPlayerIndex))._video.smoothing = true;
Just name the instance of the flv component FLVPlayer.
Thanks for the info, but I beleive it´s not necessary to convert the FLV to a MovieClip.
This works too:
FLVPlayback.getVideoPlayer(FLVPlayback.activeVideoPlayerIndex).smoothing = true;