diff options
author | ChrisK2 <spam@kalania.de> | 2015-10-11 00:35:35 +0200 |
---|---|---|
committer | ChrisK2 <spam@kalania.de> | 2015-10-11 00:35:35 +0200 |
commit | 78caf6ae8634b9fe9589187d8febb927dce2ddeb (patch) | |
tree | 3ccc8f1041c94f607ffae78b6fa8cbad818e589a /options | |
parent | 46c499d02a6803421a04ef5ebb5f4077c968da3d (diff) |
ytdl: Remove DASH hacks, use DASH by default
Thanks to rcombs, ffmpeg now properly supports DASH and we can
remove our hacks for it and use it by default whenever
available. If you don't like this for whatever reason, you
can get the "normal" streams back with --ytdl-format=best .
Closes #579
Closes #1321
Closes #2359
Diffstat (limited to 'options')
-rw-r--r-- | options/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c index 51d2c5ca82..7a23e0c9c2 100644 --- a/options/options.c +++ b/options/options.c @@ -717,7 +717,7 @@ const struct MPOpts mp_default_opts = { #if HAVE_LUA .lua_load_osc = 1, .lua_load_ytdl = 1, - .lua_ytdl_format = "best", + .lua_ytdl_format = NULL, .lua_ytdl_raw_options = NULL, #endif .auto_load_scripts = 1, |