1
0
Fork 0

Switch to bare flac streaming.

OGG causes issues due to its logical streams getting misinterpreted: liquidsoap
will skip the first bit of a new logical stream after metadata change leading to
stutters and skips in the final audio output.
liquidsoap-2.2
Icedream 2023-05-19 16:02:58 +02:00
parent fb6a325780
commit ee5fb8fd2f
Signed by: icedream
GPG Key ID: 468BBEEBB9EC6AEA
1 changed files with 2 additions and 12 deletions

View File

@ -139,8 +139,6 @@ setup_harbor_stream_api(internal_icecast(
if null.defined(rektfm_username) and null.defined(rektfm_password) then
setup_harbor_stream_api(output.icecast(
id="out_a_rekt",
# %ogg(%flac),
# %mp3(bitrate=320),
fallible=true,
mount="rekt",
port=60000,
@ -151,16 +149,8 @@ if null.defined(rektfm_username) and null.defined(rektfm_password) then
description=null.get(stream_description),
password=null.get(rektfm_password),
start=false,
%ffmpeg(
format="ogg",
%audio(
codec="libvorbis",
flags=2, # CODEC_FLAG_QSCALE (enables VBR mode based on qscale aka global_quality)
global_quality=1180., # gets divided by FF_QP2LAMBDA=118
),
),
format="audio/flac",
%flac,
a,
# %ffmpeg(format="ogg", %audio.copy),
# a_vorbis,
))
end