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)
-   -  

ChaturbateRec - Stream is captured but with a lot of dropped frames

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

boldntrue 02-03-2017 04:04 AM

ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Hi Folks,

I downloaded the Chaturbaterec file which is a gui for archiving CB streams.It captures with no issues,However the output is in *.TS format.
When the TS file is played the frames skip/jump a lot,or either the frames are freezing every 4-5 seconds.

I have got ffmpeg & ffplay on the folder of ChaturbateRec

Is anyone having this issue?
I also noticed that for a single capture multiple files get created.
How can the ts be captured without a drop in frame rate.

Also how do I ensure the output is written to only one file and not multiple file(for a single capture)

thanks.......

jh82 02-03-2017 05:48 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
There was a change on CB's end in October that caused fucked up ChaturbateRec recordings. It's not fixable. We all use other methods now.

Moonspell 02-03-2017 04:26 PM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
to me, most easy and working flawless is this script : made by the mighty : ihryjfbd



@echo off
setlocal enableDelayedExpansion

set USERNAME=AnonymousUser
set PASSWORD=anonymous
set CB_VERSION=9

set SECONDS=15

set /p model=Enter username:
set model=%model:https://chaturbate.com/=%
set model=%model:/=%

set OUT_DIR=captures\%model%

if not exist %OUT_DIR% (mkdir %OUT_DIR%)

for /L %%i in (1,1,99) do (
set N=!time:~9,12!
set /a N=10000!N! %% 10000
set rand=!random!
set /a rand=!rand!* 31/32768+1
set /a rand=!N!+!rand!
set /a rand=!rand!*31/131+1
)
set server=edge%rand%

:doCapture
for /r %%F in (*) do if %%~zF==0 @del "%%F"
set ts=%date:/=-%_%time::=-%
set ts=%ts: =%
set output=%OUT_DIR%\%model%_%ts%.flv
set PASSWORD=%PASSWORD:\u003D==%

color 2F && title %model% @ %time% - %server%
cls && echo Capturing: %model% @ %time% - %server% && echo.

rtmpdump --live --timeout 20 ^
-r "rtmp://%server%.stream.highwebmedia.com/live-edge" ^
-p "http://chaturbate.com/%model%" ^
-C S:%USERNAME% ^
-C S:%model% ^
-C S:%CB_VERSION% ^
-C S:%PASSWORD% ^
-y "playpath" -o %output%

for %%r in (%output%) do (
if %%~zr lss 1 del %output%
color 4F && title %model% - OFFLINE
)

set /a rand=%random%*31/32768+1
set server=edge%rand%

timeout %SECONDS%
goto doCapture



copy paste all the process - from "@echo off" to "goto doCapture" save it in a .bat (batch) file, in the same folder where there is the rtmdump program, and if you run windows as me, everything will be good :)
When the batch start, you need only to write the name of the model, and to give the enter. Then, it will start to record :)
Cheers

lajvguy 02-03-2017 09:35 PM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Chaturbate is supported by streamlink. It's easy to record using Windows batch files & VLC.

https://streamlink.github.io/plugin_matrix.html

confused.com 02-04-2017 06:09 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
C:\>streamlink.exe https://chaturbate.com/scop_ofilia/ best -o scop_ofilia.flv
[cli][info] Found matching plugin chaturbate for URL https://chaturbate.com/scop_ofilia/
[cli][info] Available streams: 480p (best, worst)
[cli][info] Opening stream: 480p (hls)
[download][scop_ofilia.flv] Written 3.3 MB (22s @ 165.3 KB/s)

j_cool 02-04-2017 06:53 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Other peep-show admins should keep an eye on streamlink...

and...

Catch up !

forums@thefallengalaxy.co 04-01-2017 09:58 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Quote:

Originally Posted by Moonspell (Post 89629)
to me, most easy and working flawless is this script : made by the mighty : ihryjfbd


copy paste all the process - from "@echo off" to "goto doCapture" save it in a .bat (batch) file, in the same folder where there is the rtmdump program, and if you run windows as me, everything will be good :)
When the batch start, you need only to write the name of the model, and to give the enter. Then, it will start to record :)
Cheers

Very nice script. Is there a way to write the model's name in the batch file, so that you dont have to type it in each time you run the batch file?

odogwu 04-05-2017 03:35 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Hi Moonspell, can you send the download link for ChaturbateRec.exe? Thanks

ihryjfbd 04-05-2017 03:51 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Quote:

Originally Posted by forums@thefallengalaxy.co (Post 90697)
Very nice script. Is there a way to write the model's name in the batch file, so that you dont have to type it in each time you run the batch file?

set /p model=Enter username:

try changing that to

set model:=model name

Damianonymous 04-05-2017 06:15 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Quote:

Originally Posted by odogwu (Post 90758)
Hi Moonspell, can you send the download link for ChaturbateRec.exe? Thanks

ChaturbateRec does not work for several months, creates defective videos.

lobster10510 08-01-2017 09:07 PM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Quote:

Originally Posted by boldntrue (Post 89623)
Hi Folks,

I downloaded the Chaturbaterec file which is a gui for archiving CB streams.It captures with no issues,However the output is in *.TS format.
When the TS file is played the frames skip/jump a lot,or either the frames are freezing every 4-5 seconds.

I have got ffmpeg & ffplay on the folder of ChaturbateRec

Is anyone having this issue?
I also noticed that for a single capture multiple files get created.
How can the ts be captured without a drop in frame rate.

Also how do I ensure the output is written to only one file and not multiple file(for a single capture)

thanks.......


Hi. Can you send me link to ChaturbateRec. Thanks

horacio 08-02-2017 02:32 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
Quote:

Originally Posted by boldntrue (Post 89623)
Hi Folks,

I downloaded the Chaturbaterec file which is a gui for archiving CB streams.It captures with no issues,However the output is in *.TS format.
When the TS file is played the frames skip/jump a lot,or either the frames are freezing every 4-5 seconds.

I have got ffmpeg & ffplay on the folder of ChaturbateRec

Is anyone having this issue?
I also noticed that for a single capture multiple files get created.
How can the ts be captured without a drop in frame rate.

Also how do I ensure the output is written to only one file and not multiple file(for a single capture)

thanks.......

A similar problem has a chat.py or chaturbate.py script, and yesterday I wrote about that in this message:

http://stream-recorder.com/forum/showpost.php?p=93228&postcount=212

There I offer a solution to that.

stevetee 08-05-2017 11:39 AM

Re: ChaturbateRec - Stream is captured but with a lot of dropped frames


 
I tried to run the capture.bat file but got the error message: Failed to open file! (in regard to the output file). :confused:


All times are GMT -6. The time now is 07:35 PM.