Looking for the actual RTMP stream URL?

Let me give you an example. This is the code for embedding the video:

<script type="text/javascript" src="jwplayer/jwplayer.js"></script>

<div id="container">Loading the player ...</div>

<script type="text/javascript">
    jwplayer("container").setup({
        flashplayer: "jwplayer/player.swf",
        file: "bmw/250413/vod.flv",
        streamer:'rtmp://216.185.104.75/vod',
        autoplay:"true",
        icons:"true",
        skin:"glow.zip",
        controlbar:"over",
        height: 270,
        width: 480,
        image: "images/bmw1.jpg"
    });
</script>

And this is the real page: http://www.24framesdigital.com/bmw/webcast/250413/vod.html

Now, what will be the RTMP stream URL? I tried:

rtmp://www.24framesdigital.com/bmw/250413/vod.flv
rtmp://www.24framesdigital.com/bmw/webcast/250413/bmw/250413/vod.flv
rtmp://216.185.104.75/vod/bmw/250413/vod.flv
rtmp://216.185.104.75/bmw/250413/vod.flv

... among several others. Nothing works. I use curl to stream / upload videos:

curl rtmp://.../vod.flv -o vod.flv
+5
source share
1 answer
curl -o vod.flv 'rtmp://216.185.104.75/vod playpath=bmw/250413/vod'
  % Total% Received% Xferd Average Speed ​​Time Time Time Current
                                 Dload Upload Total Spent Left Speed
100 3341k 0 3341k 0 0 97 954 0 -: -: - 0:00:34 -: -: - 261k

Additional information in person

+7
source

All Articles