I read the stickies. I consider myself techsavy yet new to the video streaming world. Had a question about what command line I would use to download a video from the following example object....
The video players code looks like the following:
Code:
<object id="mediaplayer" width="100%" height="100%" type="application/x-shockwave-flash" data="http://yeah.com/assets/js/player.swf" bgcolor="#000000" name="mediaplayer" tabindex="0">
<param name="allowfullscreen" value="true">
<param name="allowscriptaccess" value="always">
<param name="seamlesstabbing" value="true">
<param name="wmode" value="opaque">
<param name="flashvars" value="netstreambasepath=http%3A%2F%2Fyeah.com%2Fmembers%2Fvideos&id=mediaplayer&smoothing=true&bufferlength=10&skin=http%3A%2F%2Fyeah.com%2Fassets%2Fjs%2Fminima12.zip&file=mp4%3A81NlloBFFTwuv7H7We19%2Fja7HWrvj0gA8RzcPGc2l8crly3UcHXwQ&streamer=rtmpe%3A%2F%2Fs3.pepper.com%3A1937%2Fvideo&image=http%3A%2F%2Fyeah.com%2Fassets%2Fimg%2Fplayer.jpg&u=zdanman&controlbar.position=over">
</object>
Translated for the readers convenience, it contains the following parameters:
Code:
data="http://yeah.com/assets/js/player.swf"
netstreambasepath="http://yeah.com/members/videos"
id="mediaplayer"
smoothing="true"
bufferlength="10"
skin="http://yeah.com/assets/js/minima12.zip"
file="mp4:81NlloBFFTwuv7H7We19/ja7HWrvj0gA8RzcPGc2l8crly3UcHXwQ"
streamer="rtmpe://s3.pepper.com:1937/video"
image="http://yeah.com/assets/img/player.jpg"
u="zdanman"
controlbar.position="over"
What parameters would I put in the command line (running rtmpdump from command prompt)?
I tried the following:
Code:
F:\rtmp\rtmpdump-2.3-windows>rtmpdump.exe -r "rtmp://s3.pepper.com:1937/video" -o "f:\temp.flv"
Which returned...
Code:
RTMPDump v2.3
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
ERROR: You must specify a playpath (--playpath) or url (-r "rtmp://host[:port]/playpath") containing a playpath
Please help!!!