Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#51
|
|||
|
|||
Re: chaturbate.com: SecureToken problemsSorry, ignore previous post, as usual my stupidity was to blame.
|
#52
|
|||
|
|||
Re: chaturbate.com: SecureToken problemshi. I'm new. Sorry for my ignorance, I don't really understand where I find my password hash. Could you please explain me how to find it?
|
#53
|
|||
|
|||
Re: chaturbate.com: SecureToken problemsGoto a chaturbate room in your browser and then goto the tools menu (or whatever it is in whichever browser you use) and "view source". Search that for "password" and you will see it, something like
Code:
password: 'pbkdf2_sha256$10000$B7osw0jRC3Qb$ etc etc etc kSMBOHwjzZk\u003D', |
#54
|
|||
|
|||
Re: chaturbate.com: SecureToken problemsthank you very much callten Now I find out why I couldn't find password ash... I wasn't in a room... thank you again
|
#55
|
|||
|
|||
Re: chaturbate.com: SecureToken problemsQuote:
BUT... the script i found used a (for me) complex definition of the output file name to prevent overwriting. That is because the "batch" file (Windows) starts the rtmpdump.exe just again and again after hitting a key. So if the "model" just had a little break or the connection is lost, you can go on without starting the batch file again (and entering the model name). But i don't really have a clue how the commands for the variable filename work. And this "-o" definition doesn't work anymore with the new needed parameters (password hash). If this "-o" line is submitted, the error is just you described: "You must specify a playpath (--playpath) or url (-r "rtmp://host[ort]/playpath") containing a playpath" If I replace that with a fixed filename like test.flv it works fine. So... HELP! Just like i said, I'm a beginner. So if it has nothing to do with rtmpdump, please don't hit me. But I would appreciate any help I can get from all the experts here. Because i find this method very useful. So... here are the (shorten) lines that work and don't work. Work (fixed filename after "-o"): 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%/" -C S:**** -C S:%username% -C S:2.607 -C S:**** -T "m9z#$dO0qe34Rxe@sMYxx%" --live -y "anything_here" -o "chaturbate\test.flv" 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%/" -C S:**** -C S:%username% -C S:2.607 -C S:**** -T "m9z#$dO0qe34Rxe@sMYxx%" --live -y "anything_here" -o "chaturbate\%username%-%date:~-4,4%%date:~-7,2%%date:~-10,2%%time:~-11,2%%time:~-8,2%%time:~-5,2%.flv" Can anybody help me? Hope my English is not to bad so everybody understand this. If something is not clear or you need more/different information please ask! |
#56
|
|||
|
|||
Re: chaturbate.com: SecureToken problemsIt works fine for me when I put the various parameters in the following order...
Code:
rtmpdump -r -a -f -W -p -y -o -C S:username -C S: broadcaster_name -C S:2.607 -C S:password -v -T |
#57
|
|||
|
|||
Re: chaturbate.com: SecureToken problemsHello, 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 |
#58
|
|||
|
|||
Re: chaturbate.com: SecureToken problemsQuote:
Damn... so it was "only" the right order of the parameters. Just a little bit picky that fine and very useful tool is. *lol* Next time (don't hope there will be one) i will test that too. I even create the filename now outside of the -o parameter just like you said, or most of it (time and date variables, then combine it with the username variable in the -o parameter line). But that wouldn't help with the old order of parameters because it failed at that moment any variable was given in it's line. So... thank you very much again! |
#59
|
|||
|
|||
Re: chaturbate.com: SecureToken problemsQuote:
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" ... Hope it will work for you. Wish you luck! |
#60
|
|||
|
|||
Re: chaturbate.com: SecureToken problemscallten, what were you doing that made you receive the NetStream.Play.Failed error message? Obviously, my stupidity is doing the same thing.
|
Tags: chaturbate, securetoken |
Thread Tools | |
Display Modes | |
|
|