mirror of https://github.com/mpv-player/mpv
ytdl: force "best" format by default
If the --ytdl-format option is not used, force the "best" format. Do this because youtube-dl is going to change its default format to one that will trigger the (partially broken) DASH support in our own code. Fixes #1867.
This commit is contained in:
parent
a5ed6e49bf
commit
95a0488ac2
|
@ -691,7 +691,7 @@ const struct MPOpts mp_default_opts = {
|
|||
#if HAVE_LUA
|
||||
.lua_load_osc = 1,
|
||||
.lua_load_ytdl = 1,
|
||||
.lua_ytdl_format = NULL,
|
||||
.lua_ytdl_format = "best",
|
||||
.lua_ytdl_raw_options = NULL,
|
||||
#endif
|
||||
.auto_load_scripts = 1,
|
||||
|
|
Loading…
Reference in New Issue