我想使用 Liquidsoap 创建一个音频-视频流。并在视频中显示当前曲目的进度和总时间。我想知道实现这一目标的最佳做法是什么。我目前使用以下方法,其中:
- 当前进度是用
source.remaining
功能获得的。 - 总长度是一个全局变量
track_length
,在on_track
回调中修改。
但是,目前的方法存在以下问题:
- 的返回值
source.remaining
不会以恒定的速度变化,如文档中提到的“估计剩余时间”。in可以是19min,突然跳到19min20s,再跳到18min50。然而,随着剩余时间越来越少,估计变得更加准确。 track_length
在当前曲目开始后,该变量确实会被修改。但是,获取变量的文本绘制函数始终获取初始值并且永远不会改变。
谢谢你的帮助!
这是我的脚本的相关部分:
# Define the global variable to store the length of current track
track_length = 0
# Define the on_track callback which updates track_length
def process_metadata(metadata)
file_name = metadata["filename"]
track_length = file.duration(file_name)
end
# Define the audio source and hook on_track callback
audio = fallback([sequence([
single("/etc/liquidsoap/lssj1.mp3")
])])
audio = on_track(process_metadata, audio)
# Define the function which returns the text to render
def get_time()
"$(cur)/$(total)" % [("cur", string_of(source.remaining(audio))), ("total", string_of(track_length))]
end
# Create the video frame
video = fallback([blank()])
video = video.add_text.sdl(x=0, y=300, size=40, get_time, video)