Hi there
I am sure it is something really simple :D but been trying to get flowplayer playing a file via EdgeCast, tried a few configurations already ...any ideas ;)
Thanks
Kb
<!-- this A tag is where your Flowplayer will be placed. it can be anywhere -->
<a
href="myvideofile.flv'"
style="display:block;width:520px;height:330px"
id="player">
</a>
<!-- this will install flowplayer inside previous A- tag. -->
<script>
flowplayer("player", "flowplayer-3.1.1.swf", {
clip: {
scaling: 'fit',
url: 'rtmp.myorigin.com/myvideofile.flv',
provider: 'edge'
},
plugins: {
edge: {
url: 'flowplayer.rtmp-3.1.0.swf',
// netConnectionUrl defines where the streams are found
netConnectionUrl: 'rtmp://fms.myprovider.net/CustomerID/'
}
}
});
</script>