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
  #341  
Old 03-20-2014, 01:04 PM
malky malky is offline
Member
 
Join Date: Nov 2012
Posts: 34
malky is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


You have my sympathies. They might slag off Windows but at least with windows you're more likely to find that someone has already sorted you problem.
Reply With Quote
  #342  
Old 03-21-2014, 02:25 AM
yetanotherday yetanotherday is offline
tinyurl.com/sleazy-script
 
Join Date: Jul 2012
Posts: 54
yetanotherday is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by malky View Post
You have my sympathies. They might slag off Windows but at least with windows you're more likely to find that someone has already sorted you problem.
nice reply
Reply With Quote
  #343  
Old 03-21-2014, 06:55 AM
yetanotherday yetanotherday is offline
tinyurl.com/sleazy-script
 
Join Date: Jul 2012
Posts: 54
yetanotherday is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


finally solved !
http://stream-recorder.com/forum/rtm...e-t4229p4.html


this shit took me 2 years

Reply With Quote
  #344  
Old 03-23-2014, 09:54 PM
stream23leech stream23leech is offline
Junior Member
 
Join Date: Feb 2013
Posts: 10
stream23leech is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


The error with Linux is based on $ and = in the command.

Quote:
Originally Posted by marktr View Post
@KSV - amazing as usual!

TRemember to escape $ in shells where appropriate, and that \u003D is = (equals symbol), and you'll be good to go.

Thanks KSV again!

Last edited by stream23leech : 03-23-2014 at 11:41 PM. Reason: QUOTE
Reply With Quote
  #345  
Old 03-28-2014, 09:15 AM
Bidul76 Bidul76 is offline
Junior Member
 
Join Date: Mar 2014
Posts: 2
Bidul76 is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by Arukarudo View Post
I were able to make it work as well, i used the javascript that Malky provided, it had just one little error like basa666 pointed, it were an extra space that made the script get a wrong flash version.

So basically you will download the KSVs version of Rtmpdump from https://github.com/K-S-V/Scripts/releases (click the green button)

and if you're on:

Chrome
- Press Ctrl+D
- Click Edit
- Give any Name and on url you put
Code:
javascript:var raw=$('param[name="FlashVars"]').val().split('&');var fv={}; for(var i in raw) {var d=raw[i].split('='); fv[d[0]] = unescape(d[1]);} var swfu=$('#movie').attr('data'); swfv = swfu.substring(swfu.indexOf('_')+1,swfu.indexOf('.')).replace('p','.'); prompt('RTMPDumpCL','rtmpdump -v -r "rtmp://'+fv['address']+'/live-edge" -p "http://'+fv['dom']+'/'+fv['pid']+'" -C S:'+fv['uid']+' -C S:'+fv['pid']+' -C S:'+swfv+' -C S:'+fv['pw']+' -C S:'+fv['rp']+' -T "m9z#$dO0qe34Rxe@sMYxx%%" -y "playpath" -o "'+fv['pid']+'_'+Number(new Date()/1000).toFixed(0)+'.flv"');
- Save
- Go to the chaturbate page you want and click on the favorite button you just created
- Copy the command and paste it on a cmd window (you need to be on the folder where you unzipped the rtmpdump code)

Firefox
- Go to the chaturbate's broadcaster page you want
- Press Ctrl+Shift+K
- Paste the code
Code:
javascript:var raw=$('param[name="FlashVars"]').val().split('&');var fv={}; for(var i in raw) {var d=raw[i].split('='); fv[d[0]] = unescape(d[1]);} var swfu=$('#movie').attr('data'); swfv = swfu.substring(swfu.indexOf('_')+1,swfu.indexOf('.')).replace('p','.'); prompt('RTMPDumpCL','rtmpdump -v -r "rtmp://'+fv['address']+'/live-edge" -p "http://'+fv['dom']+'/'+fv['pid']+'" -C S:'+fv['uid']+' -C S:'+fv['pid']+' -C S:'+swfv+' -C S:'+fv['pw']+' -C S:'+fv['rp']+' -T "m9z#$dO0qe34Rxe@sMYxx%%" -y "playpath" -o "'+fv['pid']+'_'+Number(new Date()/1000).toFixed(0)+'.flv"');
- Copy the command and paste it on a cmd window (you need to be on the folder where you unzipped the rtmpdump code)

And that is it =)
Thanks a lot for Malky and Basa666 for the great help!
Hello,

with Firefox I have this message :
TypeError: swfu is undefined



thanks
Reply With Quote
  #346  
Old 03-28-2014, 11:53 PM
malky malky is offline
Member
 
Join Date: Nov 2012
Posts: 34
malky is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Try typing :-

javascript:var raw=$('param[name="FlashVars"]').val().split('&');var fv={}; for(var i in raw) {var d=raw[i].split('='); fv[d[0]] = unescape(d[1]);} var swfu=movie.data; swfv = swfu.substring(swfu.indexOf('_')+1, swfu.lastIndexOf('.')).replace('p','.'); prompt('RTMPDumpCL','rtmpdump -v -r "rtmp://'+fv['address']+'/live-edge" -p "http://'+fv['dom']+'/'+fv['pid']+'" -C S:'+fv['uid']+' -C S:'+fv['pid']+' -C S:'+swfv+' -C S:'+fv['pw']+' -C S:'+fv['rp']+' -T "m9z#$dO0qe34Rxe@sMYxx%%" -y "playpath" -o "'+fv['pid']+'_'+Number(new Date()/1000).toFixed(0)+'.flv"');

Into the firefox javascript console. This works it's just a pity that if you use it from the bookmark bar cancelling the popup takes you away from the broadcaster.
Reply With Quote
  #347  
Old 03-31-2014, 02:18 AM
Bidul76 Bidul76 is offline
Junior Member
 
Join Date: Mar 2014
Posts: 2
Bidul76 is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


thanks a lot !!!
Reply With Quote
  #348  
Old 04-10-2014, 04:43 PM
zugg zugg is offline
Junior Member
 
Join Date: Mar 2014
Posts: 10
zugg is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


So I'm using the latest checkout for rtmpdump from git, and compiled it using make across two different distros (Arch & Ubuntu 13.10), and both return me this lovely error message, which I can't seem to find much about:

Code:
Connecting ...
INFO: Connected...
ERROR: Closing connection: NetStream.Play.Failed
edit 1:
Oh butts, it works fine when I tried it on a windows VM (with KSV's rtmpdump.exe), so it's something with my systems that is causing an issue, or something finnicky going on...

Last edited by zugg : 04-10-2014 at 05:17 PM.
Reply With Quote
  #349  
Old 04-10-2014, 09:59 PM
Arukarudo Arukarudo is offline
Junior Member
 
Join Date: Feb 2014
Posts: 4
Arukarudo is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


I didn't tried, but from I know you can't just compile the git version of rtmpdump.. you have to patch the git version, with the KSV's patch and then compile

Try that:
http://stream-recorder.com/forum/cus...le-t16103.html
Reply With Quote
  #350  
Old 04-11-2014, 06:29 PM
zugg zugg is offline
Junior Member
 
Join Date: Mar 2014
Posts: 10
zugg is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by Arukarudo View Post
I didn't tried, but from I know you can't just compile the git version of rtmpdump.. you have to patch the git version, with the KSV's patch and then compile

Try that:
http://stream-recorder.com/forum/cus...le-t16103.html
Yeah that's what I was doing, it runs fine on a VM, just not my host OS's, NFI why :P.
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 12:48 AM.


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