Reputation: 25170
Where is the RTMP live stream Link
in the following Embed
and how can i test the link and see if it is working or not
i thought it could be this but not sure
rtmp://sc-lb1.streamcyclone.com/rakoty_live
beacsue i'm play this stream using jwplayer
and it keeps telling me
stream not found :rtmp://--------------------
here is my code so far and a Live DEMO
<div id="container2">Loading the player...</div>
<script type="text/javascript">
jwplayer("container2").setup({
flashplayer: "http://player.longtailvideo.com/player.swf",
height: 270,
width: 480,
image: "http://www.2heartsnetwork.org/SacredHeartJesus3.jpg",
levels: [
{ bitrate: 300, file: "rtmp://sc-lb1.streamcyclone.com/rakoty_live", width: 320 },
{ bitrate: 600, file: "rtmp://sc-lb1.streamcyclone.com/rakoty_live", width: 480 },
{ bitrate: 900, file: "rtmp://sc-lb1.streamcyclone.com/rakoty_live", width: 720 }
],
provider: "rtmp",
streamer: "rtmp://sc-lb1.streamcyclone.com/rakoty_live"
});
</script>
there is something wrong i hope you guys can help me thanks
ANSWER
There is no way to do this with out a third party to transcode your stream
Upvotes: 2
Views: 2129
Reputation: 822
You have streamer: rtmp://sc-lb1.streamcyclone.com/rakoty_live file: rakoty
rtmpdump -o a.flv -r rtmp://sc-lb1.streamcyclone.com/rakoty_live/rakoty
Upvotes: 0
Reputation: 13151
As mentioned here, You may use rtmpdump, to test a rtmp connection.
Fiddling with what you shared, I was able to get your live stream by setting :
file : "rakoty"
Here is the running fiddle.
I would also like to suggest not to edit you post & remove the original question when it is answered, rather post a new one. Perhaps the earlier question could have been helpful to someone in future...
Upvotes: 2