From: Maxim Raznatovski Date: Thu, 30 Jan 2025 11:50:41 +0000 (+0100) Subject: feat: add missing file extensions for filesystem provider (#1922) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=4c03f9767442d101247116ccb5a2c884f7d525fc;p=music-assistant-server.git feat: add missing file extensions for filesystem provider (#1922) feat: add missing file extensions --- 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