summaryrefslogtreecommitdiffstats
path: root/player/lua/ytdl_hook.lua
diff options
context:
space:
mode:
Diffstat (limited to 'player/lua/ytdl_hook.lua')
-rw-r--r--player/lua/ytdl_hook.lua6
1 files 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)