動作
Feature #87
已結束
SC
SC
Run multiple mount points on Icecast2 with MPD/MPC
Feature #87:
Run multiple mount points on Icecast2 with MPD/MPC
SC 是由 Sashiba Chou 於 超過 4 年 前更新
- 狀態 從 New 變更為 Closed
- 完成比例 從 0 變更為 100
Run Icecast2 on port 8000 as default¶
Configuration of MPD on Course_001(mpd_001.conf)¶
port "6600"
audio_output{
...
port "8000"
...
}
Configuration of MPD on Course_002 (mpd_002.conf)¶
port "6601"
audio_output{
...
port "8000"
...
}
Run Course_001 MPD¶
sudo mpd --no-daemon --stdout --verbose &
Run Course_002 MPD¶
sudo mpd --no-daemon --stdout --verbose &
MPC play Course_001¶
mpc -h localhost -p 6600 play
MPC play Course_002¶
mpc -h localhost -p 6601 play
動作