Question: 4od, rtmpsuck, cookies and authenticationTwo questions:
1) Why does rtmpsuck sometimes not record all parameters from the rtmp url? 2) How to handle websites that require you to login before you watch videos, and use cookies to store login information Using Linux 3.2.0-32-generic rtmpdump/librtmp 2.4~20110711.gitc28f1bab-1 Note: This entire post relates only to Channel4/4od videos from before August. Since sometime mid-August all new videos use Http Dynamic Streaming on that site. I'm using librtmp in a python script (XBMC plugin) to stream videos from 4od. There are two different servers that the videos stream from, with slightly different authentications, one is ll.securestream.channel4.com the other is ak.securestream.channel4.com. When you stream a video it randomly comes from one of those servers. Until recently both worked fine from the plugin, but since the other day the AK server has stopped working. I think they started requiring users to be logged in to watch videos older than 30 days at the same time. In order to figure out what's changed I've been using rtmpsuck to compare the rtmp parameters from the plugin and from the browser. The parameters look identical in that comparison, but for the LL server the authentication details are missing from app and tcUrl in the rtmpsuck output, even though the videos play. librtmp parameters when using LL server for video at http://www.channel4.com/programmes/f...er/4od#3188820 Code:
rtmpe://ll.securestream.channel4.com:1935/a4174/e1/?e=1351863246&h=1d729ce414034a9a73c91bc4f01c4615 playpath=mp4:xcuassets/CH4_08_02_900_42045006001002_002.mp4?e=1351863246&h=1d729ce414034a9a73c91bc4f01c4615 swfurl=http://www.channel4.com/static/programmes/asset/flash/swf/4odplayer-11.31.2.swf flashver=LNX\2011,2,202,243 pageurl=http://www.channel4.com swfvfy=true Code:
RTMP Proxy Server v2.4 The fact there is parameter data missing from rtmpsuck's output when using LL means that the browser could be truncating data from AK. For comparison here's the info for AK. librtmp parameters: Code:
rtmpe://ak.securestream.channel4.com:1935/4oD/?auth=da_cqbuaobgcEb8bkc_dMbucCdzdvcWdxcv-bqK6.e-eS-jyM-oRpbj8jfkXmdr8jbsVockfsVnUkgqSj7ndpfkSjdjbmcrakSraoekfsXmekeqSjbo1qfkekXkdndsfkh&aifp=v002&slist=assets/CH4_08_02_900_42045005001002_002.mp4 playpath=mp4:assets/CH4_08_02_900_42045005001002_002.mp4?auth=da_cqbuaobgcEb8bkc_dMbucCdzdvcWdxcv-bqK6.e-eS-jyM-oRpbj8jfkXmdr8jbsVockfsVnUkgqSj7ndpfkSjdjbmcrakSraoekfsXmekeqSjbo1qfkekXkdndsfkh&aifp=v002&slist=assets/CH4_08_02_900_42045005001002_002.mp4 swfurl=http://www.channel4.com/static/programmes/asset/flash/swf/4odplayer-11.31.2.swf flashver=LNX\2011,2,202,243 pageurl=http://www.channel4.com swfvfy=true Code:
RTMP Proxy Server v2.4 Is there a way that I can be sure I'm getting all the information passed to the rtmpe server? Output in XBMC, using AK: Code:
14:31:20 T:2975841088 INFO: Parsing... The following is are the librtmp parameters as they were previously, which I believe was working up until a few days ago: Code:
rtmpe://ak.securestream.channel4.com:1935/4oD/?ovpfv=1.1&auth=da_bcbkbNaVbDdecDdabMdNb2bkb0c2b9d4-bqK9XP-eS-fyM-tSqetWncscj7r8tWnejemVnflVpfl9jctRrTsbn8tUkVr8tToSkVl9oWlYp6lejftYrcscnethkXs0se&aifp=v002&slist=assets/CH4_08_02_16_49122006001001_002.mp4 playpath=mp4:assets/CH4_08_02_16_49122006001001_002.mp4?auth=da_bcbkbNaVbDdecDdabMdNb2bkb0c2b9d4-bqK9XP-eS-fyM-tSqetWncscj7r8tWnejemVnflVpfl9jctRrTsbn8tUkVr8tToSkVl9oWlYp6lejftYrcscnethkXs0se&aifp=v002&slist=assets/CH4_08_02_16_49122006001001_002.mp4 swfurl=http://www.channel4.com/static/programmes/asset/flash/swf/4odplayer-11.31.2.swf swfvfy=true Full text, ending with ... Code:
NetConnection.Connect.Rejected Question 2) It's possible that only users who are logged in can view videos from the AK server, in which case I need to know how to handle the cookies that are used to store login/session data. Obviously rtmp doesn't know anything about cookies, so how is this normally handled by websites? Do they usually only allow to rtmp from IPs of users who are logged in? If that is the case with AK then when I'm logged in to the site in a browser, I would expect to be able to stream with rtmpdump. That does not happen. Or is it normally the case that having the correct rtmp parameters is enough to allow access, regardless of how the website handles logins? |
Re: Question: 4od, rtmpsuck, cookies and authenticationQuote:
github.com/svnpenn/rtmpdump/commit/6ed7 |
Re: Question: 4od, rtmpsuck, cookies and authenticationThanks for the information. So to capture all the data that's passed to the rtmp server, I should use something RtmpExplorer?
Quote:
|
Re: Question: 4od, rtmpsuck, cookies and authenticationQuote:
github.com/svnpenn/rtmpdump/blob/svnpenn/README Code:
$ rtmpsuck |
Re: Question: 4od, rtmpsuck, cookies and authenticationI have been doing the following, which I believe is a proper port redirect:
Code:
sudo iptables -t nat -A OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT |
Re: Question: 4od, rtmpsuck, cookies and authenticationQuote:
|
All times are GMT -6. The time now is 08:08 AM. |