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

Your preferred username that is used when logging in.

IE hates RTMP, go figure? Created Feb 23, 2010

This thread is solved

Views: 1531     Replies: 1     Last reply Feb 23, 2010  
You must login first before you can use this feature

chubster
It's all good!

Posts: 8

Registered:
Oct 6, 2008

IE hates RTMP, go figure?

Posted: Feb 23, 2010

The multiple overlay example below works great in FF and IE7

http://www.buzzyfoot.com/new/demos/overlay2.htm

I then convert it to use the rtmp plugin and FF still works but IE7 doesn't, as per this example:

http://www.buzzyfoot.com/new/demos/overlay.htm

The code seems ok and I changed nothing else. Why does IE not recognise the request?

Here is the rtmp code:


	
	// install flowplayers
	$("a.player").flowplayer("code/swf/flowplayer.commercial-3.1.5.swf", { 
 
 	key: '*************',
	
	plugins: { 
     
        // here is our rtpm plugin configuration 
        influxis: {  
            url: 'code/swf/flowplayer.rtmp-3.1.3.swf',  
             
            // netConnectionUrl defines where the streams are found 
            netConnectionUrl: 'rtmp://********.rtmphost.com/'  
        } 
    },
	clip: {
		autoPlay: true,
		autoBuffering: true,
		provider: 'influxis',
	}
			}); 
		});	
	</script>

which goes with


<div class="overlay" id="overlay1">
	<a class="player" href="rtmp://********.rtmphost.com/VideoPlayer/cosmo-kitten">
		 
	</a>
</div>

<div class="overlay" id="overlay2">
	<a class="player" href="rtmp://********.rtmphost.com/VidPage/firstspider_512">
		 

	</a>	
</div>

chubster
It's all good!

Posts: 8

Registered:
Oct 6, 2008

» IE hates RTMP, go figure?

Posted: Feb 23, 2010

Reply to: IE hates RTMP, go figure?, from chubster22
Found it.

The issue was the unnecessary comma at the end of

provider: 'influxis',