Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 09-16-2009, 09:10 AM
crk crk is offline
Junior Member
 
Join Date: Sep 2009
Posts: 9
crk is on a distinguished road
Default

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


Hi,

I'm trying to download a flv from this website:
Code:
http://www.schooltv.nl/beeldbank/clip/20071205_wiskundemeisjes05
I've tried to download it with rtmpdump-WIN32-1.6.exe but it fails to parse the url correctly... according to the source code of the page, the url is build from the following flashvar:
Code:
<param name="FlashVars" value="streamer=rtmpte://fmss.teleac.nl/media/&amp;file=video/20071205_wiskundemeisjes05.flv&amp;width=340&amp;height=280&amp;fullscreen=true&amp;debug=on&amp;log=http://nl.sitestat.com/klo/schooltv/s?clip.20071205_wiskundemeisjes05.player&amp;gapro.accountid=UA-2590926-2&amp;controlbar=bottom&amp;image=http%3A%2F%2Fwww.schooltv.nl%2Fbeeldbank%2Fmmbase%2Fimages%2F1933573&amp;gapro-1">
I've tried:
Code:
rtmpdump-WIN32-1.6.exe -r "rtmpte://fmss.teleac.nl/media/&amp;file=video/20071205_wiskundemeisjes05.flv"  -o test.flv
But that doesn't seem to work.


I've also tried Replay Media Catcher 3.0.2 with plugin_zrtmp.dll 5.3.6.9.
But when I start recording, I'm unable to play the video through my browser... I'm getting "Stream not found: video/20071205_wiskundemeisjes05.flv"... which is very weird...It seems like Replay Media Catcher is blocking the stream...
edit:turned of Capture HTTP Media Streams from the settings menu... video plays, but no recording...


Can someone help me to get the original url or to get Replay Media Catcher working without it blocking the stream...


edit:
I have narrowed the html code down to this:
Code:
<object class="flashobject" type="application/x-shockwave-flash" data="http://download.omroep.nl/teleacnot/shared/swf/beeldbank/player.swf" width="340" height="280">
	<param name="movie" value="http://download.omroep.nl/teleacnot/shared/swf/beeldbank/player.swf">
	<param name="FlashVars" value="streamer=rtmpte://fmss.teleac.nl/media/&amp;file=video/20071205_wiskundemeisjes05.flv">
</object>
notice the flashvar with the rtmpte. If I change this to rtmpt (without the e, so no encryption), I can still play the video.

HTML code is now:
Code:
<object class="flashobject" type="application/x-shockwave-flash" data="http://download.omroep.nl/teleacnot/shared/swf/beeldbank/player.swf" width="340" height="280">
	<param name="movie" value="http://download.omroep.nl/teleacnot/shared/swf/beeldbank/player.swf">
	<param name="FlashVars" value="streamer=rtmpt://fmss.teleac.nl/media/&amp;file=video/20071205_wiskundemeisjes05.flv">
</object>
Now Replay Media Catcher detects the stream but tells me: "SWF Verification detected"
Using Jaksta, I'm able to record the video! It gives me:
Code:
Recording of rtmpt://fmss.teleac.nl/media/<break>video/20071205_wiskundemeisjes05.flv
Download file: 4f10d7d8-63ab-45e0-bfb8-7c037f6597fd.flv
Started at: 16/09/2009 18:40
Detecting file name ...
File name detection complete
Restricted Mode - 50% of ondemand or 1 minute of live stream will be captured.
Recording (RTMP) - Waiting for streaming to commence ...
Recording (RTMP) - 240 B
Recording (RTMP) - 261 B
Recording (RTMP) - 290 B
Recording (RTMP) - 315 B
Which is good, but I still want to know what the direct url is, so I can use rtmpdump, which is free...

thanks

Last edited by crk : 09-16-2009 at 02:09 PM.
Reply With Quote
  #2  
Old 09-17-2009, 03:38 AM
Stream Recorder
 
Posts: n/a
Default

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


I don't really know how to make rtmpdump downloading RTMPE/RTMPT streams from schooltv.nl. You can try to use parameters required for streams with SWF Verification.

See also:
RTMPE stream recording/downloading/capturing/ripping/saving
Reply With Quote
  #3  
Old 09-19-2009, 04:09 AM
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 tried doing SWF verification using flasm and openssl, but I'm still getting: "stream not found" probably the playpath or some other parameter is incorrect
Reply With Quote
  #4  
Old 09-19-2009, 09:56 AM
noob2001204 noob2001204 is offline
Senior Member
 
Join Date: Dec 2007
Posts: 213
noob2001204 has a spectacular aura aboutnoob2001204 has a spectacular aura about
Default

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


try Replay Media Catcher with the old rtmp plugin

Replacing rtmp plugin

1. Disconnect the internet
2. Replace the new plugin with this
3. Start Replay Media Catcher (RMC)
4. then reconnect the internet and start to capture
Reply With Quote
  #5  
Old 09-21-2009, 10:53 AM
flysub flysub is offline
Junior Member
 
Join Date: Jun 2009
Posts: 7
flysub is on a distinguished road
Default

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


with rtmpdump try this way:

Code:
rtmpdump -r "rtmpe://fmss.teleac.nl/media/&file=video/20071205_wiskundemeisjes05.flv" -o test.flv
Reply With Quote
  #6  
Old 05-23-2010, 04: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/&amp;file=video/20071205_wiskundemeisjes05.flv"

That's not one flashvar, these are TWO flashvars
value="streamer=rtmpt://fmss.teleac.nl/media/&amp;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
Reply Post New Thread
Tags: , , , , , , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 07:41 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons