所以我有一个Liquidsoap实例,我将其用于流式传输到Icecast服务器。
我想录制自动发生的任何直播,我现在正在做并且效果很好。
我想要做的是在创建mp3档案时使用直播节目的元数据(特别是歌曲名称)。
#!/usr/local/bin/liquidsoap
set("log.file",true)
set("log.file.path","/var/log/liquidsoap/radiostation.log")
set("log.stdout",true)
set("log.level",3)
#-------------------------------------
set("harbor.bind_addr","0.0.0.0")
#-------------------------------------
backup_playlist = playlist("/home/radio/playlists/playlist.pls",conservative=true,reload_mode="watch")
output.dummy(fallible=true,backup_playlist)
#-------------------------------------
live_dj = input.harbor(id="live",port=9000,password="XXX", "live")
date = '%m-%d-%Y'
time = '%H:%M:%S'
output.file(%mp3, "/var/www/recorded-shows/#{Title} - Recorded On #{date} At #{time}.mp3", live_dj, fallible=true)
#time_stamp = '%m-%d-%Y, %H:%M:%S'
#output.file(%mp3, "/var/www/recorded-shows/live_dj_#{time_stamp}.mp3", live_dj, fallible=true)
#-------------------------------------
on_fail = single("/home/radio/fallback/Enei -The Moment Feat DRS.mp3")
#-------------------------------------
source = fallback(track_sensitive=false,
[live_dj, backup_playlist, on_fail])
# We output the stream to icecast
output.icecast(%mp3,id="icecast",
mount="myradio.mp3",
host="localhost", password="XXX",
icy_metadata="true",description="cool radio",
url="http://myradio.fm",
source)
我添加了#{title}我希望我的歌曲出现在哪里,遗憾的是我无法获得此歌曲。
我的DJ使用BUTT并且节目标题作为连接的一部分连接,因此数据应该在预先录制时可用。
非常感谢任何建议!
答案 0 :(得分:0)
这远没有看起来那么容易。
title
元数据是动态的,因此在脚本初始化时不可用作变量output.file
的文件名参数解决方案包括:
title
以填充实时元数据on_close
参数和output.file
重命名文件(在这种情况下,我们可以在标题前加上标题)这将给出以下代码(在Linux机器上,在Windows上将mv
更改为ren
)
date = '%m-%d-%Y'
time = '%H:%M:%S'
# Title is a reference
title = ref ""
# Populate with metadata
def get_title(m)
title := m['title']
end
live_dj = on_metadata(get_title,live_dj)
# Rename file on close
def on_close(filename)
# Generate new file name
new_filename = "#{path.dirname(filename)}/#{!title} - #{basename(filename)}"
# Rename file
system("mv '#{filename}' '#{new_filename}'")
end
output.file(on_close=on_close, %mp3, "/var/www/recorded-shows/Recorded On #{date} At #{time}.mp3", live_dj, fallible=true)
我测试了类似的情况,并且效果很好。请注意,每次DJ断开连接或更新标题时,这都会创建一个新文件。另外请记住,时间戳记将由output.file
解决。
这是基于Liquidsoap开发人员的以下示例:https://github.com/savonet/liquidsoap/issues/661#issuecomment-439935854)