NerfHerder101 |
07-03-2018 11:02 PM |
Re: www.chaturbate.com - HowTo record 100% free XXX/adult web-cam videos
I just use youtube-dl in conjunction with ffmpeg to cap CB with the following .bat in the quote below.
Just download the most recent versions of youtube-dl and ffmpeg and have them in the same folder, as well as a CB_Model.txt file to add all the room names you want to capture (just the room names, not the full link. Make sure each name is on its own separate line).
You can set your refresh time to whatever you want. It is currently set to 30seconds.
It will refresh until the room goes live. Once the room goes offline. It will start refreshing again.
Enjoy!!
Quote:
@ECHO OFF
SETLOCAL EnableDelayedExpansion
:START
SET n=0
FOR /F "tokens=*" %%A IN (CB_Model.txt) DO (
SET /A n=n+1
SET _fav!n!=%%A
ECHO !n! %%A
)
ECHO.
SET /P MODEL=Choose or Enter Name of Model (%M%):
ECHO.
FOR /L %%F IN (1,1,!n!) DO (
IF /I '%MODEL%'=='%%F' SET M=%%F
)
SET n=0
FOR /F "tokens=*" %%A IN (CB_Model.txt) DO (
SET /A n=n+1
IF !n!==%M% SET MODEL=%%A
)
set SECONDS=30
set model=%model:https://chaturbate.com//=%
set model=%model:/=%
set OUT_DIR=rec\%model%
if not exist %OUT_DIR% (mkdir %OUT_DIR%)
:doCapture
for /r %%F in (*) do if %%~zF==0 @del "%%F"
set ts=%date:/=-%_%time::=-%
set ts=%ts: =%
set output=%OUT_DIR%\cb_%model%_%ts%.mp4
color 2F && title %model% @ %time%
cls && echo Capturing: %model% @ %time% && echo.
youtube-dl https://chaturbate.com/%model% -o %output%
for %%r in (%output%) do (
if %%~zr lss 1 del %output%
color 4F && title %model% - OFFLINE
)
timeout %SECONDS%
goto doCapture
|
What my folder looks like

|