Mkvpriority
Assigns priority scores to audio and subtitle tracks in MKV files
Install / Use
/learn @kennethsible/MkvpriorityREADME
MKVPriority assigns configurable priority scores to audio and subtitle tracks, similar to custom formats in Radarr/Sonarr. MKV flags, such as default and forced, are automatically set for the highest-priority tracks (e.g., 5.1 surround and ASS subtitles), while lower-priority tracks (e.g., stereo audio and PGS subtitles) are deprioritized.
[!IMPORTANT] MKVPriority modifies track flags in place using
mkvpropedit(no remuxing), allowing media players to automatically select the best audio and subtitle tracks according to your preferences.
Features
- Assigns configurable priority scores to audio and subtitle tracks (similar to custom formats in Radarr/Sonarr)
- Automatically sets default/forced flags for the highest priority tracks (e.g., Japanese audio and ASS subtitles)
- Deprioritizes unwanted audio and subtitle tracks (e.g., English dubs, commentary tracks, signs/songs)
- Periodically scans your media library using a cron schedule and processes new MKV files with a database
- Integrates with Radarr and Sonarr using a custom script to process new MKV files as they are imported
Docker Image
A Docker image is provided to simplify the installation process and enable quick deployment.
docker run --rm -v /path/to/media:/media ghcr.io/kennethsible/mkvpriority /media
Use a Custom Config
You can specify your own preferences by creating a custom TOML config that defines track filters by name and assigns scores by property. To override the default config, use a bind mount:
docker run --rm -u ${PUID}:${PGID} \
-v /path/to/media:/media \
-v /path/to/mkvpriority/config:/config \
ghcr.io/kennethsible/mkvpriority /media \
--config /config/custom.toml
[!IMPORTANT] Before starting the Docker container, you should pre-create the config folder on the host. Otherwise, Docker will create the folder as the root user, causing Python to raise a
PermissionError.
Use an Archive Database
You can periodically process your media library using a cron job and an archive database. To keep track of processed files, create an archive.db file and use a bind mount:
docker run --rm -u ${PUID}:${PGID} \
-v /path/to/media:/media \
-v /path/to/mkvpriority/config:/config \
ghcr.io/kennethsible/mkvpriority /media \
--archive /config/archive.db
Radarr/Sonarr Integration
You can process new MKV files as they are imported into Radarr/Sonarr by adding the custom script mkvpriority.sh and selecting 'On File Import' and 'On File Upgrade'. In order for Radarr/Sonarr to recognize the custom script, it must be visible inside the container.
[!NOTE] To add a custom script to Radarr/Sonarr, go to Settings > Connect > Add Connection > Custom Script.
mkvpriority:
image: ghcr.io/kennethsible/mkvpriority
container_name: mkvpriority
user: ${PUID}:${PGID}
environment:
WEBHOOK_RECEIVER: "true"
MKVPRIORITY_ARGS: >
--archive /config/archive.db
volumes:
- /path/to/media:/media
- /path/to/mkvpriority/config:/config
restart: unless-stopped
[!IMPORTANT] If you are not using "mkvpriority" as the name of your container, you will need to update it in the custom script. Also, verify that the mount point for your media directory in MKVPriority is the same as the one used by Radarr/Sonarr.
Use Multiple Configs
MKVPriority supports multiple, tag-based configs that can be customized to match the tagging system used in Radarr/Sonarr. For example, you can create a separate config for anime by adding an anime tag in Radarr/Sonarr either manually or via auto-tagging. Then, append the ::anime tag to the config path in the MKVPriority arguments.
mkvpriority:
image: ghcr.io/kennethsible/mkvpriority
container_name: mkvpriority
user: ${PUID}:${PGID}
environment:
WEBHOOK_RECEIVER: "true"
MKVPRIORITY_ARGS: >
--config /config/anime.toml::anime
--archive /config/archive.db
volumes:
- /path/to/media:/media
- /path/to/mkvpriority/config:/config
restart: unless-stopped
[!IMPORTANT] In Radarr/Sonarr, a given movie or show can have multiple tags. However, MKVPriority only uses the first tag in alphabetical order. Therefore, you may need to create new tags specifically for MKVPriority.
Original Audio Language
MKVPriority supports using the Radarr/Sonarr API to identify the original language of a movie or series. You can assign priority scores to the language code org (original) by configuring API access with environment variables.
mkvpriority:
image: ghcr.io/kennethsible/mkvpriority
container_name: mkvpriority
user: ${PUID}:${PGID}
environment:
WEBHOOK_RECEIVER: "true"
MKVPRIORITY_ARGS: >
--archive /config/archive.db
SONARR_URL: http://sonarr:8989
SONARR_API_KEY: ${SONARR_API_KEY}
RADARR_URL: http://radarr:7878
RADARR_API_KEY: ${RADARR_API_KEY}
volumes:
- /path/to/media:/media
- /path/to/mkvpriority/config:/config
restart: unless-stopped
[!NOTE] To generate an API key for Radarr/Sonarr, go to Settings > General > Security > API Key.
Cron Scheduler
You can use the built-in cron scheduler to periodically scan your media library and process MKV files. When paired with an archive database, MKVPriority will only process new files with each scan.
mkvpriority:
image: ghcr.io/kennethsible/mkvpriority
container_name: mkvpriority
user: ${PUID}:${PGID}
environment:
TZ: "America/New_York"
CRON_SCHEDULE: "0 0 * * *"
MKVPRIORITY_ARGS: -a /config/archive.db /media
volumes:
- /path/to/media:/media
- /path/to/mkvpriority/config:/config
restart: unless-stopped
[!NOTE] MKVPriority supports non-standard macros for cron expressions, such as
@dailyand@hourly.
CLI Usage
mkvtoolnix must be installed on your system for mkvpropedit (unless you are using the Docker image).
usage: mkvpriority [-h] -c TOML_PATH[::TAG] [-a DB_PATH] [-v] [-x] [-q] [-p] [-n] [-r] [-e] [INPUT_PATH[::TAG] ...]
positional arguments:
INPUT_PATH[::TAG] files or directories
options:
-c, --config TOML_PATH[::TAG]
-a, --archive DB_PATH
-v, --verbose inspect track metadata
-x, --debug show mkvtoolnix output
-q, --quiet suppress logging output
-p, --prune prune database entries
-n, --dry-run simulate track changes
-r, --restore restore original tracks
-e, --extract extract embedded subtitles
Python Package
To use MKVPriority without Docker, run the following pip command:
pip install 'git+ssh://git@github.com/kennethsible/mkvpriority.git'
[!NOTE] If the CLI tool is not installed in your environment (e.g.
docker exec), usepython -m mkvpriority.
Subtitle Extractor
You can use the --extract argument to extract embedded subtitles with the highest priority score. This may result in smoother playback if your media player doesn't support certain subtitle formats. For example, if the player needs to transcode or burn in embedded subtitles, it must first demux and process the entire MKV container.
Naming Format: {basename}.{language}.{default,forced}.{srt,ass}
[!NOTE] To avoid changing internal track flags and only use external subtitles, use the
--dry-runargument with--extractsince subtitle extraction still runs during a dry run, which only prevents changes to the MKV container.
TOML Configuration
All behavior is configured through TOML files, which assign priority scores to track properties, such as languages and codecs, and define custom filters for track names, such as "signs" and "songs."
Example: Subtitle Codecs
[subtitle_codecs]
"S_TEXT/ASS" = 30 # Stylized (Advanced SubStationAlpha)
"S_TEXT/SSA" = 30 # Legacy Stylized (SubStationAlpha)
"S_TEXT/UTF8" = 20 # Plain Text (SubRip/SRT)
"S_TEXT/WEBVTT" = 20 # Web-Based Video Text (Used in Streaming)
"S_HDMV/PGS" = 10 # Image-Based (Used in Blu-rays)
S_VOBSUB = 10 # Legacy Image-Based (Used in DVDs)
Hardlinks Limitation
MKVPriority avoids remuxing by using mkvpropedit, but this still affects hardlinks since the metadata is modified. To avoid breaking hardlinks, use the --dry-run argument with --extract for external subtitles only (see Subtitle Extractor).
Related Skills
node-connect
341.6kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.6kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
341.6kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.6kCommit, push, and open a PR
