From 651861b8b4c8226ecd4a53d7d99c2a8a762eb14a Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 19 Feb 2020 15:15:25 -0800 Subject: [PATCH] Add ac3 and flac extensions. --- ffstreams.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ffstreams.py b/ffstreams.py index b8b95fb..f642794 100644 --- a/ffstreams.py +++ b/ffstreams.py @@ -9,6 +9,8 @@ from voussoirkit import winwhich AUDIO_EXTENSIONS = { 'aac': 'm4a', + 'ac3': 'ac3', + 'flac': 'flac', 'mp3': 'mp3', 'opus': 'opus', '*': 'mka',