summaryrefslogtreecommitdiff
path: root/util/music-dl
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
committerGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
commit4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch)
treec2a6751823e064e003cd4f6166df07bfc106d7eb /util/music-dl
Commit all to date.
Diffstat (limited to 'util/music-dl')
-rwxr-xr-xutil/music-dl14
1 files changed, 14 insertions, 0 deletions
diff --git a/util/music-dl b/util/music-dl
new file mode 100755
index 0000000..21d0358
--- /dev/null
+++ b/util/music-dl
@@ -0,0 +1,14 @@
+#!/bin/sh
+# Grab the audio track via yt-dlp, and place in the music folder.
+
+musicdir="/var/lib/mpd/music/yt-dlp"
+record="$musicdir/dlrecord"
+
+mkdir -p "$musicdir"
+
+notify-send "Downloading..." "Downloading $1"&
+yt-dlp "$1" --format bestaudio -P "$musicdir" -o "%(title)s.%(ext)s"
+echo "$1" >> "$record"
+notify-send "Song downloaded!" "$1 is now downloaded." &
+
+mpd update