You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After restarting (or starting for the first time) a liquidsoap script using output.file.hls, the first HLS segment generated is an empty file, despite the generated HLS manifest indicating that it contains audio. This triggers a bug in hls.js when the segment is used in an EVENT playlist, which is how I observed this behaviour.
Steps to reproduce
Use output.file.hls (using the following script, for example)
#!/usr/bin/env liquidsoap
in = single("test.mp3")
aac_high =
%ffmpeg(
format = "mpegts",
%audio(codec = "aac", channels = 2, ar = 44100, b = "192k")
)
streams = [("aac_high", aac_high)]
def segment_name(metadata) =
let timestamp = int_of_float(time())
let {stream_name, duration, position, extname} = metadata
let filename = "#{stream_name}_#{duration}_#{timestamp}_#{position}.#{extname}"
filename
end
output.file.hls(
playlist="stream.m3u8",
segment_duration=4.0,
segments=10,
segments_overhead=null(),
segment_name=segment_name,
persist_at="./hls.state",
"./hls/",
streams,
in
)
Run the script for long enough it generates several segments, and observe that the first segment generated is an empty file.
Terminating the script and looking at the playlist file aac_high.m3u8, the empty segment is marked as containing some amount of audio data.
Expected behavior
Liquidsoap does not generate an empty segment file
Liquidsoap version
Liquidsoap 2.3.0+git@nixpkgs
Copyright (c) 2003-2024 Savonet team
Liquidsoap is open-source software, released under GNU General Public License.
See <http://liquidsoap.info> for more information.
Description
After restarting (or starting for the first time) a liquidsoap script using
output.file.hls
, the first HLS segment generated is an empty file, despite the generated HLS manifest indicating that it contains audio. This triggers a bug in hls.js when the segment is used in anEVENT
playlist, which is how I observed this behaviour.Steps to reproduce
Use
output.file.hls
(using the following script, for example)Run the script for long enough it generates several segments, and observe that the first segment generated is an empty file.
Terminating the script and looking at the playlist file
aac_high.m3u8
, the empty segment is marked as containing some amount of audio data.Expected behavior
Liquidsoap does not generate an empty segment file
Liquidsoap version
Liquidsoap build config
Installation method
From distribution packages
Additional Info
There is a example of the generated stream at https://media.ashhhleyyy.dev/aaaaa/hls/aac_high_ended.m3u8. The playlist file has been slightly modified to include
#EXT-X-PLAYLIST-TYPE:EVENT
and#EXT-X-ENDLIST
tags, but has not been modified in any other way.The text was updated successfully, but these errors were encountered: