Audio/video stream recording forums
|
| Attention Visitor: |
You may have to register or log in before you can post:
|
|
|||||||
|
|
|
Thread Tools | Display Modes |
|
#141
|
|||
|
|||
Re: Customized rtmpdump binaries with patch fileWOW thanks alooooooooot KSV its working great here
but i have problem when recording many streams together only one will have audio the others will have no sound ( it could be rtmpdump problem ? or rtmpdump helper ? ) it show WARNING: ignoring too small audio packet :/ |
|
#142
|
|||
|
|||
Re: Customized rtmpdump binaries with patch fileThank you KSV for your assistance a few days ago.
I figured out exactly what the issue was this time. There was one mistake in the recordFi**on script I was using to invoke rtmpdump, it wasn't sending "low" or "high" to their HTTP ID system via the wget. But the main issue was I needed to only request "low" not "high" streams, as I assume because I don't have a premium account their "2 min" viewing limit for "high" for free users was booting me about every 120secs or so. I fixed the two issues above and I have yet to get a disconnect. ![]() Last edited by RedPenguin : 07-22-2013 at 02:55 AM. |
|
#143
|
|||
|
|||
Re: Customized rtmpdump binaries with patch filehey ksv i have fresh ubuntu install , i need to get rtmpdump work with chaturbate the tool dump from other sites without any problem .. does ur version support chaturbate.com and why i cant get work by default ?? i have this version >>
Quote:
Quote:
|
|
#144
|
|||
|
|||
Re: Customized rtmpdump binaries with patch fileI have the same problem with chaturbate on Mac.
I patched the file successfully and compiled it with: Code:
make SYS=darwin sudo make SYS=darwin install prefix=/usr Code:
Connecting ... INFO: Connected... INFO: Model status is error Code:
rtmpdump -r "rtmp://edge9-a.stream.highwebmedia.com/live-edge" -W "http://chaturbate.com/static/flash/CBV_2p634.swf" -p "http://chaturbate.com/NAME/" -C S:MYNAME -C S:NAME -C S:2.634 -C S:pbkdf2PASSWORD --live -y "anything_here" -o "NAME.flv" |
|
#145
|
|||
|
|||
Re: Customized rtmpdump binaries with patch filei am using the latest patch
still this stream is not working with rtmpdump but i can see in browser...when used with rtmpdump it will download for few seconds then getting disconnected Quote:
the link to site http://1tvlive.in/surya-tv/ what could be wrong.....please help |
|
#146
|
|||
|
|||
Re: Customized rtmpdump binaries with patch fileQuote:
Check that you're escaping $ with \$. Also, you might want to put 2.640, 2p640 instead of 2.634, 2p634. If that still doesn't solve your problem, check the CB specific thread on these forums. |
|
#147
|
|||
|
|||
Re: Customized rtmpdump binaries with patch fileI am looking for an rtmpdump that doesn't record, but only connects (That it won't need -o).
I am trying to make a script that will check if the model is online, if it is online, it will start recording, else, it will retry in 15 seconds.. Can you help me please? |
|
#148
|
|||
|
|||
Re: Customized rtmpdump binaries with patch fileQuote:
rtmpdump's informational messages are fed to stderr. Depending on the tools at your disposal, you can consume this output in a stream-like fashion, or save a predefined amount of text to a file, to be processed later. If you need the latter, your command line would look like: Code:
Windows: rtmpdump ... > NUL 2>data.txt Unix: rtmpdump ... > /dev/null 2>data.txt |
|
#149
|
|||
|
|||
Re: Customized rtmpdump binaries with patch fileQuote:
This is my script: Code:
@ECHO OFF
set timeout=15
set dir=Downloads
set /p user=Enter username:
echo Please wait...
:grab
set mydate=%DATE:/=-%@%TIME::=-%
set txt=%TMP%\out_%user%_[%mydate: =%].txt
rtmpdump -V -r rtmp://edge.stream.highwebmedia.com/live-edge/0 -p http://chaturbate.com/%user% -C S:ddalindaa -C S:%user% -C S:2.640 -C S:pbkdf2_sha256^$10000^$vq7lwDzUenwE^$Cyn5/Fnu0g5WsAUELQ/w2x3cXXnei5zQhB0NPpCC3yQ= > NUL 2>%txt%
for /f "delims=" %%a in ('findstr /n . %txt% ^| findstr "^73:"') do set var="%%a"
for /f "delims=" %%a in ('findstr /n . %txt% ^| findstr "^74:"') do set var2="%%a"
for /f "delims=" %%a in ('findstr /n . %txt% ^| findstr "^75:"') do set var3="%%a"
set key="%var2:~56%"
set key=%key:>=%
set key=%key:"=%
set status="%var:~56%"
set status=%status:>=%
set status=%status:"=%
set addr="%var3:~56%"
set addr=%addr:>=%
set addr=%addr:"=%
if not %status%==okay goto:offline
if %status%==okay goto:online
:offline
title %user% - Offline
color F8
echo Could not start recording, server returned status '%status%'.
goto:done
:online
title [D]%user% - Online [since %TIME%]
color 2F
echo Success! Server returned '%status%' - %addr%
echo Stream key:
echo %key%
set stamp=%DATE:/=-%@%TIME::=-%
set fname=%dir%\%key:~0,32%_[%stamp: =%].flv
rtmpdump -v -r rtmp://%addr%/live-origin/%key% -o "fname"
:done
title %user% - Offline
color F8
timeout 15
goto:grab
Code:
rtmpdump -V -r rtmp://edge.stream.highwebmedia.com/live-edge/0 -p http://chaturbate.com/%user% -C S:ddalindaa -C S:%user% -C S:2.640 -C S:pbkdf2_sha256^$10000^$vq7lwDzUenwE^$Cyn5/Fnu0g5WsAUELQ/w2x3cXXnei5zQhB0NPpCC3yQ= > NUL 2>%txt% Code:
rtmpdump -v -r rtmp://%addr%/live-origin/%key% -o "fname" |
|
#150
|
|||
|
|||
Re: Customized rtmpdump binaries with patch fileQuote:
You can start dumping with a variation of the original command line (remove > NUL 2> ... and add -o yourfilename.flv) |
|
| Tags: binaries, binary, patch, patches, rtmpdump, rtmpsrv, rtmpsuck |
| Thread Tools | |
| Display Modes | |
|
|