fix(playout): liquidsoap aac output syntax errors

This commit is contained in:
jo 2023-05-29 10:29:25 +02:00 committed by Kyle Robbertze
parent cd240beef5
commit 67af6cfa53
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@
{%- elif audio.format == "aac" -%}
%fdkaac(
bitrate=bitrate={{ audio.bitrate }},
aot={{ "mpeg4_he_aac_v2" if audio.bitrate <= 64 else "mpeg4_aac_lc" }},
bitrate={{ audio.bitrate }},
aot={{ ("mpeg4_he_aac_v2" if audio.bitrate <= 64 else "mpeg4_aac_lc") | quote }},
afterburner={{ "false" if audio.bitrate <= 128 else "true" }},
sbr_mode=true
)