View Single Post
  #16  
Old 05-21-2010, 01:04 PM
Garibaldi Garibaldi is offline
Junior Member
 
Join Date: May 2010
Posts: 1
Garibaldi is on a distinguished road
Default

Re: Re: rtmpdump v2.2d Command Exit Code 1 (raw code = 256) when downloading from BBC


Hi Khrushchev, if you go to the get_iplayer website where the original author of the program (Phil Lewis) has kindly allowed users to continue to post comments on the final blog post, you will see that a user under the name 'fsck' has posted the two lines of code that you need to change in get_iplayer.pl:

http://linuxcentre.net/get_iplayer-d...#comment-22883 (Remember to change the quotes if you use it from the linuxcenter or just copy and paste from here):
Quote:
Under the section ‘# Limelight CDN’ change these two lines:
From:
Code:
$conn->{playpath} = "$cattribs->{identifier}?$cattribs->{authString}";
To:
Code:
$conn->{playpath} = "$cattribs->{identifier}";
AND
From:
Code:
$conn->{application} = $cattribs->{application};
To:
Code:
$conn->{application} = "$cattribs->{application}?$cattribs->{authString}";
P.S. Thank you to whoever copied and posted the code from the comment at linuxcentre, I should have thought myself to copy it and paste it here as well, duh.

Last edited by Garibaldi : 05-21-2010 at 08:32 PM. Reason: fix curly to straight quote
Reply With Quote