From 466a2be733f3e4c5100cdaae517eef9b1bf55496 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 1 Oct 2020 18:10:34 -0700 Subject: [PATCH] Extract vorbis codec to ogg files. --- ffstreams.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ffstreams.py b/ffstreams.py index 8b01054..8aff77b 100644 --- a/ffstreams.py +++ b/ffstreams.py @@ -13,6 +13,7 @@ AUDIO_EXTENSIONS = { 'flac': 'flac', 'mp3': 'mp3', 'opus': 'opus', + 'vorbis': 'ogg', '*': 'mka', }