mirror of
https://github.com/ksyasuda/mpv-youtube-queue.git
synced 2024-10-28 04:44:11 -07:00
* Fix reorder queue function for when from_index < to_index * update default config * Fix clipboard function and linting errors * Update README.md with improved descriptions and installation instructions
This commit is contained in:
parent
84a860f596
commit
870f7473cf
40
README.md
40
README.md
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
A Lua script that implements the YouTube 'Add to Queue' functionality for mpv
|
A Lua script that replicates and extends the YouTube "Add to Queue" feature for mpv
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -10,38 +10,28 @@ A Lua script that implements the YouTube 'Add to Queue' functionality for mpv
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Add videos to a queue from the clipboard
|
- **Interactive Queue Management:** A menu-driven interface for adding, removing, and rearranging videos in your queue
|
||||||
- Works with links from any site
|
- **yt-dlp Integration:** Works with any link supported by [yt-dlp](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md "yd-dlp supported sites page") and supports downloading a supported video in the queue
|
||||||
[supported by yt-dlp](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md "yd-dlp supported sites page")
|
- **Internal Playlist Integration:** Seamlessly integrates with mpv's internal playlist for a unified playback experience
|
||||||
- An interactive menu to show the queue, to select a video to play, or to edit the order of the queue
|
- **Customizable Keybindings:** Assign your preferred hotkeys to interact with the currently playing video and queue
|
||||||
- Customizable keybindings to interact with the currrently playing video and the
|
|
||||||
queue
|
|
||||||
- Open the URL or channel page of the currently playing video in a new browser tab
|
|
||||||
- Download a video in the queue using yt-dlp
|
|
||||||
- Customizable download options
|
|
||||||
- Integrates with the internal mpv playlist
|
|
||||||
|
|
||||||
## Notes
|
|
||||||
|
|
||||||
- This script uses the Linux `xclip` utility to read from the clipboard.
|
|
||||||
If you're on macOS or Windows, you'll need to adjust the `clipboard_command`
|
|
||||||
config variable in [mpv-youtube-queue.conf](./mpv-youtube-queue.conf)
|
|
||||||
- When adding videos to the queue, the script fetches the video name using
|
|
||||||
`yt-dlp`. Ensure you have `yt-dlp` installed and in your PATH.
|
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
This script requires the following software to be installed on the system
|
This script requires the following software to be installed on the system
|
||||||
|
|
||||||
- [xclip](https://github.com/astrand/xclip)
|
- One of [xclip](https://github.com/astrand/xclip), [wl-clipboard](https://github.com/bugaevc/wl-clipboard), or any command-line utility that can paste from the system clipboard
|
||||||
|
- Windows users can utilize `Get-Clipboard` from powershell by setting the `clipboard_command` in `mpv-youtube-queue.conf` file to the following: `clipboard_command=powershell -command Get-Clipboard`
|
||||||
- [yt-dlp](https://github.com/yt-dlp/yt-dlp)
|
- [yt-dlp](https://github.com/yt-dlp/yt-dlp)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
- Copy the `mpv-youtube-queue.lua` script to your `~~/scripts` directory
|
- Copy `mpv-youtube-queue.lua` script to your `~~/scripts` directory
|
||||||
(`~/.config/mpv` on Linux)
|
- `~/.config/mpv/scripts` on Linux
|
||||||
- Optionally copy the `mpv-youtube-queue.conf` to the `~~/script-opts` directory
|
- `%APPDATA%\mpv\scripts` on Windows
|
||||||
to customize the script configuration as described in the next section
|
- Optionally copy `mpv-youtube-queue.conf` to the `~~/script-opts` directory
|
||||||
|
- `~/.config/mpv/script-opts` on Linux
|
||||||
|
- `%APPDATA%\mpv\script-opts` on Windows
|
||||||
|
to customize the script configuration as described in the next section
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
@ -67,7 +57,7 @@ This script requires the following software to be installed on the system
|
|||||||
- `play_selected_video - ctrl+ENTER`: Play the currently selected video in
|
- `play_selected_video - ctrl+ENTER`: Play the currently selected video in
|
||||||
the queue
|
the queue
|
||||||
|
|
||||||
### Default Option
|
### Default Options
|
||||||
|
|
||||||
- `browser - firefox`: The browser to use when opening a video or channel page
|
- `browser - firefox`: The browser to use when opening a video or channel page
|
||||||
- `clipboard_command - xclip -o`: The command to use to get the contents of the clipboard
|
- `clipboard_command - xclip -o`: The command to use to get the contents of the clipboard
|
||||||
|
@ -19,7 +19,7 @@ display_limit=10
|
|||||||
download_directory=~/videos/YouTube
|
download_directory=~/videos/YouTube
|
||||||
download_quality=720p
|
download_quality=720p
|
||||||
downloader=curl
|
downloader=curl
|
||||||
font_name=JetBrains Mono
|
font_name=JetBrainsMono
|
||||||
font_size=12
|
font_size=12
|
||||||
marked_icon=⇅
|
marked_icon=⇅
|
||||||
menu_timeout=5
|
menu_timeout=5
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user