3

我想使用 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)
4

1 回答 1

0

Liquidsoap 中没有“全局变量”这样的术语

没有分配,只有定义。x = expr 不修改 x,它只是定义了一个新的 x。表达式 (x = s1 ; def y = x = s2 ; (x,s3) end ; (y,x)) 的计算结果为 ((s2,s3),s1)。

链接:https ://www.liquidsoap.info/doc-dev/language.html

所以,你应该使用参考:

定义:

track_length = ref 0

然后修改它(注意我们也使用 int_of_float):

track_length := int_of_float(file.duration(file_name))

然后得到它的值:

!track_length

我相信它会解决你的问题

于 2019-02-14T02:45:56.547 回答