我想知道是否可以通过ezstream将PCM音频文件流传输到icecast:

我的ezstream配置文件:

<ezstream>
<url>http://127.0.0.1:8000/myRadio</url>
<sourcepassword>hackme</sourcepassword>
<format>MP3</format>
<filename>C:\Users\HP\Downloads\ezstream-0.5.6-win32\test\playlist.txt</filename>
<stream_once>1</stream_once>
<svrinfoname>AAA</svrinfoname>
<svrinfourl>http://test.ma</svrinfourl>
<svrinfogenre>Software Developpement</svrinfogenre>
<svrinfodescription>DDDD</svrinfodescription>
<svrinfobitrate>128</svrinfobitrate>
<svrinfochannels>2</svrinfochannels>
<svrinfosamplerate>44100</svrinfosamplerate>
<svrinfopublic>1</svrinfopublic>

    <reencode>
    <enable>1</enable>
    <encdec>
        <format>MP3</format>
        <match>.mp3</match>
        <encode>lame -r -s 44.1 - -</encode>
    </encdec>
    </reencode>
    </ezstream>

谢谢

最佳答案

从0.5.6版本开始,ezstream支持MP3,Ogg Vorbis和Ogg Theora

10-05 19:50