I am currently working on a Flash webplayer with resolution switching functionality. I am trying to make use of the NetStream class's play2() function in Actionscript.

The problem I am running into is that the videos don't change quickly. For those familiar with the play2 function I believe that the player is performing a "standard switch" rather than a "fast switch."

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/NetStreamPlayOptions.html#offset

The documentation says that when the offset parameter is -1, fast switching occurs. What actually happens, though is once the "NetStream.Play.Transition" event is received, the player waits until the time denoted by ns.time + ns.bufferLength has been reached, before performing the switch.

I thought fast switching cleared the buffer, but on a check to ns.backbufferlength, I found that everything is still cached. Also it mentions: "When offset is -1, the switch occurs at the first available keyframe after netstream.time + 3," which is why I am confused.

Any help/insight on this matter would be much appreciated.

Here is a snippet of code describing what is going on (newStream() is called when a user clicks to change to a new resolution, youtube style):

public function newStream(address:String):void
{
    var opts:NetStreamPlayOptions = new NetStreamPlayOptions();
opts.streamName = address;
opts.transition = NetStreamPlayTransitions.SWITCH;
    opts.offset = -1;
    ns.play2(opts);
}

private function nsCallback(event:NetStatusEvent)
{
switch(event.info.code)
{
    case "NetStream.Play.Transition":
    {
        trace("Current time (on Transition): " + ns.time, "Buffer: " + ns.bufferLength);
        var estTime:Number = ns.time + ns.bufferLength;
        trace("Estimated Completion Time: " + estTime);
        break;
    }
}
}
link|improve this question
Have you looked into a framework that does Dynamic Stream Switching for you? I use one because it allows me to focus on other things (one less thing I have to worry about). OSMF will do a lot, but not DSS for http streams (yet). However, OVP (Akamai HDCore) will even do DSS for http streams to flash. Good luck! – Jackson Aug 7 '11 at 20:23
I found a few while Googling for an answer to my question, but I was a building a pretty specific player (there are a few extra features that I added to it). Also, since I already had the majority of the player done (minus the "smooth" transitioning), I was hoping for a solution. As of now, I've made do with adding a little "loading" icon anytime there is a stream switch, though I have left the functionality available in case I ever do find an answer for this issue. – funseiki Aug 9 '11 at 4:00
instead of a switching the video of same content can this be used to switch to a different video stream? – Aditya P Jan 24 at 10:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.