Hello everyone,
I have installed Flash Media Server and everything working just fine. I also installed flowplayer inside my web page and it going well too. When I try to use flowplayer for rtmp, I have problem in viewing .flv files, but .mp4 and .f4v format have no problem at all. Below is my code for .mp4 video (working and tested in local computer):
<div id="fms" class="player" style="display:block;width:650px;height:420px"></div>
<script type="text/javascript">
$f("fms", "flowplayer-3.1.5.swf", {
clip: {
url: 'mp4:Vultures.mp4',
provider: 'rtmp',
autoPlay : true
},
plugins: {
rtmp: {
url: 'flowplayer.rtmp-3.1.3.swf',
netConnectionUrl: 'rtmp://localhost/vod/'
}
}
});
</script>
If i change the url to 'test.flv', I just can see white round circle on the player. Can anyone help me? Im stuck here.
I have installed Flash Media Server and everything working just fine. I also installed flowplayer inside my web page and it going well too. When I try to use flowplayer for rtmp, I have problem in viewing .flv files, but .mp4 and .f4v format have no problem at all. Below is my code for .mp4 video (working and tested in local computer):
<div id="fms" class="player" style="display:block;width:650px;height:420px"></div>
<script type="text/javascript">
$f("fms", "flowplayer-3.1.5.swf", {
clip: {
url: 'mp4:Vultures.mp4',
provider: 'rtmp',
autoPlay : true
},
plugins: {
rtmp: {
url: 'flowplayer.rtmp-3.1.3.swf',
netConnectionUrl: 'rtmp://localhost/vod/'
}
}
});
</script>
If i change the url to 'test.flv', I just can see white round circle on the player. Can anyone help me? Im stuck here.