Skip to main content
Participant
August 2, 2008
Question

FMS3 - Playlist: first seconds skipped

  • August 2, 2008
  • 3 replies
  • 560 views
Hi,

I created an application that parses an xml file and uses the data to create and play a list of clips. I use something like

<code>
for(var i = 0; i < this.playlist.length; i++)
{
var source = this.playlist .source.toString();
if(i == 0) stream.play(source, 0, -1, true);
else stream.play(source, 0, -1, false);
}
}
</code>

And this is my scenario: FMS 3 now plays a clip to its end, then the last frame of the clip freezes for a few seconds and then the next clip starts, but not from its beginning. It seems to me like while the previous clip is freezing, the new clip is already running, as I can hear the audio track of it.

I set the bufferTime of the FMS NetStream to 0, the client buffers 1 second.

Does anyone have a suggestion?

To the forum admin:
quote:

Please use "Attach Code" to include any sample code in the message.

Sorry, I could not find it....
    This topic is closed to new replies. Start a new post to keep the conversation going.

    3 replies

    August 5, 2008
    Does it improve with large client buffer? say 3-4 seconds.
    owikAuthor
    Participant
    August 8, 2008
    Hi, no it does not. When I change the client buffer the only change I can see is that the video stream starts playing a bit later. But that's the way it should be, right?
    owikAuthor
    Participant
    August 5, 2008
    Does no one have any idea?