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

Your preferred username that is used when logging in.

Problem with live streaming Created Nov 20, 2009

This thread is solved

Views: 1797     Replies: 1     Last reply Nov 20, 2009  
You must login first before you can use this feature

kukich

Posts: 1

Registered:
Nov 20, 2009

Problem with live streaming

Posted: Nov 20, 2009

HI
I need help
I have problem - i can publish video on server(RED5) with my swf file.
But i can t watch it with flowplayer ,this is my code:

$f("fms", "flowplayer-3.1.5-dev.swf", {
	clip: {
		url: 'kolia',
		// configure clip to use influxis as our provider, it uses our rtmp plugin
		provider: 'red5'
	},

	// streaming plugins are configured under the plugins node
	plugins: {

		// here is our rtpm plugin configuration
		red5: {
			url: 'flowplayer.rtmp-3.1.3.swf',
			// netConnectionUrl defines where the streams are found
			netConnectionUrl: 'rtmp://5.166.8.82/webcam'
		}
	}

After buffering only timer works ,but no movie from my SWF.Can u tell me what can be wrong?
P.S.
With another SWF i can receive this stream,and it works.But i want to use Flowplayer to receive it.

DeanB

Posts: 8

Registered:
Nov 16, 2009

» Problem with live streaming

Posted: Nov 20, 2009

Reply to: Problem with live streaming, from kukich
try this as your clip configuration

clip: { 
        url: 'kolia',
        provider: 'red5',
		live:true,
		autoPlay: true,
		autoBuffering: false
    },