[cliplumber] Add mpd youtube song queueing
This commit is contained in:
parent
caf0570284
commit
980b6d5d0d
2 changed files with 66 additions and 0 deletions
|
@ -33,6 +33,7 @@ if [ -n "$urls" ] && check_exists "yt-dlp"; then
|
||||||
check_exists "lncrawl" && opts="crawl|$opts"
|
check_exists "lncrawl" && opts="crawl|$opts"
|
||||||
else
|
else
|
||||||
check_exists "mpv" && opts="play|low-play|$opts"
|
check_exists "mpv" && opts="play|low-play|$opts"
|
||||||
|
check_exists "mpc" && opts="queue|$opts"
|
||||||
opts="download|$opts"
|
opts="download|$opts"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -74,6 +75,10 @@ case "$choice" in
|
||||||
"low-play")
|
"low-play")
|
||||||
playvideo -l "$clip"
|
playvideo -l "$clip"
|
||||||
;;
|
;;
|
||||||
|
"queue")
|
||||||
|
out="$(mpdurlqueue "$urls" 2>&1)" && notify-send "cliplumber" "stream queued"
|
||||||
|
printf "%s" "$out" | grep "ERROR:" | notify_err
|
||||||
|
;;
|
||||||
"audio-search")
|
"audio-search")
|
||||||
"$TERM_EMU" --single-instance mpv --ytdl-format=bestaudio ytdl://ytsearch:"$clip"
|
"$TERM_EMU" --single-instance mpv --ytdl-format=bestaudio ytdl://ytsearch:"$clip"
|
||||||
;;
|
;;
|
||||||
|
|
61
bin/mpdurlqueue
Executable file
61
bin/mpdurlqueue
Executable file
|
@ -0,0 +1,61 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
"""
|
||||||
|
A simple script to pipe URIs through yt-dlp and mpd
|
||||||
|
|
||||||
|
Credit: https://gist.github.com/phaer/86bdcc3fb59cd3fcd9534bfe84d9fe5f
|
||||||
|
"""
|
||||||
|
import sys
|
||||||
|
import mpd
|
||||||
|
import yt_dlp
|
||||||
|
|
||||||
|
mpd_host = ('localhost', 6600)
|
||||||
|
ydl_opts = {
|
||||||
|
'format': 'bestaudio/audio',
|
||||||
|
'quiet': True,
|
||||||
|
}
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
if len(sys.argv) != 2:
|
||||||
|
print("usage: {} <url>".format(sys.argv[0]), file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
source_url = sys.argv[1]
|
||||||
|
client = mpd.MPDClient()
|
||||||
|
|
||||||
|
with yt_dlp.YoutubeDL(ydl_opts) as ydl:
|
||||||
|
try:
|
||||||
|
info = ydl.extract_info(source_url, process=False, download=False)
|
||||||
|
except yt_dlp.utils.DownloadError:
|
||||||
|
# Don't print anything, yt-dlp is already on it
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
if info.get("_type") is not None and info.get("_type") == "playlist":
|
||||||
|
print("Queuing playlists not supported yet.", file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
info = ydl.process_ie_result(info, download=False)
|
||||||
|
url = info.get('url')
|
||||||
|
title = info.get('title')
|
||||||
|
source = info.get('extractor_key')
|
||||||
|
|
||||||
|
# This info is only available for songs
|
||||||
|
# that have been tagged as such on youtube
|
||||||
|
artist = info.get('artist')
|
||||||
|
|
||||||
|
if not (url and title and source):
|
||||||
|
print("youtube-dl error.", file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
client.connect(*mpd_host)
|
||||||
|
|
||||||
|
# Get current playing song index and then append the stream just after
|
||||||
|
# This is analogous to `mpc insert <song>`
|
||||||
|
pos = int(client.status()["song"])
|
||||||
|
song_id = client.addid(url, pos + 1)
|
||||||
|
|
||||||
|
client.addtagid(song_id, 'title', title)
|
||||||
|
client.addtagid(song_id, 'album', source)
|
||||||
|
if artist is not None:
|
||||||
|
client.addtagid(song_id, 'artist', artist)
|
||||||
|
|
||||||
|
client.disconnect()
|
Loading…
Reference in a new issue