Xml 将侦听器从mountpoint/live移动到/autodj(ezstream)将停止播放器

Xml 将侦听器从mountpoint/live移动到/autodj(ezstream)将停止播放器,xml,icecast,mount-point,Xml,Icecast,Mount Point,我已经安装了Icecast服务器和Ezstream。我无法将/live.mp3广播的侦听器从SAM broadcaster mp3编码器移动到另一个名为/autodj.mp3的挂载点,该挂载点在无广播器联机时循环播放列表。当我按将侦听器从/live.mp3移动到/autodj.mp3时,打开/live.mp3的播放器上的音乐停止。我尝试过对xml文件进行多次修改,但找不到问题所在。我希望这里有人处理过类似的问题 我的ezstream.xml是: 以及我在icecast.xml上的装载配置 如果忘

我已经安装了Icecast服务器和Ezstream。我无法将/live.mp3广播的侦听器从SAM broadcaster mp3编码器移动到另一个名为/autodj.mp3的挂载点,该挂载点在无广播器联机时循环播放列表。当我按将侦听器从/live.mp3移动到/autodj.mp3时,打开/live.mp3的播放器上的音乐停止。我尝试过对xml文件进行多次修改,但找不到问题所在。我希望这里有人处理过类似的问题

我的ezstream.xml是:

以及我在icecast.xml上的装载配置


如果忘记提到,从/live.mp3到/autodj.mp3的回退也不起作用。我是Icecast的新手,所以如果我犯了乞丐的错误,请温柔点。

一周后,我发现SAM广播公司的编码器与ezstream不同。所以我下载并在Sam和我的服务器上安装了LAME编码器。 然后我在服务器上安装了madplay进行解码。 最后在我的ezstream xml上添加了以下行:

<reencode>
   <enable>1</enable>

   <encdec>

     <format>MP3</format>
     <match>.mp3</match>

     <decode>madplay -b 16 -R 44100 -S -o raw:- "@T@"</decode>
     <encode>lame --preset cbr 128 -r -s 44.1 --bitwidth 16 - -</encode>

   </encdec>
</reencode>
<mount>
   <mount-name>/live.mp3</mount-name>
   <password>XXX</password>
   <max-listeners>100</max-listeners>

   <fallback-mount>/autodj.mp3</fallback-mount>
   <fallback-override>1</fallback-override>
   <fallback-when-full>1</fallback-when-full>

   <public>1</public>
   <stream-url>http://xx.xxx.xxx.xx:8000/auto.mp3</stream-url>

   <bitrate>96</bitrate>
   <type>application/mp3</type>
   <subtype>mp3</subtype>
   <mp3-metadata-interval>4096</mp3-metadata-interval>

</mount>

<mount>

   <mount-name>/autodj.mp3</mount-name>
   <password>xxx</password>
   <max-listeners>100</max-listeners>

   <public>1</public>
   <stream-url>http://xx.xxx.xxx.xx:8000/autodj.mp3</stream-url>
   <bitrate>128</bitrate>
   <type>application/mp3</type>
   <subtype>mp3</subtype>
   <mp3-metadata-interval>4096</mp3-metadata-interval>

</mount>
<reencode>
   <enable>1</enable>

   <encdec>

     <format>MP3</format>
     <match>.mp3</match>

     <decode>madplay -b 16 -R 44100 -S -o raw:- "@T@"</decode>
     <encode>lame --preset cbr 128 -r -s 44.1 --bitwidth 16 - -</encode>

   </encdec>
</reencode>