add flac format for audio

This commit is contained in:
PikuZheng 2024-06-07 10:35:04 +08:00
parent c6c02af4ff
commit 69c2f310c2
3 changed files with 9 additions and 2 deletions

View file

@ -1,6 +1,6 @@
import copy
AUDIO_FORMATS = ("m4a", "mp3", "opus", "wav")
AUDIO_FORMATS = ("m4a", "mp3", "opus", "wav", "flac")
def get_format(format: str, quality: str) -> str: