mirror of
https://github.com/ksyasuda/mpv-youtube-queue.git
synced 2024-11-22 03:19:54 -08:00
Compare commits
No commits in common. "fa2014acd681c35a0027e8b13ae67ba27d24aca1" and "cfc4f94464e226b63a3ffd581659434a7ac47009" have entirely different histories.
fa2014acd6
...
cfc4f94464
@ -81,7 +81,6 @@ This script requires the following software to be installed on the system
|
||||
- `font_size - 12`: Size of the font
|
||||
- `marked_icon - ⇅`: The icon to use to mark a video as ready to be moved in
|
||||
the queue
|
||||
- `menu_timeout - 5`: The number of seconds until the menu times out
|
||||
- `show_errors - yes`: Show error messages on the OSD
|
||||
- `ytdlp_file_format - mp4`: The preferred file format for downloaded videos
|
||||
- `ytdlp_output_template - %(uploader)s/%(title)s.%(ext)s`: The [yt-dlp output
|
||||
|
@ -22,7 +22,6 @@ downloader=curl
|
||||
font_name=JetBrains Mono
|
||||
font_size=12
|
||||
marked_icon=⇅
|
||||
menu_timeout=5
|
||||
show_errors=yes
|
||||
ytdlp_file_format=mp4
|
||||
ytdlp_output_template=%(uploader)s/%(title)s.%(ext)s
|
||||
|
@ -19,16 +19,6 @@ local utils = require 'mp.utils'
|
||||
local assdraw = require 'mp.assdraw'
|
||||
local styleOn = mp.get_property("osd-ass-cc/0")
|
||||
local styleOff = mp.get_property("osd-ass-cc/1")
|
||||
local YouTubeQueue = {}
|
||||
local video_queue = {}
|
||||
local MSG_DURATION = 1.5
|
||||
local index = 0
|
||||
local selected_index = 1
|
||||
local display_offset = 0
|
||||
local marked_index = nil
|
||||
local current_video = nil
|
||||
local destroyer = nil
|
||||
local timeout
|
||||
|
||||
local options = {
|
||||
add_to_queue = "ctrl+a",
|
||||
@ -55,21 +45,13 @@ local options = {
|
||||
font_name = "JetBrains Mono",
|
||||
font_size = 12,
|
||||
marked_icon = "⇅",
|
||||
menu_timeout = 5,
|
||||
show_errors = true,
|
||||
ytdlp_file_format = "mp4",
|
||||
ytdlp_output_template = "%(uploader)s/%(title)s.%(ext)s"
|
||||
}
|
||||
|
||||
mp.options.read_options(options, "mpv-youtube-queue")
|
||||
|
||||
local function destroy()
|
||||
timeout:kill()
|
||||
mp.set_osd_ass(0, 0, "")
|
||||
destroyer = nil
|
||||
end
|
||||
|
||||
timeout = mp.add_periodic_timer(options.menu_timeout, destroy)
|
||||
|
||||
-- STYLE {{{
|
||||
local colors = {
|
||||
error = "676EFF",
|
||||
@ -101,6 +83,26 @@ local style = {
|
||||
}
|
||||
-- }}}
|
||||
|
||||
local YouTubeQueue = {}
|
||||
local video_queue = {}
|
||||
local MSG_DURATION = 1.5
|
||||
local display_limit = options.display_limit
|
||||
local index = 0
|
||||
local selected_index = 1
|
||||
local display_offset = 0
|
||||
local marked_index = nil
|
||||
local current_video = nil
|
||||
local destroyer = nil
|
||||
local timeout
|
||||
|
||||
local function destroy()
|
||||
timeout:kill()
|
||||
mp.set_osd_ass(0, 0, "")
|
||||
destroyer = nil
|
||||
end
|
||||
|
||||
timeout = mp.add_periodic_timer(5, destroy)
|
||||
|
||||
-- HELPERS {{{
|
||||
-- surround string with single quotes if it does not already have them
|
||||
local function surround_with_quotes(s)
|
||||
@ -213,29 +215,25 @@ function YouTubeQueue.get_clipboard_content()
|
||||
end
|
||||
|
||||
function YouTubeQueue.get_video_info(url)
|
||||
local res = mp.command_native({
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
args = {
|
||||
"yt-dlp", "--print", "channel_url", "--print", "uploader",
|
||||
"--print", "title", "--playlist-items", "1", url
|
||||
}
|
||||
})
|
||||
local command =
|
||||
'yt-dlp --print channel_url --print uploader --print title --playlist-items 1 ' ..
|
||||
surround_with_quotes(url)
|
||||
local handle = io.popen(command)
|
||||
if handle == nil then return nil, nil, nil end
|
||||
|
||||
if res.status ~= 0 then
|
||||
print_osd_message("Failed to get video info", MSG_DURATION, style.error)
|
||||
return nil
|
||||
end
|
||||
local result = handle:read("*a")
|
||||
handle:close()
|
||||
|
||||
local channel_url, uploader, title = res.stdout:match("(.*)\n(.*)\n(.*)\n")
|
||||
if channel_url == nil or uploader == nil or title == nil or channel_url ==
|
||||
"" or uploader == "" or title == "" then
|
||||
print_osd_message("Failed to get video info", MSG_DURATION, style.error)
|
||||
return nil
|
||||
end
|
||||
-- Split the result into URL, name, and video title
|
||||
local channel_url, channel_name, video_name = result:match(
|
||||
"(.-)\n(.-)\n(.*)")
|
||||
|
||||
return channel_url, uploader, title
|
||||
-- Remove trailing whitespace
|
||||
if channel_url ~= nil then channel_url = channel_url:gsub("%s+$", "") end
|
||||
if channel_name ~= nil then channel_name = channel_name:gsub("%s+$", "") end
|
||||
if video_name ~= nil then video_name = video_name:gsub("%s+$", "") end
|
||||
|
||||
return channel_url, channel_name, video_name
|
||||
end
|
||||
|
||||
function YouTubeQueue.print_current_video()
|
||||
@ -345,10 +343,9 @@ function YouTubeQueue.print_queue(duration)
|
||||
local ass = assdraw.ass_new()
|
||||
local current_index = index
|
||||
if #video_queue > 0 then
|
||||
local start_index = math.max(1,
|
||||
selected_index - options.display_limit / 2)
|
||||
local end_index = math.min(#video_queue,
|
||||
start_index + options.display_limit - 1)
|
||||
local start_index = math.max(1, selected_index - display_limit / 2)
|
||||
local end_index =
|
||||
math.min(#video_queue, start_index + display_limit - 1)
|
||||
display_offset = start_index - 1
|
||||
|
||||
ass:append(
|
||||
@ -408,7 +405,7 @@ function YouTubeQueue.move_cursor(amt)
|
||||
if amt == 1 and selected_index > 1 and selected_index < display_offset + 1 then
|
||||
display_offset = display_offset - math.abs(selected_index - amt)
|
||||
elseif amt == -1 and selected_index < #video_queue and selected_index >
|
||||
display_offset + options.display_limit then
|
||||
display_offset + display_limit then
|
||||
display_offset = display_offset + math.abs(selected_index - amt)
|
||||
end
|
||||
YouTubeQueue.print_queue()
|
||||
@ -478,7 +475,6 @@ function YouTubeQueue.add_to_queue(url, update_internal_playlist)
|
||||
(channel_url == "" or channel_name == "" or video_name == "") then
|
||||
print_osd_message("Error getting video info.", MSG_DURATION,
|
||||
style.error)
|
||||
return
|
||||
else
|
||||
video = {
|
||||
video_url = url,
|
||||
@ -493,7 +489,6 @@ function YouTubeQueue.add_to_queue(url, update_internal_playlist)
|
||||
video_name == "" then
|
||||
print_osd_message("Error getting video info.", MSG_DURATION,
|
||||
style.error)
|
||||
return
|
||||
end
|
||||
video = {
|
||||
video_url = url,
|
||||
@ -528,6 +523,7 @@ function YouTubeQueue.download_video_at(idx)
|
||||
|
||||
print_osd_message("Downloading " .. v.video_name .. "...", MSG_DURATION)
|
||||
-- Run the download command
|
||||
-- local handle = io.popen(command)
|
||||
mp.command_native_async({
|
||||
name = "subprocess",
|
||||
capture_stderr = true,
|
||||
@ -629,5 +625,4 @@ mp.register_event("playback-restart", on_playback_restart)
|
||||
|
||||
mp.register_script_message("add_to_queue", YouTubeQueue.add_to_queue)
|
||||
mp.register_script_message("print_queue", YouTubeQueue.print_queue)
|
||||
mp.register_script_message("toggle_youtube_queue", toggle_print)
|
||||
-- }}}
|
||||
|
Loading…
Reference in New Issue
Block a user