From 4c03f9767442d101247116ccb5a2c884f7d525fc Mon Sep 17 00:00:00 2001 From: Maxim Raznatovski Date: Thu, 30 Jan 2025 12:50:41 +0100 Subject: [PATCH] feat: add missing file extensions for filesystem provider (#1922) feat: add missing file extensions --- .../providers/filesystem_local/__init__.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/music_assistant/providers/filesystem_local/__init__.py b/music_assistant/providers/filesystem_local/__init__.py index 3b367b68..62cdb40a 100644 --- a/music_assistant/providers/filesystem_local/__init__.py +++ b/music_assistant/providers/filesystem_local/__init__.py @@ -106,6 +106,26 @@ TRACK_EXTENSIONS = ( "dsf", "opus", "aac", + "wv", + "amr", + "awb", + "spx", + "tak", + "ape", + "mpc", + "mp2", + "mp1", + "dra", + "mpeg", + "mpg", + "ac3", + "ec3", + "aif", + "oga", + "dff", + "ts", + "m2ts", + "mp+", ) PLAYLIST_EXTENSIONS = ("m3u", "pls", "m3u8") SUPPORTED_EXTENSIONS = TRACK_EXTENSIONS + PLAYLIST_EXTENSIONS -- 2.34.1