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)

rtmpdumper1 05-24-2013 09:12 PM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by oelk (Post 62101)
My old script is working with one little modification:
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']+' -y "playpath" -o "'+fv['pid']+'_'+Number(new Date()/1000).toFixed(0)+'.flv"');
It reads all parameters from the active site. Most of them aren't really needed.

A stripped down call could look like this:
Code:

rtmpdump -v -r "rtmp://edge13-b.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/PERFORMERNAME" -C S:AnonymousUser -C S:PERFORMERNAME -C S:2.634 -C S:anonymous -y "playpath" -o "file.flv"
but I'm not sure, if the same server can be used for every performer every day.

Those who need to record many streams should replace AnonymousUser & anonymous by CB_USERNAME & PW_HASH as described above (or use the proposed script). (You'll get NetStream.Play.Failed otherwise)


Hello

I'm using this code for anonymous single streams just fine, but when I add my username and password hash to record multiple streams I get "Model status is error".

Really can't figure out what the problem is here. I put a ^ in front of all the $'s and replaced the \u003D with an =. My password hash has forward slashes in it, not sure that would be an issue though (I noticed the example above didn't have any).

I am on a Mac using Terminal. Using rtmpdump 2.4 KSV patch

marktr 05-27-2013 07:00 PM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by rtmpdumper1 (Post 62389)
Hello

I put a ^ in front of all the $'s and replaced the \u003D with an =.

I am on a Mac using Terminal. Using rtmpdump 2.4 KSV patch

Did you try \$ instead?

rtmpdumper1 05-27-2013 08:19 PM

Re: chaturbate.com: SecureToken problems


 
Ah, that was it. Figured it was simple.

Thanks for the tip mark!

phgonline 06-17-2013 09:56 AM

Re: chaturbate.com: SecureToken problems


 
Anyone know a script to cap password shows when I have the password to the room? Been using tubedigger but it's limited, thanks!

non90 06-17-2013 10:05 AM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by phgonline (Post 62562)
Anyone know a script to cap password shows when I have the password to the room? Been using tubedigger but it's limited, thanks!

You can use plain rtmpdump in a command line for it. You just need to find out the Hash of the password (that you know). You will find it also (like the hash to your own password) in the html-code once you inside the room. Add it as the 5th "-C S:" parameter to the command line.

Code:

-C S:your_username
-C S:model_name
-C S:player_version
-C S:your_password_hash
-C S:room_password_hash

Of course you have to grab it manually. As far as I understand it, the javascript that is given a few posts above also do the trick.

yetanotherday 06-25-2013 08:57 PM

Re: chaturbate.com: SecureToken problems


 
does the site is going to support html5 ? i see some changes .

someone please give me a java bookmarklet to download the feed in mp4 format !

skyDude14 07-03-2013 12:18 AM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by oelk (Post 62101)
My old script is working with one little modification:
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']+' -y "playpath" -o "'+fv['pid']+'_'+Number(new Date()/1000).toFixed(0)+'.flv"');
It reads all parameters from the active site. Most of them aren't really needed.

A stripped down call could look like this:
Code:

rtmpdump -v -r "rtmp://edge13-b.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/PERFORMERNAME" -C S:AnonymousUser -C S:PERFORMERNAME -C S:2.634 -C S:anonymous -y "playpath" -o "file.flv"
but I'm not sure, if the same server can be used for every performer every day.

Those who need to record many streams should replace AnonymousUser & anonymous by CB_USERNAME & PW_HASH as described above (or use the proposed script). (You'll get NetStream.Play.Failed otherwise)


The token isn't needed anymore, because they changed from rtmpe to rtmp. No need to worry about it fo now.

oelk can you tell me how to run your javascript?furthermore , how to construct the full rtmp url with all its parameters ?(not the one for command prompt)

Mestameh 07-26-2013 03:03 AM

Re: chaturbate.com: SecureToken problems


 
Hi,

Thank everybody who is posting in this thread, it helped me a lot and therefore I want to give a little something back.

I wrote a Batch script for Windows that you can use to instantly record any room either using your password and roomname or just the room name.

In windows, open a textfile (e.g. by opening the editor), copy the code below into the textfile, change the username in line 4 (ENTERYOURUSERNAME) to your username and save as "record.bat" in your rtmpdump folder.

Code:

@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION

set username=ENTERYOURUSERNAME
set password=%1
Set channel=%2
Set password=%password:\u003D=^=%
Set password=%password:$=^^$%


set now=%date:~6,4%%date:~3,2%%date:~0,2%
For /f "tokens=1-2 delims=/:" %%a in ('time /t') do (set mytime=%%a%%b)
SET mydate=%now%_%mytime%
echo ######################################################
echo ############  R E C O R D I N G #####################
echo      %channel%
echo ######################################################
IF NOT ["%password%"] == ["none"] (
        rtmpdump -v -r "rtmp://edge13-b.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/%channel%" -C S:%username% -C S:%channel% -C S:2.634 -C S:%password% -y "playpath" -o "%mydate%_%channel%.flv"
)
rtmpdump -v -r "rtmp://edge13-b.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/%channel%" -C S:AnonymousUser -C S:%channel% -C S:2.634 -C S:anonymous -y "playpath" -o "%mydate%_%channel%.flv"
ENDLOCAL

If you want to record a stream, do the following.

Open a terminal window (HowTo).

Go to your rtmpdump folder using the cd command.

use your newly created record Batchfile by typing:

record $yourpassword $channelname

example:

record pbkdf2_iklnewrkwe$jlkjlkjklj$kjlkasepoöiase/003D rockchannel

This command will do the following:

It will record the channel "rockchannel" using your username and password, naming the file after date and time when you started the stream and at the end naming it like the channel. Like that you can start recordings over and over without having to change the file name everytime.

Because using your password, you will be able to record several streams at once. How to get your password has been described earlier in this thread. If you want to run several recordings parallely, you will need to open several terminal windows at the same time.

If you want to record a stream without logging in (you will only be able to record one stream at once), type:

record none $channelname

example:

record none rockchannel

To stop the recording, just hit: Ctrl + C, it will ask you if you want to abort the batchscript and just confirm with Y.

Voila... after that you will find the recorded file in your rtmpdump folder.

mimi25 08-05-2013 04:43 AM

Re: chaturbate.com: SecureToken problems


 
KSV and Mestameh....you are both real gentlemen! Modded rtmpdump work perfectly and batch file is insanely simple to use.

Thank you both for your time and effort to make this work. And it works like a charm!

mimi25 08-05-2013 07:19 AM

Re: chaturbate.com: SecureToken problems


 
One small problem though. Whenever I record multiple rooms, I see several .flv files getting bigger as time passes. Cool, I have plenty of space. When a model has a connect problem (disconnect/reconnect), rtmpdump stops....and erases the file. Now that's strange. The file is there, big and juicy, and 1sec later, file's still here but 0k.

Any chance having that solved?

Thanks in advance.

Cbater 08-06-2013 11:38 AM

Re: chaturbate.com: SecureToken problems


 
Please KSV work on the Chaturbate 0 kb Problem! Over a half year is this problem now public.

Thx guys.

mimi25 08-07-2013 12:03 AM

Re: chaturbate.com: SecureToken problems


 
Oh...so this is a known "bug" (problem anyway). I managed to solve that by using RTMPDumpHelper. No more 0k files. BUT, since while solving a problem creates another one, RTMPDH makes my adobe flash plugin crash....then stops the whole process. But file is there.

Thanks guys for squeezing brain juice :)

got420 09-09-2013 01:19 PM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by Mestameh (Post 62987)
Hi,

Thank everybody who is posting in this thread, it helped me a lot and therefore I want to give a little something back.

I wrote a Batch script for Windows that you can use to instantly record any room either using your password and roomname or just the room name.

example:

record none rockchannel

To stop the recording, just hit: Ctrl + C, it will ask you if you want to abort the batchscript and just confirm with Y.

Voila... after that you will find the recorded file in your rtmpdump folder.

Hi, I like this bat file but I can't get it to work. Did the rtmp stream server name change perhaps? also, is there a way to hard code the password so I don't have to grab it every time and can just do
record.bat roomname ?

stream01 11-18-2013 02:33 AM

Re: chaturbate.com: SecureToken problems


 
Any news on how to rec group/private shows?

ilovestreamz1990 11-29-2013 10:52 PM

Re: chaturbate.com: SecureToken problems


 
if i know the password of the locked room..how can i recored it with rtmpdump? any code?

diablo888 12-03-2013 04:56 PM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by Cbater (Post 63092)
Please KSV work on the Chaturbate 0 kb Problem! Over a half year is this problem now public.

Thx guys.

i have the same problem and its so depressing. its because rtmpdump tries to resume the same file, and since/if the model is offline, it overwrites the file and it becomes 0kb. :mad:
havent found a fix or workaround yet, (rtmpdh works, but i dont wanna use it, but a script)


guys if youre using Mestameh .bat file make sure to delete the line
Code:

rtmpdump -v -r "rtmp://edge13-b.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/%channel%" -C S:AnonymousUser -C S:%channel% -C S:2.634 -C S:anonymous -y "playpath" -o "%mydate%_%channel%.flv"
from the bat file. As far as I know anonymous streamrecording hasnt worked in months...

otherwise this line will cause to "retry" to download the stream AFTER downloading it via ur login credentials instead of ALTERNATIVELY...

i lost such a nice cap to this :mad:

jonaruto 12-05-2013 04:44 AM

Re: chaturbate.com: SecureToken problems


 
My script worked 2 days ago, now I get status "error":

Code:

RTMPDump v2.4 GIT-2012-12-30 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
DEBUG: Parsing...
DEBUG: Parsed protocol: 0
DEBUG: Parsed host    : edge.stream.highwebmedia.com
DEBUG: Parsed app    : live-edge
WARNING: You haven't specified an output file (-o filename), using stdout
DEBUG: Protocol : RTMP
DEBUG: Hostname : edge.stream.highwebmedia.com
DEBUG: Port    : 1935
DEBUG: Playpath : 0
DEBUG: tcUrl    : rtmp://edge.stream.highwebmedia.com:1935/live-edge
DEBUG: pageUrl  : http://chaturbate.com/sexyladies
DEBUG: app      : live-edge
DEBUG: StopTime      : 100 msec
DEBUG: live    : no
DEBUG: timeout  : 30 sec
DEBUG: Setting buffer time to: 36000000ms
Connecting ...
DEBUG: RTMP_Connect1, ... connected, handshaking
DEBUG: HandShake: Type Answer  : 03
DEBUG: HandShake: Server Uptime : 96850052
DEBUG: HandShake: FMS Version  : 3.0.1.1
DEBUG: HandShake: Handshaking finished....
DEBUG: RTMP_Connect1, handshaked
DEBUG: Invoking connect
INFO: Connected...
DEBUG: HandleServerBW: server BW = 2500000
DEBUG: HandleClientBW: client BW = 2500000 2
DEBUG: HandleCtrl, received ctrl, type: 0, len: 6
DEBUG: HandleCtrl, Stream Begin 0
DEBUG: HandleChangeChunkSize, received: chunk size change to 4096
DEBUG: RTMP_ClientPacket, flex message, size 20 bytes, not fully supported
DEBUG: (object begin)
DEBUG: Property: <Name:            no-name, STRING:        osm>
DEBUG: Property: <Name:            no-name, NUMBER:        0.00>
DEBUG: Property: NULL
DEBUG: Property: <Name:            no-name, STRING:        >
DEBUG: (object end)
DEBUG: HandleInvoke, server invoking <osm>
DEBUG: RTMP_ClientPacket, received: invoke 261 bytes
DEBUG: (object begin)
DEBUG: Property: <Name:            no-name, STRING:        _result>
DEBUG: Property: <Name:            no-name, NUMBER:        1.00>
DEBUG: Property: <Name:            no-name, OBJECT>
DEBUG: (object begin)
DEBUG: Property: <Name:            fmsVer, STRING:        FMS/3,5,7,7009>
DEBUG: Property: <Name:      capabilities, NUMBER:        31.00>
DEBUG: Property: <Name:              mode, NUMBER:        1.00>
DEBUG: (object end)
DEBUG: Property: <Name:            no-name, OBJECT>
DEBUG: (object begin)
DEBUG: Property: <Name:              level, STRING:        status>
DEBUG: Property: <Name:              code, STRING:        NetConnection.Connect.Success>
DEBUG: Property: <Name:        description, STRING:        Connection succeeded.>
DEBUG: Property: <Name:              data, ECMA_ARRAY>
DEBUG: (object begin)
DEBUG: Property: <Name:            version, STRING:        3,5,7,7009>
DEBUG: (object end)
DEBUG: Property: <Name:          clientid, NUMBER:        1608078548.00>
DEBUG: Property: <Name:    objectEncoding, NUMBER:        3.00>
DEBUG: (object end)
DEBUG: (object end)
DEBUG: HandleInvoke, server invoking <_result>
DEBUG: HandleInvoke, received result for method call <connect>
DEBUG: sending ctrl, type: 0x0003
DEBUG: Invoking CheckPublicStatus
DEBUG: RTMP_ClientPacket, flex message, size 37 bytes, not fully supported
DEBUG: (object begin)
DEBUG: Property: <Name:            no-name, STRING:        cps>
DEBUG: Property: <Name:            no-name, NUMBER:        0.00>
DEBUG: Property: NULL
DEBUG: Property: <Name:            no-name, BOOLEAN:        FALSE>
DEBUG: Property: <Name:            no-name, STRING:        error>
DEBUG: Property: <Name:            no-name, STRING:        1000>
DEBUG: Property: <Name:            no-name, STRING:        >
DEBUG: (object end)
DEBUG: HandleInvoke, server invoking <cps>
INFO: Model status is error
DEBUG: Closing connection.


malky 12-05-2013 11:00 AM

Re: chaturbate.com: SecureToken problems


 
No problems recording cb here.

Leifman 12-05-2013 03:47 PM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by malky (Post 64034)
No problems recording cb here.

very odd.. it seems like my batch that worked for a year+ and many others died and gives model: error... cb definitely changed sometimes
what sort of batch are u using?

non90 12-07-2013 12:06 PM

Re: chaturbate.com: SecureToken problems


 
Had the same problem. For me it was a new password hash that got me the model error (and I did NOT changed my password!). So after I insert new passwort hash (keep in mind how to prepare/edit it correctly) into command line, it worked again.

fireball 01-30-2014 08:59 AM

Re: chaturbate.com: SecureToken problems


 
Any of you mac users know a step by step way of getting the ksv rtmpdump working ?? From downloading, patching and installing please.

I keep having issues with out of date guides, commands and links.

DDMW 02-04-2014 09:49 AM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by Mestameh (Post 62987)
Code:

@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION

set username=ENTERYOURUSERNAME
set password=%1
Set channel=%2
Set password=%password:\u003D=^=%
Set password=%password:$=^^$%


set now=%date:~6,4%%date:~3,2%%date:~0,2%
For /f "tokens=1-2 delims=/:" %%a in ('time /t') do (set mytime=%%a%%b)
SET mydate=%now%_%mytime%
echo ######################################################
echo ############  R E C O R D I N G #####################
echo      %channel%
echo ######################################################
IF NOT ["%password%"] == ["none"] (
        rtmpdump -v -r "rtmp://edge13-b.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/%channel%" -C S:%username% -C S:%channel% -C S:2.634 -C S:%password% -y "playpath" -o "%mydate%_%channel%.flv"
)
rtmpdump -v -r "rtmp://edge13-b.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/%channel%" -C S:AnonymousUser -C S:%channel% -C S:2.634 -C S:anonymous -y "playpath" -o "%mydate%_%channel%.flv"
ENDLOCAL

record none $channelname
example:
record none rockchannel

That worked perfect over weeks!
Now I get

K:\rtmpd>record none MODELNAME
################################################## ####
############ R E C O R D I N G #####################
MODELNAME
################################################## ####
RTMPDump v2.4 GIT-2012-11-09 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
INFO: Model status is error

Thanks :/

edit//
Used the method with my own hashpassword like
record HASHPASSWORD Modelname and it worked then again lol ...

Is it possible to record more then one show at the moment?

Dahoam 02-04-2014 05:39 PM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by DDMW (Post 64545)
That worked perfect over weeks!
Now I get

K:\rtmpd>record none MODELNAME
################################################## ####
############ R E C O R D I N G #####################
MODELNAME
################################################## ####
RTMPDump v2.4 GIT-2012-11-09 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
INFO: Model status is error

Thanks :/

edit//
Used the method with my own hashpassword like
record HASHPASSWORD Modelname and it worked then again lol ...

Is it possible to record more then one show at the moment?

I get the error too when the cam is offline but it's still recording once it's online no matter if using anonymous or username + pw hash. Don't know what they've changed though.

You can still record multiple cams if you use your username and the according pw hash.

Edit: Seemed to be a temporary thing, they had some major server issues and down time of the last few days.

DDMW 02-05-2014 07:12 AM

Re: chaturbate.com: SecureToken problems


 
Have no Sound on the recorded files.
Is it normal?

phgonline 02-05-2014 09:55 AM

Re: chaturbate.com: SecureToken problems


 
Been trying to cap PW shows, I have the pw but when I enter the room and get the 2nd hash and add it after the original I still get netstream.play.fail do I have to enter the actual pw somewhere?

Code:

-C S:username -C S:modelname -C S:2.644 -C S:userhash -C S:pwroomhash -T "key" --live

malky 02-06-2014 06:36 PM

Re: chaturbate.com: SecureToken problems


 
cb uses the speex audio codec which few players play hence no sound. You can convert the audio part of the file to mp3 using open source program, TEncoder video converter.

miles_gloriosus 02-10-2014 08:45 PM

Re: chaturbate.com: SecureToken problems


 
What version of rtmpdump 2.4 was KSV's build (from Nov 9, 2012) patched against? I'm seeing 2 failed hunks when patching against 2.4 pulled from git.

Code:

$ patch --dry-run -p 0 < ../../rtmpdump-2.4-ksv/Patch.diff
patching file Makefile
patching file librtmp/Makefile
Hunk #1 succeeded at 26 with fuzz 2 (offset 1 line).
patching file librtmp/amf.c
patching file librtmp/handshake.h
patching file librtmp/hashswf.c
patching file librtmp/log.c
patching file librtmp/parseurl.c
patching file librtmp/rtmp.c
Hunk #21 succeeded at 2975 (offset 11 lines).
Hunk #23 succeeded at 3015 (offset 11 lines).
Hunk #25 succeeded at 3245 (offset 11 lines).
Hunk #27 succeeded at 3277 (offset 11 lines).
Hunk #29 succeeded at 3392 (offset 11 lines).
Hunk #31 succeeded at 3513 (offset 11 lines).
Hunk #32 FAILED at 3688.
Hunk #33 succeeded at 3763 (offset -3 lines).
Hunk #34 succeeded at 3886 (offset 11 lines).
Hunk #35 succeeded at 4178 (offset -3 lines).
Hunk #36 succeeded at 4654 (offset 11 lines).
Hunk #37 succeeded at 4660 (offset -3 lines).
Hunk #38 succeeded at 4815 (offset 11 lines).
Hunk #39 succeeded at 4823 (offset -3 lines).
Hunk #40 succeeded at 4861 (offset 11 lines).
Hunk #41 succeeded at 4880 (offset -3 lines).
Hunk #42 FAILED at 5417.
Hunk #43 succeeded at 5598 (offset 13 lines).
2 out of 43 hunks FAILED -- saving rejects to file librtmp/rtmp.c.rej
patching file librtmp/rtmp.h
patching file librtmp/rtmp_sys.h
patching file rtmpdump.c
patching file rtmpgw.c
patching file rtmpsrv.c
patching file rtmpsuck.c
$

At any rate, has anybody successfully recorded streams from the latest CB (2.644)?

malky 02-10-2014 10:08 PM

Re: chaturbate.com: SecureToken problems


 
The simple answer to your question is yes. I have had no problems recording 2.644.

miles_gloriosus 02-11-2014 07:55 AM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by malky (Post 64656)
The simple answer to your question is yes. I have had no problems recording 2.644.

What do you use to record?

malky 02-11-2014 01:19 PM

Re: chaturbate.com: SecureToken problems


 
I use KSVs version of Rtmpdump downloaded from github dated 30.12.2012, and the Javascript script downloaded from this forum all thanks to the both authors.

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"');

I created a bookmark by pressing ctrl-D, any page will do, edited the bookmark to rename it, chaturbate download, and pasted the above JS in the url part. To use it I open a cmd window to rtmpdump, and click on the bookmark when on a broadcasters page. I then copy the highlighted text from the popup window and paste in the cmd window and press return. Job done.

Don't forget to cancel the popup window.

basa666 02-11-2014 04:39 PM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by malky (Post 64661)
I use KSVs version of Rtmpdump downloaded from github dated 30.12.2012, and the Javascript script downloaded from this forum all thanks to the both authors.
cut

i tried this but in result i have 0 byte files but i have different date version, i cant find in github 20121230 version compiled for windows , anyone have link for this? or send me pm

thanks

malky 02-11-2014 07:04 PM

Re: chaturbate.com: SecureToken problems


 
I just typed ksv rtmpdump into google and the second result was for KSVs script page?

https://github.com/K-S-V/Scripts/downloads

malky 02-11-2014 07:49 PM

Re: chaturbate.com: SecureToken problems


 
My bad. When you get what you want you tend to loose interest in the complicated stuff that other people have generously solved for you.:(
I've PM'd you.

malky 02-12-2014 10:37 AM

Re: chaturbate.com: SecureToken problems


 
Just to clarify the KSV updated version of RTMPdump that works with chaturbate can be found here:

https://github.com/K-S-V/Scripts/releases :)

miles_gloriosus 02-12-2014 10:49 AM

Re: chaturbate.com: SecureToken problems


 
Quote:

Originally Posted by malky (Post 64679)
Just to clarify the KSV updated version of RTMPdump that works with chaturbate can be found here:

https://github.com/K-S-V/Scripts/releases :)

Thanks malky. It's weird because i found a KSV rtmpdump build from github but it's different from this one. It didn't work. I'm going to try this out.

miles_gloriosus 02-12-2014 11:03 AM

Re: chaturbate.com: SecureToken problems


 
No worky, malky. I get the "model status is error" error.

basa666 02-12-2014 04:38 PM

Re: chaturbate.com: SecureToken problems


 
like im say in pm , for me new ksv,s build also give like miles say "model status error" then looks new build dont work or something wrong in java script :/

malky 02-12-2014 09:24 PM

Re: chaturbate.com: SecureToken problems


 
Strange. I just tried recording with the 30.12.2012 rtmpdump and the version i just downloaded from KSV releases and both worked with no problems? I'm using chrome by the way.

C:\Users\Malky\rtmpdump-2.4>rtmpdump -v -r "rtmp://edge21-b.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/*******" -C S:malky -C S:******* -C S:2.644 -C S:pbkdf2_sha256$12000$Cml4dozmu64A$bC
s47aQOx/Tx7WIZkdyTJMpgkWcfdXX/ZG8oONigPr4= -C S:53ac0c886fe839b4e1ea2b3852fc6796
13d32d97aa1dbd60f228fced06e1cc95 -T "m9z#$dO0qe34Rxe@sMYxx%%" -y "playpath" -o "
*******_1392264929.flv"
RTMPDump v2.4 GIT-2013-12-05 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
1357.960 kB / 21.96 sec

Unless the change is slowly being introduced I can't think of any else.

basa666 02-13-2014 02:08 AM

Re: chaturbate.com: SecureToken problems


 
thanks malky for paste your command line , im compared this and solved the problem , need only changes after third S:

miles_gloriosus 02-13-2014 06:43 AM

Re: chaturbate.com: SecureToken problems


 
Malky or anybody else, would you happen to know against what version of rtmpdump does KSV's patch apply cleanly against? I'm trying to build for linux.


All times are GMT -6. The time now is 01:12 PM.