Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (Adult streaming videos) (http://stream-recorder.com/forum/forumdisplay.php?f=40)
-   -  

www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos

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

Bebbe 01-30-2016 03:43 AM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
Hi!
I´m a paying customer on CB and love the site. Now I´d like to be able to save shows I join. So my questions are two -

A - What is the best way to save shows in passworded rooms where I have the password?

B - What is the best way of saving privateshows that I am logged in to?

Greatful for tips and trixs on this!

Thanx!

CristianoA 01-30-2016 12:12 PM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
Quote:

Originally Posted by Bebbe (Post 82446)
Hi!
I´m a paying customer on CB and love the site. Now I´d like to be able to save shows I join. So my questions are two -

A - What is the best way to save shows in passworded rooms where I have the password?

B - What is the best way of saving privateshows that I am logged in to?

Greatful for tips and trixs on this!

Thanx!

use TubeDigger

urbateMast 02-03-2016 05:05 AM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
MPV can play links like https://chaturbate.com/sexybeth1248/
YouTube-DL can download them.

the_marty_party 02-05-2016 07:24 AM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
I have used tubedigger but the sound isn't with the video. Am I doing something wrong?

Any other suggestions?

TubeDigger 02-05-2016 11:45 AM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
Quote:

Originally Posted by the_marty_party (Post 82527)
I have used tubedigger but the sound isn't with the video. Am I doing something wrong?

It is because of Speex audio codec. Latest VLC or MPC-HC can play it.

backgreem 02-12-2016 07:17 AM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
Quote:

Originally Posted by ZeChico (Post 82408)
I changed the batch from using a static server to a random one, this should prevent errors when servers are full.

Once again, this is to be put on a bat file and will automatically record a specific model, loops each 30+ seconds (configurable), rtmpdump must be on the same folder, and the name of the bat must be the model name (ex model.bat), the save directory "savedir" should also be configured.

This is the new batch:
Code:

@ECHO OFF
SET savedir=C:\CBsaves
SET model=%~n0
SET /A looptime= 30 * 1000

:loop
SET hour=%time:~0,2%
IF "%hour:~0,1%" == " " SET hour=0%hour:~1,1%
SET min=%time:~3,2%
IF "%min:~0,1%" == " " SET min=0%min:~1,1%
SET secs=%time:~6,2%
IF "%secs:~0,1%" == " " SET secs=0%secs:~1,1%

SET year=%date:~-4%
SET month=%date:~3,2%
IF "%month:~0,1%" == " " SET month=0%month:~1,1%
SET day=%date:~0,2%
IF "%day:~0,1%" == " " SET day=0%day:~1,1%

SET _my_datetime=%year%-%month%-%day%_%hour%-%min%-%secs%
ECHO -------- %_my_datetime% --------
ECHO Model: %model%
ECHO.

SET file=%savedir%\%model%_%_my_datetime%.flv
call :rtmp

CALL :setsize %file%
IF %size%==0 DEL %file%

ping 192.0.2.2 -n 1 -w %looptime% > nul

GOTO loop

:rtmp

SET /A ser1=%random% %%50 + 5
SET /A ser2=%random% %%13 + 2
SET /A ser3=%random% %%2 + 1
IF %ser3% EQU 1 (SET ser3=a) ELSE (SET ser3=b)

ECHO Using RTMPdump with:
ECHO "rtmp://edge%ser1%-%ser3%.stream.highwebmedia.com/live-edge"
ECHO "mp4:rtmp://origin%ser2%.stream.highwebmedia.com/live-origin/%model%"
ECHO:
rtmpdump -r "rtmp://edge%ser1%-%ser3%.stream.highwebmedia.com/live-edge" -a "live-edge" -f "WIN 20,0,0,267" -W "https://chaturbate.com/static/flash/CBV_2p647.swf" -p "https://chaturbate.com/%model%/" -C S:AnonymousUser -C S:%model% -C S:2.646 -C S:anonymous -C S:8f034c5320f2d277c18d2c60da29eb8d2201d933ad843e38d87df9dc3ff26150 --live -y "mp4:rtmp://origin%ser2%.stream.highwebmedia.com/live-origin/%model%" -o "%file%"

GOTO :eof

:setsize
SET size=%~z1
GOTO :eof

Regards.

Hello,

When try to run the bat always get this error:
ERROR:Closing connection: NetStream.Play.Failed

Anyone have the same problem, how to resolve?

Best Regards.

ZeChico 02-13-2016 03:45 AM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
That can happen if the server is busy, thats why there is a random number to chose servers, wait 30+ seconds and it will use other server for connection.

I'm also using the latest rtmpdump from KSV:
http://stream-recorder.com/forum/cus...le-t16103.html

EDIT: But if you said that you always get that error, then I'm not sure what can be (firewall problems?).

backgreem 02-19-2016 03:57 AM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
Quote:

Originally Posted by ZeChico (Post 82608)
That can happen if the server is busy, thats why there is a random number to chose servers, wait 30+ seconds and it will use other server for connection.

I'm also using the latest rtmpdump from KSV:
http://stream-recorder.com/forum/cus...le-t16103.html

EDIT: But if you said that you always get that error, then I'm not sure what can be (firewall problems?).

Hello,

Using the rtmpdump from KSV it's working :)

Thanks ZeChico

ZeChico 02-23-2016 07:06 AM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
Quote:

Originally Posted by backgreem (Post 82675)
Hello,

Using the rtmpdump from KSV it's working :)

Thanks ZeChico

You're welcome.

For a small upgrade for my previous script, a title can be added so it will be easier to identify each prompt window.
The beginning of the script should have the "TITLE" line added, like this:

Code:

@ECHO OFF
TITLE Chaturbate - %~n0
SET savedir=C:\Files
SET model=%~n0
SET /A looptime= 30 * 1000

Or just:
Code:

@ECHO OFF
TITLE %~n0
SET savedir=C:\Files
SET model=%~n0
SET /A looptime= 30 * 1000


phgonline 02-28-2016 01:26 PM

Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos


 
I was able to record models that blocked my state with an old bat script but it's giving me an error now, any fix? It worked for a long time then suddenly I get an error instead of the usually "offline"

Quote:

@echo off
echo Nickname: modelname
:loop
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 -v -r "rtmp://edge9-a.stream.highwebmedia.com/live-edge" -p "http://chaturbate.com/modelname" -y "mp4" -o "modelname_%_date%_%_time%.flv" -C S:username -C S:modelname -C S:2.648 -C S:pbkdf2_sha... -C S:50cbc58fdf112667af89ce80954170b49c456eb3325c472e f5608b84cc.... -T "m9z#$dO0qe34Rxe@sMYxx%" --live
echo ^G
for /F "delims=" %%I in ('dir /B') do if not exist "%%I\" if %%~zI EQU 0 del "%%I"
goto loop


All times are GMT -6. The time now is 06:03 AM.