A simple mpv script that automatically adjusts ytdl-format (yt-dlp) for specified domains.
If a domain match is found, the script sets ytdl-format based on predefined options. It also has a fallback mode, in case the custom ytdl-format was not found.
Some streaming websites lack multi-format options, meaning if ytdl-format in mpv.conf is set to 480p or 720p only, mpv/yt-dlp may fail to play videos without matching formats.
This script allows you to set video quality and codec for specific websites while keeping the default setting for others, ensuring smooth playback without constantly editing mpv.conf.
To adjust options, simply change the values inside ytdlautoformat.conf (recommended) or adjust local options within the script.
# which domains should ytdl-format change on?
# separate each domain with a comma
domains=youtu.be, youtube.com, twitch.tv
# set maximum video quality (on load/start)
# 240, 360, 480, 720, 1080, 1440, 2160, 4320
# use 0 to ignore quality
quality=720
# prefered codec. avc, hevc, vp9, av1, novp9, none
# novp9: accept any codec except vp9
# none: no codec preference
codec=avc
# maximum video fps
# set 0 to ignore
fps=0
# force a specific extension
force_extension=no
extension_type=mp4
# rare: to avoid mpv shutting down if nothing is found with the specified format
# if true, and format not found, it'll use fallback_format
fallback=yes
# an alternative: bv+ba/b
fallback_format=b
# regex to detect urls
# a simpler pattern: ^%a+://
url_pattern=^[%a][%a%d+.-]*://Note
The options only affect matched URLs from the domains list.
Tip
You can set a default value in mpv.conf for non-matched domains. You don't have to, but this gives you more control on all streams you play.
Examples for mpv.conf:
-
ytdl-format=bv[vcodec!~='^(vp0?9)']+ba/b -
ytdl-format=bv[height<=1080][vcodec!~='^(vp0?9)']+ba/b[height<=1080]
Simply place ytdlautoformat.lua in the corresponding mpv scripts folder of your operating system:
- Windows:
%APPDATA%\mpv\scripts\orC:\users\USERNAME\AppData\Roaming\mpv\scripts\ - Linux:
~/.config/mpv/scripts/or/home/USERNAME/.config/mpv/scripts/ - Mac:
~/.config/mpv/scripts/or/Users/USERNAME/.config/mpv/scripts/
📁 mpv/
├── 📁 script-opts/
│ └── 📄 ytdlautoformat.conf
└── 📁 scripts/
└── 📄 ytdlautoformat.lua
Note
More information about files locations can be found here
I prefer a simple mpv configuration, so I created this script to fit my basic use case.
However, there are excellent alternatives offering more dynamic options, such as:
- mpv-quality-menu: Lets you change streamed video and audio quality (ytdl-format) on the fly.
- mpv-selectformat: Plugin for selecting the format of internet videos.
These can be used alongside ytdlautoformat.lua without conflicts.
