From 1f0daaba3c1862343f4555837e9a785e0d965f93 Mon Sep 17 00:00:00 2001 From: JinHakChoi Date: Fri, 15 Aug 2025 14:02:21 +0900 Subject: [PATCH] feat(config): Add common audio and video MIME type aliases Adds a set of common audio and video MIME type aliases to the configuration file. This allows the system to correctly identify these file types for features such as automated tagging, improving overall file handling. This change is limited to the configuration update. UI modifications are out of scope and will be addressed in a separate pull request. Fixes #30173 Signed-off-by: JinHakChoi --- resources/config/mimetypealiases.dist.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/resources/config/mimetypealiases.dist.json b/resources/config/mimetypealiases.dist.json index 970050df1b6..e8663196633 100644 --- a/resources/config/mimetypealiases.dist.json +++ b/resources/config/mimetypealiases.dist.json @@ -118,5 +118,17 @@ "text/x-python": "text/code", "text/x-rst": "text", "text/x-shellscript": "text/code", - "web": "text/code" + "web": "text/code", + "audio/aac": "audio", + "audio/ogg": "audio", + "audio/opus": "audio", + "audio/midi": "audio", + "audio/x-midi": "audio", + "audio/mpeg": "audio", + "audio/wav": "audio", + "audio/webm": "audio", + "video/mp4": "video", + "video/mpeg": "video", + "video/ogg": "video", + "video/webm": "video" }