I've managed to run rtpm movies from Vlcplayer via: rtmp://server_ip:1935/vod/movie_name.flv , but when I'm using them on webpage the video seeking is not working at all. I'm still wondering where might be the problem. Here is my .html page:
<html>
<head>
<script src="http://releases.flowplayer.org/js/flowplayer-3.2.12.min.js"></script>
</head>
<body>
<div id="player" style="width:644px;height:276px;margin:0 auto;text-align:center"></div>
<script>
$f("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.16.swf", {
clip: {
url: 'movie.flv',
scaling: 'fit',
provider: 'hddn'
},
plugins: {
hddn: {
url: "flowplayer.rtmp.swf",
netConnectionUrl: 'rtmp://192.168.0.1:1935/vod'
}
}
});
</script>
</body>
</html>