The problem is I\'ve a slow internet connection, and the video doesn\'t buffer like in YouTube. Therefore I was wondering weather I can extract the url of the .flv file which is
This file is actually being streamed over RTMP, so there isn't any FLV to download per-se.
Unfortunately, unless you use some sketchy tools like RTMPdump, there's no way to download it.
RTMPdump works perfectly.
http://www.nirsoft.net/utils/rtmp_dump_helper.html allows you to easily use RTMPdump with Windows.
try using this firefox extension: https://addons.mozilla.org/en-US/firefox/addon/3006?src=api it lets you save most flv, or other video files on the net.
rtmpdump
and rtmpsuck
worked well for me. The trick is finding the relevant options for rtmpdump
Detailed instructions can be found here: http://pclosmag.com/html/issues/201104/page19.html
It comes down to this:
iptables -t nat -A OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT
rtmpsuck
rtmpdump
iptables -t nat -D OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT
rtmpdump
with the relevant optionsNote that if it's a live stream you might need to give the --live
option to rtmpdump
.
If you can find the url, and the m3u8 playlist, then you can use VLC to save the stream.
... wait. It will download the video and assemble it. ...enjoy.