blob: 39e6ac0402c6bcc87bf4a4adbc07c593424f790c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env bash
cd ~/Downloads/music/untagged;
~/scripts/notify.sh "Downloading audio in the background...";
youtube-dl \
--add-metadata \
--ignore-errors \
--output '%(title)s.%(ext)s' \
--extract-audio \
--yes-playlist \
"$QUTE_URL";
~/scripts/notify.sh "Download complete";
|