View Single Post
  #5  
Old 08-28-2015, 10:20 AM
zdanman zdanman is offline
Junior Member
 
Join Date: Mar 2015
Posts: 8
zdanman is on a distinguished road
Thumbs up

Re: Help Downloading an RTMP Stream from Flash Video Object


Figured it out due to a genius on this forum. They know who they are.

They let me know I was missing 2 things....

1. add the security token with the -T command line switch

example: -T "^056%5KPl{FCy"

They said you can find this token via different ways.... one way is here:

http://stream-recorder.com/forum/can...en-t18788.html

2. use the -C switch to send an arbitrary string containing the username to the RTMP server (im assuming)...

example: -C S:zdanman

So the final command line looked like this...

Code:
rtmpdump -v -r "rtmpe://s3.pepper.com:1937/video" -W "http://yeah.com/assets/js/player.swf" -p "http://yeah.com/members/videos" -y "mp4:81NlloBFFTwuv7H7We19/ja7HWrvj0gA8RzcPGc2l8crly3UcHXwQ" -T "^056%5KPl{FCy" -C S:zdanman -o "test234.flv"
Thanks a BUNCH!!!

[Edit]

Also forgot to add that I'm using the latest RTMP found here...

https://github.com/K-S-V/Scripts/rel...mpdump-2.4.zip

Last edited by zdanman : 08-28-2015 at 11:09 AM.
Reply With Quote