mirror of
https://github.com/ksyasuda/mpv-youtube-queue.git
synced 2024-11-22 03:19:54 -08:00
add error handling for is_valid_ytdlp_url
This commit is contained in:
parent
e2e4d2ddd5
commit
b8ef352bf5
@ -71,9 +71,10 @@ end
|
|||||||
|
|
||||||
local function is_valid_ytdlp_url(url)
|
local function is_valid_ytdlp_url(url)
|
||||||
local command = 'yt-dlp --simulate \'' .. url .. '\' >/dev/null 2>&1'
|
local command = 'yt-dlp --simulate \'' .. url .. '\' >/dev/null 2>&1'
|
||||||
mp.msg.log("info", "Checking if URL is valid: " .. command)
|
|
||||||
local handle = io.popen(command .. "; echo $?")
|
local handle = io.popen(command .. "; echo $?")
|
||||||
|
if not handle then return false end
|
||||||
local result = handle:read("*a")
|
local result = handle:read("*a")
|
||||||
|
if not result then return false end
|
||||||
handle:close()
|
handle:close()
|
||||||
return result:gsub("%s+$", "") == "0"
|
return result:gsub("%s+$", "") == "0"
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user