Re: [vdr] Streamdev script to stream audio only?

2011-12-07 Thread Füley István
Just a question: Do you need to transcode the audio stream? Why don't use the elementary audio stream from the DVB source? something like this: http://www.fuley.ro:3014/ES/S1.0W-1536-705-30511+1 István On 2011.12.06. 17:00, Teemu Suikki wrote: Hi! I need a mp3 audio stream of live tv

[vdr] Streamdev script to stream audio only?

2011-12-06 Thread Teemu Suikki
Hi! I need a mp3 audio stream of live tv channels.. I tried to do it with ffmpeg, but it doesn't work properly. No data is transferred, I guess ffmpeg doesn't like to write to a fifo? Any ideas? ___ vdr mailing list vdr@linuxtv.org

Re: [vdr] Streamdev script to stream audio only?

2011-12-06 Thread Johannes Truschnigg
Hi there, On Tue, Dec 06, 2011 at 05:00:24PM +0200, Teemu Suikki wrote: Hi! I need a mp3 audio stream of live tv channels.. I tried to do it with ffmpeg, but it doesn't work properly. No data is transferred, I guess ffmpeg doesn't like to write to a fifo? I did something similar once

Re: [vdr] Streamdev script to stream audio only?

2011-12-06 Thread Teemu Suikki
I actually managed to get this working quite well, here is my externremux.sh: echo -ne 'Content-type: audio/mpeg\r\n' echo -ne '\r\n' ffmpeg -f mpegts -i - -vn -acodec libmp3lame -ab 32000 -ar 44100 -ac 1 -f mp3 pipe:1 Nothing more needed really, simple is beautiful. :) However, there is one