Hi Alain,

I'm really sorry, I didn't notice there was something else broken in
the example. The following works, with the use of mean() to convert
from stereo to mono:

# First transcoder: MP3 32 kbps
output.icecast(
  %mp3(bitrate=32, samplerate=22050, stereo=false),
  mount="/your-stream-32.mp3",
  mean(input))
# Second transcoder : MP3 128 kbps
output.icecast(
  %mp3(bitrate=128),
  mount="/your-stream-128.mp3",
  input)

This example dated back from long ago, before we switched to encoding
formats. This change introduced the %mp3(..) thing, but also made each
source have its own content type, stereo, mono, video, etc. The mono
output expects a mono source, so we have to explicitly do the
conversion. In that case, the conversion is simply done just before
the output, but in other cases it might be performed in other ways.

I'll fix that on the website and repository...
-- 
David

------------------------------------------------------------------------------
Magic Quadrant for Content-Aware Data Loss Prevention
Research study explores the data loss prevention market. Includes in-depth
analysis on the changes within the DLP market, and the criteria used to
evaluate the strengths and weaknesses of these DLP solutions.
http://www.accelacomm.com/jaw/sfnl/114/51385063/
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to