View Single Post
  #59  
Old 06-02-2012, 10:55 AM
non90 non90 is offline
Member
 
Join Date: Jun 2012
Location: Germany
Posts: 44
non90 is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Quote:
Originally Posted by RDLS View Post
Hello, I was directed to this thread by a friend trying to help me fix my code. I've been following along to the best of my ability but I seem to be doing something wrong because I keep on getting the "Model status is error" message. I've gone over the code several times and I was wondering if anyone could tell me what I'm doing wrong.
This is what I have so far:
Code:
rtmpdump -r "rtmpe://edge1-a.stream.highwebmedia.com/live-edge" -a "live-edge" -f "WIN 11,1,102,63" -W "http://chaturbate.com/static/flash/CBV_2p607.swf" -p "http://chaturbate.com/%username%/" -y "mp4:public-%username%" -o "chaturbate\%username%-%date:~-4,4%%date:~-7,2%%date:~-10,2%%time:~-11,2%%time:~-8,2%%time:~-5,2%.flv" -C S:Username -C S:%username% -C S:2.607 -C S:password-v -T "m9z#$dO0qe34Rxe@sMYxx%"

pause
Going off of a previous post I got my password from Chaturbate and put "^" in front of all the $ symbols as well as changing \u003D to "=" so I don't think that's what's causing it to not work. If anyone could give me some advice that would be greatly appreciated.
Hi! I don't have a concrete suspicion what is wrong in your command line but for 2 things that are different from my working one:

1. There is no space between the "password" and the "-v" parameter but I guess it will be in your original one with your password hash. Or?

2. I don't use -y "mp4ublic-%username%" anymore but this: -y "anything_here". But if i get it right it should not matter.

So here the errors of my trying out to get it going, perhaps it will help you also:

- It seems not to work to just write the ^ before the $. Not until I used notepad and the find/replace function there. So I copied the password line out of the source code to notepad, use find/replace to replaced $ with ^$ (both really typed in the dialog box of notepad's find/replace) and do the "=" thing the same way. Then I copied the resulting line to my batch-file.

- And maybe copy your username out of the source code also. An upper case character where it don't belong can make a lot of trouble. The website login doesn't care, the rtmpdump command line does. *lol*

And I don't use the complex filename function anymore. Didn't even test it if it will do in the new order of parameters, but if I get it right, member callten did so. I now use this instead:

Code:
@ECHO OFF
FOR /F "tokens=1,2,3,4,5 delims=/. " %%a in ('date/T') do set _date=%%c-%%b-%%d%%a
FOR /F "tokens=1,2,3,4,5 delims=/: " %%a in ('time/T') do set _time=%%a.%%b.%%c%time:~6,2%
rtmpdump -r ... ... -y "anything_here" -o "chaturbate\%username%_%_date%_%_time%.flv" ...
Beware that I have shorten the rtmpdump command line! And I just found the "FOR" commands on the web, so don't ask my how it works. But it does. *lol* Dumped files then named like this: username_2012-06-02_17.40.05.flv.

Hope it will work for you. Wish you luck!
Reply With Quote