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.