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 <ws423257@gmail.com>
pull/54447/head
JinHakChoi 2025-08-15 14:02:21 +07:00
parent 2c0f312f11
commit 1f0daaba3c
1 changed files with 13 additions and 1 deletions

@ -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"
}