View Single Post
  #6  
Old 05-23-2010, 03:22 PM
crk crk is offline
Junior Member
 
Join Date: Sep 2009
Posts: 9
crk is on a distinguished road
Default

Re: Replay Media Catcher blocks RTMPTE | finding exact url to use with rtmpdump


I finally found what I was doing wrong

As an rtmp server is different from a direct http link, you have to pass the rtmp server to rtmpdump AND the file to stream.

I misinterpreted the flashvar:
value="streamer=rtmpt://fmss.teleac.nl/media/&file=video/20071205_wiskundemeisjes05.flv"

That's not one flashvar, these are TWO flashvars
value="streamer=rtmpt://fmss.teleac.nl/media/&file=video/20071205_wiskundemeisjes05.flv"

So
streamer: rtmpt://fmss.teleac.nl/media/
file: video/20071205_wiskundemeisjes05.flv

So to download it using rtmpdump, I needed this command:

Code:
rtmpdump --rtmp rtmpt://fmss.teleac.nl/media --playpath /video/20071205_wiskundemeisjes05. --port 80 --swfVfy http://download.omroep.nl/teleacnot/shared/swf/beeldbank/player.swf -o video.flv
(added the swfVerify to avoid problems)

Hope this helps others to ;-)

If you're Dutch and you want an easy tool to download from SchoolTv.nl, I created an GUI for RTMPdump http://neat.be/schooltvdownloader/
Reply With Quote