need help with rtmp streaming
we are having an issue getting rtmp with the 3.5.3 FMS development version to work, with our test link we just get a white page
we are able to create a vod in the admin swf, we're able to even see videos showing they should be streaming in the ADMIN console and in the logs it says they should be streaming, but our webpage you get a white page, nothing..
logs look like:
Accepted a connection from IP:74.132.1.1, referrer: http://www.mydomain.comstreaming/res/js/flowplayer/flowplayer.rtmp-3.1.3.swf, pageurl: http://www.mydomain.com/streaming/test.php -
2010-01-13 13:29:46 1181 (s)2641173 Accepted a connection from IP:74.132.1.1, referrer: http://www.mydomain.com/streaming/res/js/flowplayer/flowplayer.rtmp-3.1.3.swf, pageurl: http://www.mydomain.com/streaming/test.php -
NOTE: we are NOT using the apache/http part, the port is configured to 8080 but that is not being used all we want to do is use rtmp to stream through our flowplayer player on the webinterface we configured
let me know if i need to give any more details
I set my VOD_DIR to:
/www/sites/www.mydomain.com/files/html/streaming/fms/applications/vod/media
we then setup a test.php to test FMS with flowplayer-rtmp v3.1.3 (latest) and flowplayer v3.1.5 (latest)
here's the source of our test.php
<html id="htmlElement" xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-us">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
<script type="text/javascript" src="http://www.mydomain.com/streaming/res/js/flowplayer/flowplayer-3.1.4.min.js"></script>
</head>
<body>
<script>
flowplayer('player',
{
src:"http://www.mydomain.com/streaming/res/js/flowplayer/flowplayer-3.1.5.swf",
wmode:"opaque"
},
{
debug: true,
log: { level: 'debug', filter: 'org.flowplayer.rtmp.*' },
clip:
{
url:"AdobeBand_800K_H264",
// "onStart":clipStarted,
autoPlay:true,
provider:"influxis"
},
plugins:
{
influxis:
{
url:"flowplayer.rtmp-3.1.3.swf",
netConnectionUrl: 'rtmp://1.2.3.4/vod' # <== 1.2.3.4 = my ext ip obviously
}
}
}
);
</script>
