PDA

View Full Version : How to capture stream from nrbnetwork.tv?


sizzam
01-24-2013, 11:49 AM
I'm trying to capture the stream from nrbnetwork.tv so that I can build an XBMC plugin for it. I'm having trouble getting it to work in rtmpdump.

Here is the page with the live feed:
http://nrbnetwork.tv/Pages/watch_online.aspx

The RTMP URL is:
rtmp://imavex.fc.llnwd.net/imavexnrb

It looks like the company they use for streaming is streamotor.com and it uses jwplayer?

I see this URL in the trace, which generates a large JavaScript function:
http://www.streamotor.com/player/accounts/NRB-Network/live.php?width=525&height=328

Thanks for looking.

sizzam
01-24-2013, 12:16 PM
Just to clarify, I don't want to record the stream, but I want to get the necessary URL to be able to redirect to it to a different player.

chap
01-24-2013, 01:16 PM
rtmpdump -r "rtmp://imavex.fc.llnwd.net/imavexnrb" -a "imavexnrb" -f "WIN 11,5,502,146" -W "http://www.streamotor.com/player/mediaplayer-5.10-licensed/player.swf" -p "http://nrbnetwork.tv/Pages/watch_online.aspx" -y "nrb-high" -v | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -

sizzam
01-24-2013, 01:30 PM
That works great, thanks chap!