sfort wrote:
Hi everybody!
I've found a problem with pausing, maybe someone else have.
If I record a file, I can't pause and resume it. On the other hand, if I
try to pause/resume an existing file (like Spiderman3_trailer_300.flv from
oflaDemo) there is no problem.
I try it with Flash/AS2 and Flex/AS3. Is there any problem with Recording
Client Streams?
Thanks!
Im pausing fine here with an archive.
public function pause(event:Event):void
{
//ns.togglePause();
//ns.pause();
if (videoState.isPlaying)
{
if (!videoState.isPaused && controls.pauseBtn.enabled)
{
ns.pause();
videoState.isPaused = true;
showPreloadBar("Paused");
} else {
ns.resume();
videoState.isPaused = false;
showPreloadBar("");
}
}
}
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org