Hi Luke,
it's a custom video player.
this is the code that I've used:
On the first key frame:
var nc:NetConnection = new NetConnection();
nc.connect("rtmp://localhost/test");
var ns:NetStream;
ns = new NetStream(nc);
ns.onStatus = function (info) {
trace("LOG + info.code);
}
var videoContainer:Video;
_root.videoContainer.attachVideo(ns);
ns.setBufferTime(0.2);
On play button:
on (press){
_root.ns.play("winzozz.flv");
}
On pause button:
on (press){
_root.ns.pause();
}
On seek button:
on (press){
_root.ns.seek(10);
}
----- Original Message -----
From: "Luke Hubbard" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Thursday, July 13, 2006 12:21 PM
Subject: Re: [Red5] pause and seek
> It sounds like a bug, can I ask which player you are using as I tested
> pause and seek a day or two before release without problems. The
> standard FLV player component does not work with red5.
>
> - Luke
>
> On 7/13/06, Daniela Remogna <[EMAIL PROTECTED]> wrote:
>>
>>
>> Hi,
>> I've installed red 5 05_rc1 and the seek method doesn't work. The pause
>> method works partially as when I click for the second time on the pause
>> button it doesn't resume. The same code works properly on adobe server.
>> it's a bug?
>>
>> Regards,
>> Daniela Remogna
>>
>> _______________________________________________
>> Red5 mailing list
>> [email protected]
>> http://osflash.org/mailman/listinfo/red5_osflash.org
>>
>>
>>
>
> _______________________________________________
> Red5 mailing list
> [email protected]
> http://osflash.org/mailman/listinfo/red5_osflash.org
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org