Quote:
Originally Posted by jh82
Is this livestreamer? Is there any info available on how to set this up for CB? Can it run continuously and check when selected models come online and then record them? I heard somewhere that it will crash when a model goes private. Can you verify if that's true?
|
rtmpdump, it loops the script and records as soon as they go public.
for livestreamer, also has the benefit of recording with the AAC audio codec instead of Speex.
Code:
@echo off
:loop
echo livestreamer is now Recording... Chaturbate
@echo off
cd I:\StreamS\Chaturbate
for /r %%F in (*) do if %%~zF==0 @del "%%F"
set /p model=Enter model username:
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=%day%-%month%-%year%_%hour%-%min%-%secs%
SET file=%_my_datetime%
livestreamer "https://chaturbate.com/%model%/" best --http-header "swfUrl=https://chaturbate.com/static/flash/CBV_2p650.swf" --http-header "flashVer=WIN 23,0,0,162" -o "I:\StreamS\Chaturbate\%file%_%model%_Chaturbate.ts"
goto loop