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:
which goes with
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>