Download a NRK nett-tv MMS stream

NRK on the goThis 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!

5 Responses to “Download a NRK nett-tv MMS stream”


  1. Gravatar Icon 1 Rchard

    Nice. You can also use a User JavaScript/Greasemonkey script.

  2. Gravatar Icon 2 Aleksander Grande

    Thanks a lot for this, im gonna plug this right into my mediacenter =)

  3. Gravatar Icon 3 tom

    Wow thanks, I was looking for something like this for a while.

  4. Gravatar Icon 4 Morten Skogly

    Har du sett noe på den nye varianten av nett-tven med mp4 video?

  5. Gravatar Icon 5 Rolf

    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.

Leave a Reply