mirror of
https://github.com/TangentFoxy/.lua-files.git
synced 2024-11-20 21:34:23 +00:00
Merge branch 'main' of https://github.com/TangentFoxy/.lua-files
This commit is contained in:
commit
bb17d100d2
24
video-dl.lua
24
video-dl.lua
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
local help = [[Usage:
|
local help = [[Usage:
|
||||||
|
|
||||||
video-dl.lua [action] <url>
|
video-dl.lua [action] [--file] <url>
|
||||||
|
|
||||||
[action]: What is desired.
|
[action]: What is desired.
|
||||||
video (default): Highest quality video (maximum 720p).
|
video (default): Highest quality video (maximum 720p).
|
||||||
@ -12,6 +12,8 @@ local help = [[Usage:
|
|||||||
music, audio: Highest quality audio only.
|
music, audio: Highest quality audio only.
|
||||||
metadata, meta: English subtitles (including automatic
|
metadata, meta: English subtitles (including automatic
|
||||||
subtitles), thumbnail, description.
|
subtitles), thumbnail, description.
|
||||||
|
[--file]: <url> is actually a file of URLs to open and execute [action]
|
||||||
|
on each.
|
||||||
<url>: Source. YouTube URL expected, but should work with anything
|
<url>: Source. YouTube URL expected, but should work with anything
|
||||||
yt-dlp works with.
|
yt-dlp works with.
|
||||||
]]
|
]]
|
||||||
@ -32,19 +34,20 @@ if #arg < 2 then
|
|||||||
else
|
else
|
||||||
action = arg[1]
|
action = arg[1]
|
||||||
url = arg[2]
|
url = arg[2]
|
||||||
|
-- "--file" is handled just before execution
|
||||||
end
|
end
|
||||||
|
|
||||||
local execute = {
|
local execute = {
|
||||||
backup = function()
|
backup = function(url)
|
||||||
os.execute("yt-dlp --retries 100 --write-sub --write-auto-sub --sub-lang \"en.*\" --write-thumbnail --write-description -f \"bestvideo[height<=720]+bestaudio/best[height<=720]\" \"" .. url .."\"")
|
os.execute("yt-dlp --retries 100 --write-sub --write-auto-sub --sub-lang \"en.*\" --write-thumbnail --write-description -f \"bestvideo[height<=720]+bestaudio/best[height<=720]\" \"" .. url .."\"")
|
||||||
end,
|
end,
|
||||||
music = function()
|
music = function(url)
|
||||||
os.execute("yt-dlp --retries 100 -x --audio-quality 0 \"" .. url .."\"")
|
os.execute("yt-dlp --retries 100 -x --audio-quality 0 \"" .. url .."\"")
|
||||||
end,
|
end,
|
||||||
metadata = function()
|
metadata = function(url)
|
||||||
os.execute("yt-dlp --retries 100 --write-sub --write-auto-sub --sub-lang \"en.*\" --write-thumbnail --write-description --skip-download \"" .. url .."\"")
|
os.execute("yt-dlp --retries 100 --write-sub --write-auto-sub --sub-lang \"en.*\" --write-thumbnail --write-description --skip-download \"" .. url .."\"")
|
||||||
end,
|
end,
|
||||||
video = function()
|
video = function(url)
|
||||||
os.execute("yt-dlp --retries 100 -f \"bestvideo[height<=720]+bestaudio/best[height<=720]\" \"" .. url .. "\"")
|
os.execute("yt-dlp --retries 100 -f \"bestvideo[height<=720]+bestaudio/best[height<=720]\" \"" .. url .. "\"")
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
@ -54,8 +57,17 @@ execute.audio = execute.music
|
|||||||
execute.meta = execute.metadata
|
execute.meta = execute.metadata
|
||||||
|
|
||||||
if execute[action] then
|
if execute[action] then
|
||||||
execute[action]()
|
if url == "--file" then
|
||||||
|
pcall(function()
|
||||||
|
for line in io.lines(arg[3]) do
|
||||||
|
execute[action](line)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
else
|
||||||
|
execute[action](url)
|
||||||
|
end
|
||||||
else
|
else
|
||||||
print("Invalid [action]")
|
print("Invalid [action]")
|
||||||
print("Received:", "action", action, "url", url)
|
print("Received:", "action", action, "url", url)
|
||||||
|
return false
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user