所以使用LiquidSoap来驱动我的广播电台。 我定义了 3 个播放列表和在它们之间切换的时间表:
pl1 = nrj(playlist("/var/www/html/radiojuno.com/playlists/pl1.m3u"))
pl2 = nrj(playlist("/var/www/html/radiojuno.com/playlists/pl2.m3u"))
pl3 = nrj(playlist("/var/www/html/radiojuno.com/playlists/pl3.m3u"))
radio = switch([ ({22h-7h}, pl1), ({7h-19h}, pl2), ({19h-22h}, pl3) ])
output.icecast(
%mp3,
host = "localhost",
port = 8000,
password = "xxxx",
mount = "mymount",
genre="Electronic",
description="**Current show description**",
url="http://example.com",
radio
)
我想根据当前计划修改流的描述。
但我无法弄清楚如何使用LiquidSoap实现这一目标。我已经盯着 https://www.liquidsoap.info/doc-1.4.2/metadata.html 看了几个小时了!
谁能帮忙?
很遗憾,但 Icecast 不支持在源连接期间更新服务器信息,如名称或描述。
原因是当源客户端连接到服务器时,这些信息是通过 HTTP 标头发送的。有关更多信息,请查看协议。
以下是支持我答案的来源:
- https://github.com/savonet/liquidsoap/issues/710
- http://lists.xiph.org/pipermail/icecast/2010-December/011774.html
- http://lists.xiph.org/pipermail/icecast/2005-April/009022.html