PDA

View Full Version : How to download Vega Science videos?


mocha
04-04-2011, 11:28 PM
Hello. Is there some workaround to get videos at www.vega.org.uk to work with rtmpsrv/rtmpsuck? Following the standard Linux procedure of using iptables to redirect port 1935 to another user and so on and so forth doesn't work with that site anymore. They used to work fine but now rtmpsrv/rtmpsuck just sit there as if nothing is happening.

mocha
04-04-2011, 11:45 PM
Well, I ended up figuring out a manual method. In case anyone is interested, view the source of the page with the video you want, then search for "rtmp" and you get to a block of text like this:

<script type="text/javascript">
// player is jwplayer from www.longtailvideo.com
var s1 = new SWFObject("http://www.vega.org.uk/flash/player.swf","single","480","380","9");
s1.addVariable("type", "rtmp");
s1.addParam("allowfullscreen","true");
s1.addVariable("image","http://www.vega.org.uk/flash/preview.jpg");
s1.addVariable("streamer","rtmp://www.vega.org.uk:443/oflaDemo");
s1.addVariable("file","tnbtvoyagetothebottomofthesea320x240.flv");
s1.addVariable("showdigits","total");
//s1.addVariable("stretching", "fill");
s1.write("player");
</script>


Based on the above info, the rtmpdump command that worked ended up being like this:

rtmpdump -v -r rtmp://www.vega.org.uk:443/oflaDemo/ --playpath "tnbtvoyagetothebottomofthesea320x240.flv" -o output.flv

I'm still curious why rtmpsrv/rtmpsuck don't work on that site. Thanks.

Stream Recorder
04-05-2011, 12:00 AM
You need to post the exact error that you get. Also have you compiled the latest version of rtmpdump (http://all-streaming-media.com/record-video-stream/rtmpdump-freeware-console-RTMP-downloading-application.htm) from SVN?

See also:
FAQ: How to record/download/capture/save Adobe Flash .FLV video RTMP stream from embedded player (http://all-streaming-media.com/faq/recording-media-stream/faq-record-download-capture-save-flash-flv-video-rtmp.htm)
How to record rtmp:// flash video .flv stream from embedded Adobe Flash Player

chap
04-05-2011, 10:58 AM
I'm still curious why rtmpsrv/rtmpsuck don't work on that site. Thanks.
rtmpsrv/rtmpsusk can not listen to port 443, only 1935.Although maybe I am wrong.

getflv
04-05-2011, 04:16 PM
rtmpsrv/rtmpsusk can not listen to port 443, only 1935.Although maybe I am wrong.

Please install latest GetFLV (http://all-streaming-media.com/record-video-stream/GetFLV-Download-and-convert-flash-video-streaming.htm) to download Vega Science videos.

placebo
04-05-2011, 04:23 PM
Please install latest GetFLV (http://all-streaming-media.com/record-video-stream/GetFLV-Download-and-convert-flash-video-streaming.htm) to download Vega Science videos.

@getflv
this is not the point. we are here in the rtmpdump forum section (http://stream-recorder.com/forum/rtmpdump-f54.html). Here, the boardies discuss the use of the FREEWARE tool, because they dont plan to spend money on costly tools such as your product ;)

I have tested GetFLV (http://all-streaming-media.com/record-video-stream/GetFLV-Download-and-convert-flash-video-streaming.htm), and it works well with Vega Science videos.. but that's not the point. This thread is about "How to download Vega Science videos with rtmpdump (and rtmpsrv)" and not about "How to download Vega Science videos"

EDIT: this thread is now moved to Video stream recording (http://stream-recorder.com/forum/video-stream-recording-f4.html) forum section.

mocha
04-08-2011, 03:11 AM
rtmpsrv/rtmpsusk can not listen to port 443, only 1935.Although maybe I am wrong.

I thought about this as well and I'm not certain either. I'm using the 2.3 version and have not tried SVN, if someone could enlighten us to the port 443 issue I'd try out the latest SVN if there is an update for it. Thanks.

mocha
04-08-2011, 03:12 AM
You need to post the exact error that you get. Also have you compiled the latest version of rtmpdump (http://all-streaming-media.com/record-video-stream/rtmpdump-freeware-console-RTMP-downloading-application.htm) from SVN?

There's no error, rtmpsrv just sits there as if nothing is coming though and the video just plays in the browser. I have not tired SVN, just version 2.3.

Admin
04-08-2011, 02:24 PM
Is there any problem redirecting traffic coming out to port 443 the same way you do it for port 1935?

mocha
04-14-2011, 02:23 AM
Is there any problem redirecting traffic coming out to port 443 the same way you do it for port 1935?

I just tried redirecting to port 443 on my iptables command and now all of the flash windows on the Vega site say that the rtmp server is not found. After I flushed out the rule, the videos play on the site. Maybe I should be redirecting to a different port?