Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   rtmpdump (http://stream-recorder.com/forum/forumdisplay.php?f=54)
-   -  

rtmpdump error 111

(http://stream-recorder.com/forum/showthread.php?t=19572)

arrhenius 04-01-2015 12:23 PM

rtmpdump error 111


 
Hello,
i would like to dump an audio stream from http://www.radioradicale.it/scheda/1...olo-borsellino.
I'm using rtmp dump running on a remote minimal linux box that i control via ssh.
I'm using this command:
Code:

rtmpdump -r rtmp://video-3.radioradicale.it:1935/store-62/ -y mp3:dlt111/CA203876.mp3 -o out.flv
and I receive this error:
Code:

RTMP_Connect0, failed to connect socket. 111 (Connection refused)
.

Have you any idea to resolve?

PS: is there a way to get (or to convert) the file directly in mp3 (it's a flv stream) using rtmpdump?

hasomaso 04-01-2015 12:30 PM

Re: rtmpdump error 111


 
Code:

rtmpdump -v -r "rtmp://video-3.radioradicale.it:1935/store-62/" -a "store-62/" -f "WIN 16,0,0,305" -W "http://www.radioradicale.it/swf/fp/flowplayer-3.2.7.swf" -p "http://www.radioradicale.it/scheda/118776/119552-processo-ter-per-la-strage-di-via-damelio-omicidio-del-giudice-paolo-borsellino" -y "mp3:dlt111//CA203876.mp3" -o "output.flv"

arrhenius 04-01-2015 12:39 PM

Re: rtmpdump error 111


 
Quote:

Originally Posted by hasomaso (Post 75366)
Code:

rtmpdump -v -r "rtmp://video-3.radioradicale.it:1935/store-62/" -a "store-62/" -f "WIN 16,0,0,305" -W "http://www.radioradicale.it/swf/fp/flowplayer-3.2.7.swf" -p "http://www.radioradicale.it/scheda/118776/119552-processo-ter-per-la-strage-di-via-damelio-omicidio-del-giudice-paolo-borsellino" -y "mp3:dlt111//CA203876.mp3" -o "output.flv"

Thanks for your reply, but I receive the same error:
Code:

User@server [~/Software]$ ./rtmpdump -v -r "rtmp://video-3.radioradicale.it:1935/store-62/" -a "store-62/" -f "WIN 16,0,0,305" -W "http://www.radioradicale.it/swf/fp/flowplayer-3.2.7.swf" -p "http://www.radioradicale.it/scheda/118776/119552-processo-ter-per-la-strage-di-via-damelio-omicidio-del-giudice-paolo-borsellino" -y "mp3:dlt111//CA203876.mp3" -o "output.flv"
RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
ERROR: RTMP_Connect0, failed to connect socket. 111 (Connection refused)


hasomaso 04-01-2015 12:49 PM

Re: rtmpdump error 111


 
download the latest rtmpdump version from KSV and try again

rtmpdump2.4

arrhenius 04-01-2015 12:59 PM

Re: rtmpdump error 111


 
Quote:

Originally Posted by hasomaso (Post 75368)
download the latest rtmpdump version from KSV and try again

rtmpdump2.4

I think that it is the last version (2.4), I've installed it this morning

biezom 04-01-2015 03:34 PM

Re: rtmpdump error 111


 
Quote:

Originally Posted by arrhenius (Post 75369)
I think that it is the last version (2.4), I've installed it this morning

hi
with linux you need to compile the last version
but i have the same error when i forget delete the firewall redirect created above

Code:

iptables -t nat -D OUTPUT -p tcp --dport 1935 -j REDIRECT

arrhenius 04-02-2015 05:46 AM

Re: rtmpdump error 111


 
Quote:

Originally Posted by biezom (Post 75380)
hi
with linux you need to compile the last version
but i have the same error when i forget delete the firewall redirect created above

Code:

iptables -t nat -D OUTPUT -p tcp --dport 1935 -j REDIRECT

I don't have root permission on this server (it'sa remote server) so I can not modify the firewall...
So is it a firewall problem?
Or i can solve in another way, without contacting the admin?
Thank you

biezom 04-02-2015 08:33 AM

Re: rtmpdump error 111


 
you can try
Code:

ffmpeg -i "http://video-3.radioradicale.it:1935/store-62/_definst_/mp3:dlt111//CA203876.mp3/playlist.m3u8" -c copy Carmelo-Zuccaro.mp3
if you have an error "connection refused", this will confirm the problem of firewall

arrhenius 05-04-2015 10:32 AM

Re: rtmpdump error 111


 
Quote:

Originally Posted by biezom (Post 75401)
you can try
Code:

ffmpeg -i "http://video-3.radioradicale.it:1935/store-62/_definst_/mp3:dlt111//CA203876.mp3/playlist.m3u8" -c copy Carmelo-Zuccaro.mp3
if you have an error "connection refused", this will confirm the problem of firewall

Hi, unfortunately my server does not allow to run ffmpeg (but it works on my pc), it's a limitation of the hoster.
The error is: "segmentation fault".
Does exist another linux command line software (no rtmpdump or ffmpeg) that can download or record a streaming like this?
http://www.radioradicale.it/scheda/1...olo-borsellino

I think that the http link (ipad url) is easier to dowlnload.

It's very important for me.
Thank you

biezom 05-04-2015 10:43 AM

Re: rtmpdump error 111


 
Quote:

Originally Posted by arrhenius (Post 76300)
Hi, unfortunately my server does not allow to run ffmpeg (but it works on my pc), it's a limitation of the hoster.
The error is: "segmentation fault".
Does exist another linux command line software (no rtmpdump or ffmpeg) that can download or record a streaming like this?
http://www.radioradicale.it/scheda/1...olo-borsellino

I think that the http link (ipad url) is easier to dowlnload.

It's very important for me.
Thank you

hi

hls protocol is use on ipad device so
Code:

http://video-3.radioradicale.it:1935/store-62/_definst_/mp3:dlt111//CA203876.mp3/playlist.m3u8
sorry

arrhenius 05-04-2015 10:53 AM

Re: rtmpdump error 111


 
Quote:

Originally Posted by biezom (Post 76301)
hi

hls protocol is use on ipad device so
Code:

http://video-3.radioradicale.it:1935/store-62/_definst_/mp3:dlt111//CA203876.mp3/playlist.m3u8
sorry

Can I download an hls stream without ffmpeg?
Using ffmpeg it works on my pc (windows), but I'd need to download it using the linux remote server.
Thank you very much

biezom 05-04-2015 10:56 AM

Re: rtmpdump error 111


 
Quote:

Originally Posted by arrhenius (Post 76302)
Can I download an hls stream without ffmpeg?
Using ffmpeg it works on my pc (windows), but I'd need to download it using the linux remote server.
Thank you very much

livestreamer but i think you have the same problem

arrhenius 05-04-2015 10:58 AM

Re: rtmpdump error 111


 
Quote:

Originally Posted by biezom (Post 76303)
livestreamer but i think you have the same problem

Ok, I'll try, thank you!!!


All times are GMT -6. The time now is 06:09 AM.