Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording (Adult streaming videos)
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 02-03-2017, 05:04 AM
boldntrue boldntrue is offline
Junior Member
 
Join Date: Feb 2017
Posts: 1
boldntrue is on a distinguished road
Default

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.......
Reply With Quote
  #2  
Old 02-03-2017, 06:48 AM
jh82 jh82 is offline
Member
 
Join Date: Sep 2016
Posts: 37
jh82 is on a distinguished road
Default

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.
Reply With Quote
  #3  
Old 02-03-2017, 05:26 PM
Moonspell Moonspell is offline
Senior Member
 
Join Date: Sep 2016
Posts: 227
Moonspell is on a distinguished road
Default

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
Reply With Quote
  #4  
Old 02-03-2017, 10:35 PM
lajvguy lajvguy is offline
Senior Member
 
Join Date: Nov 2014
Posts: 203
lajvguy is on a distinguished road
Default

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
Reply With Quote
  #5  
Old 02-04-2017, 07:09 AM
confused.com confused.com is offline
Senior Member
 
Join Date: Jan 2017
Posts: 165
confused.com is on a distinguished road
Default

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)
Reply With Quote
  #6  
Old 02-04-2017, 07:53 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

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 !
Reply With Quote
  #7  
Old 04-01-2017, 10:58 AM
forums@thefallengalaxy.co forums@thefallengalaxy.co is offline
Junior Member
 
Join Date: Apr 2017
Posts: 1
forums@thefallengalaxy.co is on a distinguished road
Default

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


Quote:
Originally Posted by Moonspell View Post
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?
Reply With Quote
  #8  
Old 04-05-2017, 04:51 AM
ihryjfbd ihryjfbd is offline
Senior Member
 
Join Date: Oct 2015
Posts: 212
ihryjfbd is on a distinguished road
Default

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


Quote:
Originally Posted by forums@thefallengalaxy.co View Post
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
Reply With Quote
  #9  
Old 04-05-2017, 04:35 AM
odogwu odogwu is offline
Junior Member
 
Join Date: Apr 2017
Posts: 1
odogwu is on a distinguished road
Default

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


Hi Moonspell, can you send the download link for ChaturbateRec.exe? Thanks
Reply With Quote
  #10  
Old 04-05-2017, 07:15 AM
Damianonymous Damianonymous is offline
Senior Member
 
Join Date: Jan 2017
Posts: 187
Damianonymous is on a distinguished road
Default

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


Quote:
Originally Posted by odogwu View Post
Hi Moonspell, can you send the download link for ChaturbateRec.exe? Thanks
ChaturbateRec does not work for several months, creates defective videos.
Reply With Quote
Reply Post New Thread
Tags:



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 04:21 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons