From 7e6b37be07a433cca19309fc5ccfc762149301b6 Mon Sep 17 00:00:00 2001 From: Ricardo Constantino Date: Tue, 31 Jan 2017 18:22:57 +0000 Subject: ytdl_hook: Add non-dash fallbacks to default formats --- player/lua/ytdl_hook.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua index fba5100822..ddb699cb48 100644 --- a/player/lua/ytdl_hook.lua +++ b/player/lua/ytdl_hook.lua @@ -142,15 +142,15 @@ mp.add_hook("on_load", 10, function () if (mp.get_property("options/vid") == "no") and not option_was_set("ytdl-format") then - format = "bestaudio" + format = "bestaudio/best" msg.verbose("Video disabled. Only using audio") end if (format == "") then - format = "bestvideo+bestaudio" + format = "bestvideo+bestaudio/best" end table.insert(command, "--format") - table.insert(command, string.format('%s', format)) + table.insert(command, format) for param, arg in pairs(raw_options) do table.insert(command, "--" .. param) -- cgit v1.2.3