This will print the stream url of the actual stream when you want to download the video of http://www1.nrk.no/nett-tv/klipp/450753
wget `wget --header "Cookie: NetTV2.0Speed=NetTV2.0Speed=10000" http://www1.nrk.no/nett-tv/klipp/450753 -q -O- | grep -i Filename | cut -d\" -f4` -O- -q | grep "ref href" | cut -d\" -f2 | head -n 1
Or make a small bash script called: nrk-nett-tv.sh:
#!/bin/sh a=`wget --header "Cookie: NetTV2.0Speed=NetTV2.0Speed=10000" $1 -q -O- | grep -i Filename | cut -d\" -f4` b=`wget $a -O- -q | grep "ref href" | cut -d\" -f2 | head -n 1` c=`echo $b | sed s@/@-@gi | sed s/mms:--//gi` echo $b echo $c
Run the script with the url in your browser. Like this: nrk-nett-tv.sh http://www1.nrk.no/nett-tv/klipp/450753
After that, just use VLC to download it.
If you’re new here, you may want to subscribe to my RSS feed.
Thanks for visiting!
Nice. You can also use a User JavaScript/Greasemonkey script.
Thanks a lot for this, im gonna plug this right into my mediacenter =)
Wow thanks, I was looking for something like this for a while.
Har du sett noe på den nye varianten av nett-tven med mp4 video?
Rchard: Great. Much easier for most people.
Alexander: Cool!
Tom: You’re welcome!
Morten: Haven’t looked at the new nett-tv with the mp4 video yet.