video.cnbc.com: Problem downloading CNBC video with rtmpdump, rtmpsrv, rtmpsuckdid try RTMPdump along with rtmpsrv/suck using iptables to redirect the traffic locally and capture the url for the streaming. On a lot of sites, it works but the one I use the most (cnbc) doesn't.
Would you happen to know anything about why I'm not picking anything up for this site? For example, _http://video.cnbc.com/gallery/?video=3000048189 Thanks for any help you can offer. |
Re: video.cnbc.com: Problem downloading CNBC video with rtmpdump, rtmpsrv, rtmpsuckCode:
rtmpdump -r "rtmp://cp34825.edgefcs.net:80/ondemand" -p "http://video.cnbc.com/gallery/?video=3000048189" -y "mp4:csmp4/VCPS/Y2011/M09D28/3000048189/4ED1-ASB-PaulBurkner_L" -o Test.flv Code:
RTMPDump v2.4 GIT-2011-09-25 (Compiled by KSV) |
Re: video.cnbc.com: Problem downloading CNBC video with rtmpdump, rtmpsrv, rtmpsuckQuote:
|
Re: video.cnbc.com: Problem downloading CNBC video with rtmpdump, rtmpsrv, rtmpsuckit uses RTMPT (port 80) instead of RTMP (port 1935). so you need to redirect the particular IP:Port (cp34825.edgefcs.net:80) combination to use rtmpsrv or rtmpsuck.
|
Re: video.cnbc.com: Problem downloading CNBC video with rtmpdump, rtmpsrv, rtmpsuckQuote:
|
Re: video.cnbc.com: Problem downloading CNBC video with rtmpdump, rtmpsrv, rtmpsuckKSV,
Thanks for the help. I'm a rtmpdump newbie... how did you get the arguments to pass into rtmpdump? I saw a lot of posts online about using rtmpsrv/suck to determine what a video is requesting... I set up iptables like this (before I read your post about rtmpt on port 80) iptables -t nat -A OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT Could I do something similar to pick off the arguments I need? Thanks! |
Re: video.cnbc.com: Problem downloading CNBC video with rtmpdump, rtmpsrv, rtmpsuckThere's also an XML file, where you can find the RTMP link.
Code:
http://syndication.cnbc.com/vcps/media/content?id=MzAwMDA0ODE4OQptcGVnNF81MDAwMDAKU3RyZWFtaW5n&UserName=cmsguest@cnbc.com&key=NA&reporting=part="CNBCVIDEOINFO" Code:
<playlist> Code:
rtmpdump -r "rtmp://cp34825.edgefcs.net/ondemand/?auth=NA&aifp=V01&slist=mp4:csmp4/VCPS/Y2011/M09D28/3000048189/4ED1-ASB-PaulBurkner_L" -a "ondemand/?auth=NA&aifp=V01&slist=mp4:csmp4/VCPS/Y2011/M09D28/3000048189/4ED1-ASB-PaulBurkner_L" -y "mp4:csmp4/VCPS/Y2011/M09D28/3000048189/4ED1-ASB-PaulBurkner_L" -o 4ED1-ASB-PaulBurkner_L.flv Code:
RTMPDump v2.4 |
All times are GMT -6. The time now is 02:45 AM. |