Question
FMS3 - Playlist: first seconds skipped
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:
Sorry, I could not find it....
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....
