From efb64aef194ea4d59638822194da33b2c2289b4b Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Tue, 3 Mar 2026 18:28:09 -0300 Subject: [PATCH] Add flac to MP4 audio qualities --- votify/interface/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/votify/interface/constants.py b/votify/interface/constants.py index 21d8893..933438b 100644 --- a/votify/interface/constants.py +++ b/votify/interface/constants.py @@ -47,6 +47,6 @@ FORMAT_ID_MAP = { "flac": "17", } -MP4_AUDIO_QUALITIES = {"aac-high", "aac-medium"} +MP4_AUDIO_QUALITIES = {"aac-high", "aac-medium", "flac"} VORBIS_AUDIO_QUALITIES = {"vorbis-high", "vorbis-medium", "vorbis-low"} PREMIUM_AUDIO_QUALITIES = {"aac-high", "vorbis-high", "flac"}