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 01-21-2017, 09:27 AM
ecoeco ecoeco is offline
Junior Member
 
Join Date: Jan 2015
Posts: 6
ecoeco is on a distinguished road
Default

Chaturbate Sample Rtmpdump


Hello,

i think chaturbate have recently changed up their rtmp protocol. Can somebody with rtmpdump helper or sniffer can post a sample rtmpdump command, as the old one no longer works..?

Thanks guys.
Reply With Quote
  #2  
Old 01-21-2017, 02:39 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,

so what does not work?All working.Just check your paramters you do use.Only thing what they changed is adding more server addresses and protocol is still same.

greetz
Reply With Quote
  #3  
Old 01-21-2017, 05:19 PM
rykorb rykorb is offline
Junior Member
 
Join Date: May 2016
Posts: 8
rykorb is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


I think there may be an issue in resolving the rtmp stream URL as I'm having the same issue with livestreamer.

I keep getting an error that there is no stream, even though there clearly is. Example below. Apologies if any of the below is wrong, i dont normally manually run the commands, Capturebate normally takes care of this for me.

$ livestreamer rtmp://chaturbate.com/caylin best
[cli][info] Found matching plugin stream for URL rtmp://chaturbate.com/caylin
[cli][info] Available streams: live (worst, best)
[cli][info] Opening stream: live (rtmp)
[cli][error] No data returned from stream
Reply With Quote
  #4  
Old 01-22-2017, 12:34 AM
ecoeco ecoeco is offline
Junior Member
 
Join Date: Jan 2015
Posts: 6
ecoeco is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


So this is my default old command @troller12:

rtmpdump -r rtmp://edge50.stream.highwebmedia.com -p https://de.chaturbate.com/beryl18/ -C S:AnonymousUser -C S:beryl18 -C S:9 -C S:anonymous -y playpath -o /home/user/public_html/test.mp4

What am i missing :/

Hope anyone can help.
Reply With Quote
  #5  
Old 01-22-2017, 02:48 AM
ihryjfbd ihryjfbd is offline
Senior Member
 
Join Date: Oct 2015
Posts: 212
ihryjfbd is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


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
Reply With Quote
  #6  
Old 01-22-2017, 03:49 AM
mike9274 mike9274 is offline
Junior Member
 
Join Date: Jan 2017
Posts: 2
mike9274 is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


hi
i am new here i was using livestreamer but it doesn't seem to work anymore can someone help?
thanks
Reply With Quote
  #7  
Old 01-22-2017, 04:19 AM
ecoeco ecoeco is offline
Junior Member
 
Join Date: Jan 2015
Posts: 6
ecoeco is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


i get this:

Connecting ...
INFO: Connected...
ERROR: rtmp server sent error
ERROR: rtmp server requested close
Reply With Quote
  #8  
Old 01-22-2017, 06:14 AM
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
I think there may be an issue in resolving the rtmp stream URL as I'm having the same issue with livestreamer.

I keep getting an error that there is no stream, even though there clearly is. Example below. Apologies if any of the below is wrong, i dont normally manually run the commands, Capturebate normally takes care of this for me.

$ livestreamer rtmp://chaturbate.com/caylin best
[cli][info] Found matching plugin stream for URL rtmp://chaturbate.com/caylin
[cli][info] Available streams: live (worst, best)
[cli][info] Opening stream: live (rtmp)
[cli][error] No data returned from stream
What's the likelihood of them fixing this on their end? Livestreamer hasn't been updated for about a year and a half. Of course this happens just as someone comes online for a good stream.

But for what it's worth, I just tested my capturebate-node setup on Windows and it works, and that's with all the components being outdated.
Reply With Quote
  #9  
Old 01-22-2017, 06:31 AM
mike9274 mike9274 is offline
Junior Member
 
Join Date: Jan 2017
Posts: 2
mike9274 is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


is there anything like livestreamer i can use thats easy to understand?
pretty much a noob about this stuff
Reply With Quote
  #10  
Old 01-22-2017, 02:02 PM
rykorb rykorb is offline
Junior Member
 
Join Date: May 2016
Posts: 8
rykorb is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


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.
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 05:39 AM.


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