NetStream receiveVideoFPS
I'm trying to set receiveVideoFPS for a NetStream connection on a live stream and I can not get it to update correctly.
The only time the FPS actually updates is if the publishing stream is changed to publish with a keyframe interval of 1. Meaning that every frame is a keyframe. This would obviously not be ideal as it would require a rediculous amount of bandwidth.
According to the documentation, the receiveVideoFPS can be called before or after play() is called, however neither update correctly.
With keyframes seeming to be the culprit, I've attempted to set the keyframeInterval and FPS rate at a combo that should evenly divide to make it easier on the server. For example:
myCam.setMode(512, 384, 12, false);
myCam.setQuality(0, 90);
myCam.setKeyFrameInterval(6);
Should mean that either a target of 2 FPS or 1 FPS would be possible right ??
Because every 6th frame is a key frame, meaning 2 per second
but both fail...
ANY help would be greatly appreciated - I can't seem to find any responses online to people who have same problem.
Thanks so much!
.daniel
