summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorRicardo Constantino <wiiaboo@gmail.com>2020-10-25 01:26:06 +0000
committerRicardo Constantino <wiiaboo@gmail.com>2020-10-27 15:42:39 +0000
commit93f84b514a741c2001e6603d0304cd4a6ab63c73 (patch)
tree6840d66fd12d955ef2d8703e5c4be758406eea4a /player
parentc07089a250121c48223f86e79b03af6886e6ece6 (diff)
downloadmpv-93f84b514a741c2001e6603d0304cd4a6ab63c73.tar.bz2
mpv-93f84b514a741c2001e6603d0304cd4a6ab63c73.tar.xz
ytdl_hook: support alternative youtube-dl path
Allows using a youtube-dl not in PATH or a compatible fork of youtube-dl.
Diffstat (limited to 'player')
-rw-r--r--player/lua/ytdl_hook.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua
index 929e379a89..afe284c9da 100644
--- a/player/lua/ytdl_hook.lua
+++ b/player/lua/ytdl_hook.lua
@@ -8,16 +8,18 @@ local o = {
use_manifests = false,
all_formats = false,
force_all_formats = true,
+ ytdl_path = "youtube-dl",
}
local ytdl = {
- path = "youtube-dl",
+ path = nil,
searched = false,
blacklisted = {}
}
options.read_options(o, nil, function()
ytdl.blacklisted = {} -- reparse o.exclude next time
+ ytdl.searched = false
end)
local chapter_list = {}
@@ -690,7 +692,7 @@ function run_ytdl_hook(url)
-- check for youtube-dl in mpv's config dir
if not (ytdl.searched) then
local exesuf = (package.config:sub(1,1) == '\\') and '.exe' or ''
- local ytdl_mcd = mp.find_config_file("youtube-dl" .. exesuf)
+ local ytdl_mcd = mp.find_config_file(o.ytdl_path .. exesuf)
if not (ytdl_mcd == nil) then
msg.verbose("found youtube-dl at: " .. ytdl_mcd)
ytdl.path = ytdl_mcd