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
  #11  
Old 01-22-2017, 03:09 PM
troller12 troller12 is offline
Senior Member
 
Join Date: Sep 2013
Posts: 433
troller12 is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Hi again,

@ ecoeco

So not all paramter you have to use are static.Also in your default example there is no app paramter you have to use.Also remember not to use the edge value twice just once to play or record or the rtmp stream.Below a example....
Code:
rtmpdump -v -r "rtmp://edge??.stream.highwebmedia.com/live-edge" -p "https://chaturbate.com" -C S:AnonymousUser -C S:Modelxy -C S:2.651 -C S:anonymous -y "mp4:......." | "player" -
...use it like this.Dynamics are server address and the playpath of course.For ?? you can diffrent values from none till over 80 also you can use a / b too to have more addresses.If you hit same address twice then you get a failed message (now switch value).Remember that also not all slots are available everyday.

About playlist.So if you want to use Livestreamer then you should grab the m3u8 links directly from each model page and execute it with LS to play or record them.
Code:
[cli][info] Found matching plugin stream for URL hlsvariant://https://edge54.str
eam.highwebmedia.com/live-edge/modelxy-sd-..._fast_aac/playlist.m3u8
[cli][info] Available streams: 480p (worst, best)
[cli][info] Opening stream: 480p (hls)
[cli][info] Starting player: C:\Programme\MPC-HC\mpc-hc.exe
So I didnt try the latest LS version now but the simple way to use just the sitename/model dosent work with that LS version 1.12.2 and I get "Could not open stream: Missing #EXTM3U header".

PS: Just use RtmpDumpHelper to grab the stream paramters or other tools etc.If RtmpDumpHelper dosent work (OS isuue etc) then you could use rtmpsuck alone + hooking connect API sending the datas to your localhost address.So there are some methods you could try.

greetz
Reply With Quote
  #12  
Old 01-22-2017, 10:52 PM
wrapped_it_up_and_sent_it wrapped_it_up_and_sent_it is offline
Junior Member
 
Join Date: Jan 2017
Posts: 2
wrapped_it_up_and_sent_it is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Quote:
Originally Posted by rykorb View Post
Details on how to fix livestreamer can be found here:

https://github.com/chrippa/livestreamer/issues/1569

This thread also make mention of streamlink, a fork of livestreamer, which is still being updated.
Thanks for highlighting this, managed to fix capturebate on my Raspberry Pi with this.

In case there's anyone out there looking for specific steps to fix their own livestreamer-based capturebate setup on Raspi (and likely anything Linux), then you simply need to:

Code:
cd /usr/lib/python2.7/dist-packages/livestreamer/plugins
Code:
sudo nano chaturbate.py
Then replace

Quote:
_playlist_url_re = re.compile("html \+= \"src='(?P<url>[^']+)'\";")
with
Quote:
_playlist_url_re = re.compile("loadHlsVideo\('(?P<url>[^']+)")
Hit Ctrl+X, press y, and enter. This will save the file. It should now work. The inital directory might be different depending on your python version.
Reply With Quote
  #13  
Old 01-23-2017, 02:56 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


RtmpdumpHelper / Rtmpsuck fail more and more often.

Is it rtmpsuck that fails or man in the middle ?

This is not clear to me:

quote:

If RtmpDumpHelper dosent work (OS isuue etc) then you could use rtmpsuck alone + hooking connect API sending the datas to your
localhost address.

Can you post some link to read more about this or to working example?
Reply With Quote
  #14  
Old 01-23-2017, 06:23 AM
troller12 troller12 is offline
Senior Member
 
Join Date: Sep 2013
Posts: 433
troller12 is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Hi,

if RtmpdumpHelper / Rtmpsuck fail etc then check whether you did add the right port or range into the list to scan for.Also check the browser you do use so Chrome can make trouble (I dont use it).

If you fail to get any stream data then its a rtmpsuck issue or stream is protected etc.

Mostly I dont use Rtmpdump anymore and just in/de-ject my own hook dll into the process to pipe to localhost and using rtmpsuck to show / read the stream datas without to record files.So there are no infos / examples so far and I just made it by myself.Maybe its not a good info I did post for none coder people.

greetz
Reply With Quote
  #15  
Old 01-23-2017, 06:49 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Good info to me though I cannot code my own dll,
or code on rtmpsuck.
Reply With Quote
  #16  
Old 01-23-2017, 04:16 PM
guestbuy guestbuy is offline
Junior Member
 
Join Date: Oct 2012
Posts: 22
guestbuy is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Is there a current branch of CaptureBate? I only see the one dated 2015.
Reply With Quote
  #17  
Old 01-26-2017, 12:44 PM
Moonspell Moonspell is offline
Senior Member
 
Join Date: Sep 2016
Posts: 227
Moonspell is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Quote:
Originally Posted by ihryjfbd View Post
Code:
@echo off
setlocal enableDelayedExpansion

set USERNAME=AnonymousUser
set PASSWORD=anonymous
set CB_VERSION=9
set OUT_DIR=C:\captures
set SECONDS=15

set /p model=Enter username: 
set model=%model:https://chaturbate.com/=%
set model=%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
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
Brilliant, pretty easy and well done batch
Reply With Quote
  #18  
Old 01-27-2017, 07:42 AM
ihryjfbd ihryjfbd is offline
Senior Member
 
Join Date: Oct 2015
Posts: 212
ihryjfbd is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Thanks could do with a few more statements than error or offline, anyone know the codes for group, private, ticket shows?

Can you try changing these too let me know if it create a folder for each model.

Code:
set OUT_DIR=C:\captures
set SECONDS=15
set /p model=Enter username:
Code:
set SECONDS=15
set /p model=Enter username:
set OUT_DIR=C:\captures\%model%
Not sure if the drive letter is real requirement or you can just set to dump in the current dictionary as rtmpdump.
Reply With Quote
  #19  
Old 01-29-2017, 06:41 PM
Damianonymous Damianonymous is offline
Senior Member
 
Join Date: Jan 2017
Posts: 187
Damianonymous is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


%model% does not create a subfolder for the model. The drive letter is not needed, just set OUT_DIR=captures. The script works very well, if you can, add a function minFileSizeMb:

P.S if you can clear the mail box (messages sent) You can not contact you

http://stream-recorder.com/forum/pri...p=&folderid=-1
Reply With Quote
  #20  
Old 01-31-2017, 10:50 AM
ihryjfbd ihryjfbd is offline
Senior Member
 
Join Date: Oct 2015
Posts: 212
ihryjfbd is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Ok try this instead, created the model folder for me just recording kokette22 now.

Code:
set OUT_DIR=C:\captures
set SECONDS=15

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

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

Code:
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%)
minFileSizeMb??
you could add this which clear the folder of all zero byte files.

Code:
:doCapture
for /r %%F in (*) do if %%~zF==0 @del "%%F"
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 06:32 AM.


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