You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Flash Media Server & DVR Created Jun 29, 2009

This thread is solved

Views: 1447     Replies: 2     Last reply Jun 25, 2010  
You must login first before you can use this feature

killebrewj

Posts: 80

Registered:
May 26, 2008

Flash Media Server & DVR

Posted: Jun 29, 2009

Adobe now offers DVR capability with FMS, and this can be used in conjunction with Adobe Flash Live Encoder 3. This allows a viewer begin watching a live stream late, pause the live stream, etc, just like a Tivo.

So looking over this blog post, it seems flowplayer is almost ready for this.http://fmsexamples.wordpress.com/2009/05/28/fms-dvrcast/

Looking at the source for the flowplayer rtmp plugin, netstream.play is not exactly as examples suggest, NetStream.play(?myvideo?, 0, -1), where 0 is clip.start and -1 is clip.duration.

The source code (RTMPStreamProvider.as) has start and duration values thrown out if the start position is not more than 0, if I'm reading this correctly.


		private function onUrlResolved(clip:Clip):void {
            log.debug("starting playback of stream " + clip.url);
			if (clip.start > 0) {
				netStream.play(clip.url, clip.start, clip.duration > 0 ? clip.duration : -1);
			} else {
				netStream.play(clip.url);
			}
		}

Any idea how to allow for the use of this DVR functionality?

bitflow

Posts: 1

Registered:
May 20, 2010

» Flash Media Server & DVR

Posted: May 20, 2010

Reply to: Flash Media Server & DVR, from killebrewj
Hi,

someone has find a solution for RTMP DVR option?

Thanks.