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 > rtmpdump
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #201  
Old 01-27-2013, 11:10 PM
AmazingMatze AmazingMatze is offline
Member
 
Join Date: Sep 2011
Posts: 52
AmazingMatze is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Code:
rtmpdump
-v
-r "rtmpe://XXXX/live-edge"
-a "live-edge"
-f "WIN 11,5,502,146"
-W "http://XXXX/static/flash/CBV_2p632.swf"
-p "http://XXXX/XXXX"
-C S:XXXX		[USERNAME]
-C S:XXXX		[MODEL_NAME]
-C S:2.632		[SWF_VERSION]
-C S:XXXX		[PW_HASH]
-C S:XXXX		[OPTIONAL_HASH]
-y "playpath"
-T "m9z#$dO0qe34Rxe@sMYxx%"
-o "XXXX.flv"
I got bored and wrote (just like user savanna suggested) a little javascript that will retrieve the above parameters (XXXX) from the website itself. Just put it as a bookmark in Firefox.

Code:
javascript:var prm=document.getElementById('movie').childNodes[6].value;prm=prm.replace(/=/g,"&").split("&");alert('rtmpdump -v -r "rtmpe://'+prm[3]+'/live-edge" -a "live-edge" -f "WIN 11,5,502,146" -W "http://'+prm[23]+'/static/flash/CBV_2p632.swf" -p "http://'+prm[23]+'/'+prm[1]+'" -C S:'+prm[13]+' -C S:'+prm[1]+' -C S:2.632 -C S:'+prm[25]+' -C S:'+prm[27]+' -y "playpath" -T "m9z#$dO0qe34Rxe@sMYxx%" -o "'+prm[1]+'.flv"');
// I changed it a little bit. This one also retrieves the SwfUrl and the SwfVersion:

Code:
javascript:var prm=document.getElementById('movie').childNodes[6].value;prm=prm.replace(/=/g,"&").split("&");swfUrl=document.getElementsByTagName('object')[0].getAttribute('data');swfVers=swfUrl.replace("_",".").split(".");swfVers=swfVers[1];swfVers=swfVers.split("p");prompt('RTMPDumpCL','rtmpdump -v -r "rtmpe://'+prm[3]+'/live-edge" -a "live-edge" -f "WIN 11,5,502,146" -W "http://'+prm[23]+swfUrl+'" -p "http://'+prm[23]+'/'+prm[1]+'" -C S:'+prm[13]+' -C S:'+prm[1]+' -C S:'+swfVers[0]+'.'+swfVers[1]+' -C S:'+prm[25]+' -C S:'+prm[27]+' -y "playpath" -T "m9z#$dO0qe34Rxe@sMYxx%" -o "'+prm[1]+'.flv"');reload();

Last edited by AmazingMatze : 01-28-2013 at 07:39 PM.
Reply With Quote
  #202  
Old 01-28-2013, 07:36 AM
CristianoA CristianoA is offline
Senior Member
 
Join Date: Nov 2012
Location: Micronesia
Posts: 261
CristianoA is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by AmazingMatze View Post
Code:
rtmpdump
-v
-r "rtmpe://XXXX/live-edge"
-a "live-edge"
-f "WIN 11,5,502,146"
-W "http://XXXX/static/flash/CBV_2p632.swf"
-p "http://XXXX/XXXX"
-C S:XXXX		[USERNAME]
-C S:XXXX		[MODEL_NAME]
-C S:2.632		[SWF_VERSION]
-C S:XXXX		[PW_HASH]
-C S:XXXX		[OPTIONAL_HASH]
-y "playpath"
-T "m9z#$dO0qe34Rxe@sMYxx%"
-o "XXXX.flv"
I got bored and wrote (just like user savanna suggested) a little javascript that will retrieve the above parameters (XXXX) from the website itself. Just put it as a bookmark in Firefox.

Code:
javascript:var prm=document.getElementById('movie').childNodes[6].value;prm=prm.replace(/=/g,"&").split("&");alert('rtmpdump -v -r "rtmpe://'+prm[3]+'/live-edge" -a "live-edge" -f "WIN 11,5,502,146" -W "http://'+prm[23]+'/static/flash/CBV_2p632.swf" -p "http://'+prm[23]+'/'+prm[1]+'" -C S:'+prm[13]+' -C S:'+prm[1]+' -C S:2.632 -C S:'+prm[25]+' -C S:'+prm[27]+' -y "playpath" -T "m9z#$dO0qe34Rxe@sMYxx%" -o "'+prm[1]+'.flv"');
great work thanks
Reply With Quote
  #203  
Old 01-29-2013, 06:32 AM
Cbater Cbater is offline
Junior Member
 
Join Date: Jan 2013
Posts: 22
Cbater is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by Humbug View Post
I'm sure this works fine but with those parameters you are only able to grab public shows. However the guys are right they did change things up again for password/ private rooms. There were a couple of scripts out there that used your 2.4 version of rtmpdump and the original 2.3. It uses findstr via a txt file in the -v parameter to figure out the variables like the token (sorry for the weird explanation, hope you know what I mean).
yes! it only works with public shows. password/private rooms dont work anymore
Reply With Quote
  #204  
Old 01-29-2013, 07:13 PM
AmazingMatze AmazingMatze is offline
Member
 
Join Date: Sep 2011
Posts: 52
AmazingMatze is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


I just wanted to add the latest addition to my Bookmarklet. The necessary replacements for the password hash. Although this is probably not working for private rooms anymore.

Code:
javascript:var prm=document.getElementById('movie').childNodes[6].value;prm=prm.replace(/=/g,"&").split("&");swfUrl=document.getElementsByTagName('object')[0].getAttribute('data');swfVers=swfUrl.replace("_",".").split(".");swfVers=swfVers[1];swfVers=swfVers.split("p");prompt('RTMPDumpCL','rtmpdump -v -r "rtmpe://'+prm[3]+'/live-edge" -a "live-edge" -f "WIN 11,5,502,146" -W "http://'+prm[23]+swfUrl+'" -p "http://'+prm[23]+'/'+prm[1]+'" -C S:'+prm[13]+' -C S:'+prm[1]+' -C S:'+swfVers[0]+'.'+swfVers[1]+' -C S:'+prm[25].replace(/\$/g,"^$")+' -C S:'+prm[27]+' -y "playpath" -T "m9z#$dO0qe34Rxe@sMYxx%" -o "'+prm[1]+'.flv"');reload();
Reply With Quote
  #205  
Old 01-31-2013, 05:07 PM
jimbob9 jimbob9 is offline
Junior Member
 
Join Date: Jan 2013
Posts: 9
jimbob9 is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by AmazingMatze View Post
I just wanted to add the latest addition to my Bookmarklet. The necessary replacements for the password hash. Although this is probably not working for private rooms anymore.

Code:
javascript:var prm=document.getElementById('movie').childNodes[6].value;prm=prm.replace(/=/g,"&").split("&");swfUrl=document.getElementsByTagName('object')[0].getAttribute('data');swfVers=swfUrl.replace("_",".").split(".");swfVers=swfVers[1];swfVers=swfVers.split("p");prompt('RTMPDumpCL','rtmpdump -v -r "rtmpe://'+prm[3]+'/live-edge" -a "live-edge" -f "WIN 11,5,502,146" -W "http://'+prm[23]+swfUrl+'" -p "http://'+prm[23]+'/'+prm[1]+'" -C S:'+prm[13]+' -C S:'+prm[1]+' -C S:'+swfVers[0]+'.'+swfVers[1]+' -C S:'+prm[25].replace(/\$/g,"^$")+' -C S:'+prm[27]+' -y "playpath" -T "m9z#$dO0qe34Rxe@sMYxx%" -o "'+prm[1]+'.flv"');reload();
I'm having some trouble. Is all I have to do is login to chaturbate, run the bookmarklet, copy the command and paste it to a command prompt with rtmpdump.exe?

I've got windows, and this is the error I get:

RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
WARNING: Trying different position for server digest!
INFO: Connected...
ERROR: Closing connection: NetStream.Play.Failed

I tried with linux too. Am I missing something here? Do I need to do something other than login to chaturbate, and run the bookmarklet on the cam screen? I'm not trying to do a password protected stream or anything.. just a public stream.
Reply With Quote
  #206  
Old 01-31-2013, 06:50 PM
AmazingMatze AmazingMatze is offline
Member
 
Join Date: Sep 2011
Posts: 52
AmazingMatze is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by jimbob9 View Post
I'm having some trouble. Is all I have to do is login to chaturbate, run the bookmarklet, copy the command and paste it to a command prompt with rtmpdump.exe?

I've got windows, and this is the error I get:

RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
WARNING: Trying different position for server digest!
INFO: Connected...
ERROR: Closing connection: NetStream.Play.Failed

I tried with linux too. Am I missing something here? Do I need to do something other than login to chaturbate, and run the bookmarklet on the cam screen? I'm not trying to do a password protected stream or anything.. just a public stream.
Yes, all you have to do is go to the site and click on a chatroom (you don't need to login for that).

Execute the Bookmarklet, then close your browser. My bookmarklet extracts the path to the excact same server that you were viewing (e.g. edge1-a, edge1-b, edge2-a, edge2-b etc.).

The site won't allow you to stream more than one stream from the same server. That's why you have to close your video in the browser. The other batch commands didn't care for that and used a static (like 9-b), but I wanted to make sure of it to catch the stream.

Then paste the command into your command prompt or a ".bat" file (in the same directory where RTMPDump is located) and execute it.
Reply With Quote
  #207  
Old 02-01-2013, 01:53 AM
Cbater Cbater is offline
Junior Member
 
Join Date: Jan 2013
Posts: 22
Cbater is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


how are you fixing the flv files?
Reply With Quote
  #208  
Old 02-01-2013, 06:50 PM
jimbob9 jimbob9 is offline
Junior Member
 
Join Date: Jan 2013
Posts: 9
jimbob9 is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by AmazingMatze View Post
Yes, all you have to do is go to the site and click on a chatroom (you don't need to login for that).

Execute the Bookmarklet, then close your browser. My bookmarklet extracts the path to the excact same server that you were viewing (e.g. edge1-a, edge1-b, edge2-a, edge2-b etc.).

The site won't allow you to stream more than one stream from the same server. That's why you have to close your video in the browser. The other batch commands didn't care for that and used a static (like 9-b), but I wanted to make sure of it to catch the stream.

Then paste the command into your command prompt or a ".bat" file (in the same directory where RTMPDump is located) and execute it.
Thanks for the info. is it possible to watch the video at all while it's recording? Maybe opening another browser window afterwards?
Reply With Quote
  #209  
Old 02-01-2013, 07:26 PM
AmazingMatze AmazingMatze is offline
Member
 
Join Date: Sep 2011
Posts: 52
AmazingMatze is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by jimbob9 View Post
Thanks for the info. is it possible to watch the video at all while it's recording? Maybe opening another browser window afterwards?
Just drag it in VLC player while it is playing. - You could also try to reopen the browser or the tab you closed and see if you catch a different server. If it doesn't work try refreshing until you catch a different server.
Reply With Quote
  #210  
Old 02-02-2013, 05:17 AM
InterdimensionalCow InterdimensionalCow is offline
Junior Member
 
Join Date: Aug 2012
Posts: 17
InterdimensionalCow is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Hmm, odd. I'm using AmazingMatze's second Javascript code from the post at the top of this page, rtmpdump 2.4, closing my browser after getting the line, and putting it in a .bat with rtmpdump. However, I still get the NetStream.Play.Failed error. I'm probably just doing something stupidly wrong, but then I don't know how to identify it.
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 08:13 PM.


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