Encontrando o URL real do RTMP Stream?

Deixe-me ir com um exemplo. Este é o código de incorporação de vídeo:

<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>

E esta é a página atual:http://www.24framesdigital.com/bmw/webcast/250413/vod.html

Agora, qual seria o URL do fluxo RTMP? Eu tentei:

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

... entre alguns outros. Nenhum trabalho. Estou usando o curl para transmitir / fazer o download do vídeo:

curl rtmp://.../vod.flv -o vod.flv

questionAnswers(1)

yourAnswerToTheQuestion