Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   rtmpdump (http://stream-recorder.com/forum/forumdisplay.php?f=54)
-   -  

chaturbate.com: SecureToken problems

(http://stream-recorder.com/forum/showthread.php?t=10869)

malky 03-20-2014 12:04 PM

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.

yetanotherday 03-21-2014 01:25 AM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by malky (Post 66499)
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 :p

yetanotherday 03-21-2014 05:55 AM

Re: chaturbate.com: SecureToken problems


 
finally solved !
http://stream-recorder.com/forum/rtm...e-t4229p4.html
:o
:eek:
this shit took me 2 years
:o
:eek:

stream23leech 03-23-2014 08:54 PM

Re: chaturbate.com: SecureToken problems


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

Quote:

Originally Posted by marktr (Post 46927)
@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!


Bidul76 03-28-2014 08:15 AM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by Arukarudo (Post 64738)
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

:confused:

thanks

malky 03-28-2014 10:53 PM

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.

Bidul76 03-31-2014 01:18 AM

Re: chaturbate.com: SecureToken problems


 
thanks a lot !!!

zugg 04-10-2014 03:43 PM

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...

Arukarudo 04-10-2014 08:59 PM

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

zugg 04-11-2014 05:29 PM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by Arukarudo (Post 66964)
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.


All times are GMT -6. The time now is 07:02 PM.