我需要从我的机器组织mp3流式传输到世界其他地方。人们建议我使用MPD和Icecast2作为前端。一切都没问题,除了一件事 - 音乐正在流式传输为Ogg Vorbis,而不是我真正需要的。
有一段MPD的配置文件:
audio_output {
type "shout"
name "Radio"
host "localhost"
port "8000"
encoding "mp3"
mount "/radio.ogg"
password "mypass"
bitrate "256"
format "44100:16:2"
protocol "icecast2"
description "radio stream"
}
但是,Icecast的状态页面说它是流媒体ogg,而不是mp3。 MPD的版本在Debian Lenny上运行0.13.2。怎么了?
任何帮助将不胜感激。
P.S。我编译了LAME编码器。
答案 0 :(得分:2)
所以我的问题解决了。我刚刚使用--enable_shout和--enable_ffmpeg键编译了0.15.2版本的MPD。