Question
Smoothing on AIR to iOS video
Does anyone have a working solution to applying smoothing to video when added via the FLVPlayback or NetStream Methods?
When tested on the desktop both these bits of code work but smoothing doesn't seem to be being applied when run on an iPad/
//NetStream
video.attachNetStream(stream);
stream.play(videoURL);
video.smoothing = true;
addChild(video);
//FLVPlayback
videoplayer = flvPlayback.getVideoPlayer(0);
videoplayer.smoothing = true;
Thanks,
Mark
