我需要组织从我的机器到世界其他地方的 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 的版本是 0.13.2,在 Debian Lenny 上运行。怎么了?
任何帮助将不胜感激。
PS 我已经编译了 LAME 编码器。