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 > rtmpdump
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #411  
Old 12-18-2015, 12:19 AM
iamsumit iamsumit is offline
Member
 
Join Date: Dec 2015
Posts: 72
iamsumit is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


KSV - any help on what are rtmpgw and rtmpsrv-vlc used for and how to make use of them? There are some info available online but they are very vague so wanted more clarity.

Can rtmpgw be used for sniffing http streams on port 8080/8081? Thanks.
Reply With Quote
  #412  
Old 12-23-2015, 08:36 AM
TEOL TEOL is offline
Junior Member
 
Join Date: Jan 2015
Posts: 7
TEOL is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Sweet. In these fixes has the fix to get the better quality feeds from ITV ect. and possible other UK On Demands been added out of interest it's better for the software to snag good quality than bad?
Reply With Quote
  #413  
Old 12-26-2015, 05:55 AM
TEOL TEOL is offline
Junior Member
 
Join Date: Jan 2015
Posts: 7
TEOL is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


There is a minor bug issue with the latest version where it only works on the C Drive and not my external anymore hope it could be fixed but so far so good on the working drive.
Reply With Quote
  #414  
Old 01-09-2016, 06:56 AM
ZeChico ZeChico is offline
Member
 
Join Date: Apr 2014
Posts: 31
ZeChico is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Thanks a lot KSV and anonymous, since I'm using the latest patch the patched RTMP package as not crashed a single time with RTMPDumpHelper (mostly using it in CB and MFC).

Awesome job
Reply With Quote
  #415  
Old 01-24-2016, 04:28 PM
mleczan mleczan is offline
Junior Member
 
Join Date: Jan 2016
Posts: 6
mleczan is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Hi! Is it also possible to enhance your patched rtmpdump with support for resuming live streams? Currently there is no way and --resume is disabled when --live. Of course tehere is no way to seek in live stream therefore some data would be lost which is obvious but any reasuming (just appending new data to old file) would be great. Is it possible?
Reply With Quote
  #416  
Old 01-25-2016, 10:13 AM
ZeChico ZeChico is offline
Member
 
Join Date: Apr 2014
Posts: 31
ZeChico is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Quote:
Originally Posted by mleczan View Post
Hi! Is it also possible to enhance your patched rtmpdump with support for resuming live streams? Currently there is no way and --resume is disabled when --live. Of course tehere is no way to seek in live stream therefore some data would be lost which is obvious but any reasuming (just appending new data to old file) would be great. Is it possible?
You can always use ffmpeg with concat to join files.

I use this bat file to join various flv from the present folder and convert to mp4 (only audio to reencode), just make sure that the files are ordered by name:

Code:
@ECHO OFF
setlocal enableextensions enabledelayedexpansion
set /a "count=0"
set "file="
echo(>"_input.txt"

for %%a in (*.flv) do (
    (set /a "count+=1")
    (if !count! == 1 (set file=%%a))
    (echo file '%%~a'>>"_input.txt")
)

set file=%file:~0,-3%mp4
ffmpeg -f concat -i _input.txt -strict experimental -c:v copy -c:a libvo_aacenc -ab 16k -ar 16000 -ac 1 "%file%"

pause
Reply With Quote
  #417  
Old 01-25-2016, 01:19 PM
mleczan mleczan is offline
Junior Member
 
Join Date: Jan 2016
Posts: 6
mleczan is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


@ZeChico thank you for replay but unfortunately it won't fit my needs. I use rtmpdump to record live stream and use it like PVR in XBMC, in case or merging file I'd need to record whole at first, then merge and play - using only rtmpdump I can watch content with a delay of 10 secs. Resuming seems to be the only one problem and eventually I'll probably try to implement this in rtmpdump but wonder if change could be done in release version so everyone can benefit from it.

Last edited by mleczan : 01-25-2016 at 02:46 PM.
Reply With Quote
  #418  
Old 01-29-2016, 12:36 PM
mleczan mleczan is offline
Junior Member
 
Join Date: Jan 2016
Posts: 6
mleczan is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Hello @KSV, I've made a patch which allow resuming live stream: https://drive.google.com/file/d/0B0d...ew?usp=sharing

New behaviour instead of ignoring --resume flag when --live is used just force to continue stream record, legacy is untouched. I'm not sure if this is a proper solution but anyway proved to be working fine.
Any chance to include this patch in your release so it won't get lost over time? (Help message was not updated)

Last edited by mleczan : 01-29-2016 at 02:27 PM.
Reply With Quote
  #419  
Old 02-15-2016, 03:41 PM
andreibv andreibv is offline
Junior Member
 
Join Date: Feb 2016
Posts: 1
andreibv is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


I'm trying to save the stream from the following url: http://www.rcs-rds.ro/internet-digi-...predeal-centru
I've tried with RTMPDumpHelper but I get the following errors:

ERROR: RTMP_Connect0, failed to connect socket. 10060 (Unknown error)
ERROR: RTMP_ReadPacket, failed to read RTMP packet header

Any tips? What am I doing wrong?
Reply With Quote
  #420  
Old 02-15-2016, 05:49 PM
biezom biezom is offline
Senior Member
 
Join Date: Sep 2014
Posts: 1,025
biezom is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Quote:
Originally Posted by andreibv View Post
I'm trying to save the stream from the following url: http://www.rcs-rds.ro/internet-digi-...predeal-centru
I've tried with RTMPDumpHelper but I get the following errors:

ERROR: RTMP_Connect0, failed to connect socket. 10060 (Unknown error)
ERROR: RTMP_ReadPacket, failed to read RTMP packet header

Any tips? What am I doing wrong?
hi
with this version of rtmpdump

Code:
https://github.com/K-S-V/Scripts/releases/download/v2.4/rtmpdump-2.4.zip
Code:
rtmpdump -r "rtmp://82.76.249.73:80/digilivedge" -a "digilivedge" -f "LNX 19,0,0,207" -W "http://www.rcs-rds.ro/cams_utilities/jwplayer/player-licensed53.swf" -p "http://www.rcs-rds.ro/internet-digi-net/camere-web-streaming/predeal-centru" --live -y "predeal_centru_desktop"  -o Predeal-Centru.flv
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 11:10 AM.


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