I know this is a little old but just wanted to say this totally works with the X-Forwarded-To in case anybody has any question.
Now if only I could get XBMC to do the same, LoL.
Quote:
Originally Posted by KSV
unfortunately that particular stream server doesn't updates it's bootstrap info in timely manner so stream is few seconds behind than actual live stream.
provide actual link to the stream with more details.
i have only tested it with Firefox 17 and above.
may be in some future update. for the time being you can just modify the script yourself.
Code:
function headers()
{
$headers[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8';
$headers[] = 'Connection: Keep-Alive';
$headers[] = 'X-Forwarded-For: 1.2.3.4';
return $headers;
}
|