mirror of
https://github.com/ksyasuda/mpv-youtube-queue.git
synced 2024-11-22 03:19:54 -08:00
Compare commits
2 Commits
a77ad04f41
...
fdb02bc58d
Author | SHA1 | Date | |
---|---|---|---|
|
fdb02bc58d | ||
|
1211d68dcb |
@ -5,17 +5,14 @@
|
|||||||
-- YouTube 'Add To Queue' for mpv
|
-- YouTube 'Add To Queue' for mpv
|
||||||
--
|
--
|
||||||
-- Copyright (C) 2023 sudacode
|
-- Copyright (C) 2023 sudacode
|
||||||
|
|
||||||
-- This program is free software: you can redistribute it and/or modify
|
-- This program is free software: you can redistribute it and/or modify
|
||||||
-- it under the terms of the GNU General Public License as published by
|
-- it under the terms of the GNU General Public License as published by
|
||||||
-- the Free Software Foundation, either version 3 of the License, or
|
-- the Free Software Foundation, either version 3 of the License, or
|
||||||
-- (at your option) any later version.
|
-- (at your option) any later version.
|
||||||
|
|
||||||
-- This program is distributed in the hope that it will be useful,
|
-- This program is distributed in the hope that it will be useful,
|
||||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
-- GNU General Public License for more details.
|
-- GNU General Public License for more details.
|
||||||
|
|
||||||
-- You should have received a copy of the GNU General Public License
|
-- You should have received a copy of the GNU General Public License
|
||||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
local mp = require 'mp'
|
local mp = require 'mp'
|
||||||
@ -24,6 +21,8 @@ local YouTubeQueue = {}
|
|||||||
local video_queue = {}
|
local video_queue = {}
|
||||||
local current_video = nil
|
local current_video = nil
|
||||||
local index = 0
|
local index = 0
|
||||||
|
local selected_index = 1
|
||||||
|
local SLEEP_TIME = 1.5
|
||||||
|
|
||||||
local options = {
|
local options = {
|
||||||
add_to_queue = "ctrl+a",
|
add_to_queue = "ctrl+a",
|
||||||
@ -43,23 +42,17 @@ mp.options.read_options(options, "mpv-youtube-queue")
|
|||||||
-- HELPERS {{{
|
-- HELPERS {{{
|
||||||
|
|
||||||
-- print the name of the current video to the OSD
|
-- print the name of the current video to the OSD
|
||||||
local function print_video_name(video, time)
|
local function print_video_name(video, duration)
|
||||||
if not video then
|
if not video then return end
|
||||||
return
|
if not duration then duration = 2 end
|
||||||
end
|
mp.osd_message('Currently playing: ' .. video.name, duration)
|
||||||
if not time then
|
|
||||||
time = 2
|
|
||||||
end
|
|
||||||
mp.osd_message('Playing:' .. video.name, time)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Function to get the video name from a YouTube URL
|
-- Function to get the video name from a YouTube URL
|
||||||
local function get_video_name(url)
|
local function get_video_name(url)
|
||||||
local command = 'yt-dlp --get-title ' .. url
|
local command = 'yt-dlp --get-title ' .. url
|
||||||
local handle = io.popen(command)
|
local handle = io.popen(command)
|
||||||
if not handle then
|
if not handle then return nil end
|
||||||
return nil
|
|
||||||
end
|
|
||||||
local result = handle:read("*a")
|
local result = handle:read("*a")
|
||||||
handle:close()
|
handle:close()
|
||||||
return result:gsub("%s+$", "")
|
return result:gsub("%s+$", "")
|
||||||
@ -69,26 +62,15 @@ end
|
|||||||
|
|
||||||
-- QUEUE GETTERS AND SETTERS {{{
|
-- QUEUE GETTERS AND SETTERS {{{
|
||||||
|
|
||||||
function YouTubeQueue.size()
|
function YouTubeQueue.size() return #video_queue end
|
||||||
return #video_queue
|
|
||||||
end
|
|
||||||
|
|
||||||
function YouTubeQueue.get_current_index()
|
function YouTubeQueue.get_current_index() return index end
|
||||||
return index
|
|
||||||
end
|
|
||||||
|
|
||||||
function YouTubeQueue.get_video_queue()
|
function YouTubeQueue.get_video_queue() return video_queue end
|
||||||
return video_queue
|
|
||||||
end
|
|
||||||
|
|
||||||
function YouTubeQueue.set_current_index(idx)
|
function YouTubeQueue.set_current_index(idx) index = idx end
|
||||||
index = idx
|
|
||||||
end
|
|
||||||
|
|
||||||
function YouTubeQueue.get_current_video()
|
|
||||||
return current_video
|
|
||||||
end
|
|
||||||
|
|
||||||
|
function YouTubeQueue.get_current_video() return current_video end
|
||||||
|
|
||||||
function YouTubeQueue.get_video_at(idx)
|
function YouTubeQueue.get_video_at(idx)
|
||||||
if idx <= 0 or idx > #video_queue then
|
if idx <= 0 or idx > #video_queue then
|
||||||
@ -102,9 +84,7 @@ end
|
|||||||
|
|
||||||
-- QUEUE FUNCTIONS {{{
|
-- QUEUE FUNCTIONS {{{
|
||||||
|
|
||||||
function YouTubeQueue.add_to_queue(video)
|
function YouTubeQueue.add_to_queue(video) table.insert(video_queue, video) end
|
||||||
table.insert(video_queue, video)
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Function to get the next video in the queue
|
-- Function to get the next video in the queue
|
||||||
-- Returns nil if there are no videos in the queue
|
-- Returns nil if there are no videos in the queue
|
||||||
@ -133,17 +113,13 @@ function YouTubeQueue.play_video_at(idx)
|
|||||||
end
|
end
|
||||||
index = idx
|
index = idx
|
||||||
current_video = video_queue[index]
|
current_video = video_queue[index]
|
||||||
mp.commandv("loadfile", current_video.url, "append-play")
|
mp.msg.log("info", "Playing video at index " .. index)
|
||||||
mp.set_property_number("playlist-pos", index)
|
mp.set_property_number("playlist-pos", index - 1) -- zero-based index
|
||||||
return current_video
|
return current_video
|
||||||
end
|
end
|
||||||
|
|
||||||
function YouTubeQueue.is_in_queue(url)
|
function YouTubeQueue.is_in_queue(url)
|
||||||
for _, v in ipairs(video_queue) do
|
for _, v in ipairs(video_queue) do if v.url == url then return true end end
|
||||||
if v.url == url then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -169,26 +145,22 @@ function YouTubeQueue.on_end_file(event)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Function to be called when the track-changed event is triggered
|
-- Function to be called when the track-changed event is triggered
|
||||||
function YouTubeQueue.on_track_changed()
|
function YouTubeQueue.on_track_changed() YouTubeQueue.update_current_index() end
|
||||||
YouTubeQueue.update_current_index()
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Function to be called when the playback-restart event is triggered
|
-- Function to be called when the playback-restart event is triggered
|
||||||
function YouTubeQueue.on_playback_restart()
|
function YouTubeQueue.on_playback_restart() YouTubeQueue.update_current_index() end
|
||||||
YouTubeQueue.update_current_index()
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
function YouTubeQueue.print_queue(duration)
|
function YouTubeQueue.print_queue(duration)
|
||||||
local queue = YouTubeQueue.get_video_queue()
|
local queue = YouTubeQueue.get_video_queue()
|
||||||
local current_index = YouTubeQueue.get_current_index()
|
local current_index = YouTubeQueue.get_current_index()
|
||||||
if not duration then
|
if not duration then duration = 5 end
|
||||||
duration = 5
|
|
||||||
end
|
|
||||||
if #queue > 0 then
|
if #queue > 0 then
|
||||||
local message = ""
|
local message = ""
|
||||||
for i, v in ipairs(queue) do
|
for i, v in ipairs(queue) do
|
||||||
local prefix = (i == current_index) and "=> " or " "
|
local prefix = (i == current_index and i == selected_index) and
|
||||||
|
"=>> " or (i == current_index) and "=> " or
|
||||||
|
(i == selected_index) and "> " or " "
|
||||||
|
-- prefix = (i == selected_index) and prefix .. "> " or prefix
|
||||||
message = message .. prefix .. i .. ". " .. v.name .. "\n"
|
message = message .. prefix .. i .. ". " .. v.name .. "\n"
|
||||||
end
|
end
|
||||||
mp.osd_message(message, duration)
|
mp.osd_message(message, duration)
|
||||||
@ -204,51 +176,52 @@ end
|
|||||||
-- returns the content of the clipboard
|
-- returns the content of the clipboard
|
||||||
local function get_clipboard_content()
|
local function get_clipboard_content()
|
||||||
local handle = io.popen(options.clipboard_command)
|
local handle = io.popen(options.clipboard_command)
|
||||||
if not handle then
|
if not handle then return nil end
|
||||||
return nil
|
|
||||||
end
|
|
||||||
local result = handle:read("*a")
|
local result = handle:read("*a")
|
||||||
handle:close()
|
handle:close()
|
||||||
return result
|
return result
|
||||||
end
|
end
|
||||||
|
|
||||||
local function move_selection_up()
|
local function move_selection_up()
|
||||||
local current_index = YouTubeQueue.get_current_index()
|
-- selected_index = YouTubeQueue.get_current_index()
|
||||||
if current_index > 1 then
|
if selected_index > 1 then
|
||||||
current_index = current_index - 1
|
selected_index = selected_index - 1
|
||||||
YouTubeQueue.set_current_index(current_index)
|
|
||||||
YouTubeQueue.print_queue()
|
YouTubeQueue.print_queue()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function move_selection_down()
|
local function move_selection_down()
|
||||||
local current_index = YouTubeQueue.get_current_index()
|
-- selected_index = YouTubeQueue.get_current_index()
|
||||||
if current_index < YouTubeQueue.size() then
|
if selected_index < YouTubeQueue.size() then
|
||||||
current_index = current_index + 1
|
selected_index = selected_index + 1
|
||||||
YouTubeQueue.set_current_index(current_index)
|
-- YouTubeQueue.set_current_index(current_index)
|
||||||
YouTubeQueue.print_queue()
|
YouTubeQueue.print_queue()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function sleep(n) os.execute("sleep " .. tonumber(n)) end
|
||||||
|
|
||||||
local function play_selected_video()
|
local function play_selected_video()
|
||||||
local current_index = YouTubeQueue.get_current_index()
|
-- local current_index = YouTubeQueue.get_current_index()
|
||||||
YouTubeQueue.play_video_at(current_index)
|
local video = YouTubeQueue.play_video_at(selected_index)
|
||||||
|
YouTubeQueue.print_queue(SLEEP_TIME - 0.5)
|
||||||
|
sleep(SLEEP_TIME)
|
||||||
|
print_video_name(video, SLEEP_TIME)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- play the next video in the queue
|
-- play the next video in the queue
|
||||||
local function play_next_in_queue()
|
local function play_next_in_queue()
|
||||||
local next_video = YouTubeQueue.next_in_queue()
|
local next_video = YouTubeQueue.next_in_queue()
|
||||||
if not next_video then
|
if not next_video then return end
|
||||||
return
|
|
||||||
end
|
|
||||||
local next_video_url = next_video.url
|
local next_video_url = next_video.url
|
||||||
print_video_name(next_video)
|
|
||||||
if YouTubeQueue.size() > 1 then
|
if YouTubeQueue.size() > 1 then
|
||||||
mp.commandv("loadfile", next_video_url, "append-play")
|
mp.set_property_number("playlist-pos",
|
||||||
mp.set_property_number("playlist-pos", YouTubeQueue.get_current_index())
|
YouTubeQueue.get_current_index() - 1)
|
||||||
else
|
else
|
||||||
mp.commandv("loadfile", next_video_url, "replace")
|
mp.commandv("loadfile", next_video_url, "replace")
|
||||||
end
|
end
|
||||||
|
print_video_name(next_video, SLEEP_TIME)
|
||||||
|
sleep(SLEEP_TIME)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- add the video to the queue from the clipboard
|
-- add the video to the queue from the clipboard
|
||||||
@ -271,7 +244,6 @@ local function add_to_queue()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- play the previous video in the queue
|
-- play the previous video in the queue
|
||||||
local function play_previous_video()
|
local function play_previous_video()
|
||||||
local previous_video = YouTubeQueue.prev_in_queue()
|
local previous_video = YouTubeQueue.prev_in_queue()
|
||||||
@ -279,10 +251,9 @@ local function play_previous_video()
|
|||||||
mp.osd_message("No previous video available.")
|
mp.osd_message("No previous video available.")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
local previous_video_url = previous_video.url
|
mp.set_property_number("playlist-pos", YouTubeQueue.get_current_index() - 1)
|
||||||
print_video_name(previous_video)
|
print_video_name(previous_video, SLEEP_TIME)
|
||||||
mp.commandv("loadfile", previous_video_url, "append-play")
|
sleep(SLEEP_TIME)
|
||||||
mp.set_property_number("playlist-pos", YouTubeQueue.get_current_index())
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local function open_url_in_browser(url)
|
local function open_url_in_browser(url)
|
||||||
@ -290,13 +261,11 @@ local function open_url_in_browser(url)
|
|||||||
os.execute(command)
|
os.execute(command)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local function open_video_in_browser()
|
local function open_video_in_browser()
|
||||||
local current_url = mp.get_property("path")
|
local current_url = mp.get_property("path")
|
||||||
open_url_in_browser(current_url)
|
open_url_in_browser(current_url)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local function print_current_video()
|
local function print_current_video()
|
||||||
mp.osd_message("Currently playing " .. current_video.name, 3)
|
mp.osd_message("Currently playing " .. current_video.name, 3)
|
||||||
end
|
end
|
||||||
@ -304,18 +273,24 @@ end
|
|||||||
|
|
||||||
-- KEY BINDINGS {{{
|
-- KEY BINDINGS {{{
|
||||||
mp.add_key_binding(options.add_to_queue, "add_to_queue", add_to_queue)
|
mp.add_key_binding(options.add_to_queue, "add_to_queue", add_to_queue)
|
||||||
mp.add_key_binding(options.play_next_in_queue, "play_next_in_queue", play_next_in_queue)
|
mp.add_key_binding(options.play_next_in_queue, "play_next_in_queue",
|
||||||
mp.add_key_binding(options.play_previous_in_queue, "play_previous_video", play_previous_video)
|
play_next_in_queue)
|
||||||
|
mp.add_key_binding(options.play_previous_in_queue, "play_previous_video",
|
||||||
|
play_previous_video)
|
||||||
mp.add_key_binding(options.print_queue, "print_queue", YouTubeQueue.print_queue)
|
mp.add_key_binding(options.print_queue, "print_queue", YouTubeQueue.print_queue)
|
||||||
mp.add_key_binding(options.move_selection_up, "move_selection_up", move_selection_up)
|
mp.add_key_binding(options.move_selection_up, "move_selection_up",
|
||||||
mp.add_key_binding(options.move_selection_down, "move_selection_down", move_selection_down)
|
move_selection_up)
|
||||||
mp.add_key_binding(options.play_selected_video, "play_selected_video", play_selected_video)
|
mp.add_key_binding(options.move_selection_down, "move_selection_down",
|
||||||
mp.add_key_binding(options.open_video_in_browser, "open_video_in_browser", open_video_in_browser)
|
move_selection_down)
|
||||||
mp.add_key_binding(options.print_current_video, "print_current_video", print_current_video)
|
mp.add_key_binding(options.play_selected_video, "play_selected_video",
|
||||||
|
play_selected_video)
|
||||||
|
mp.add_key_binding(options.open_video_in_browser, "open_video_in_browser",
|
||||||
|
open_video_in_browser)
|
||||||
|
mp.add_key_binding(options.print_current_video, "print_current_video",
|
||||||
|
print_current_video)
|
||||||
|
|
||||||
-- Listen for the file-loaded event
|
-- Listen for the file-loaded event
|
||||||
mp.register_event("end-file", YouTubeQueue.on_end_file)
|
mp.register_event("end-file", YouTubeQueue.on_end_file)
|
||||||
mp.register_event("track-changed", YouTubeQueue.on_track_changed)
|
mp.register_event("track-changed", YouTubeQueue.on_track_changed)
|
||||||
mp.register_event("playback-restart", YouTubeQueue.on_playback_restart)
|
mp.register_event("playback-restart", YouTubeQueue.on_playback_restart)
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user