download videos from svt play 31. Dec 2010
You can download videos from SVT Play on Mac OS X with rtmpdump. Just replace the URL in the following one-liner with the URL of the video’s web page.
curl -s http://svtplay.se/v/2260189/kobra/del_10_av_11 |\
sed -E -n "s/.*dynamicStreams=url:([^,]*).*/\1/p" |\
tail -n 1 | xargs -I {} rtmpdump -r {} -o video.flv
If you’re using Linux just replace the -E parameter with -r to make it work. To convert the flash container to an mp4 container use ffmpeg:
ffmpeg -i video.flv -vcodec copy -acodec copy video.mp4
Kommentare (2)