diff options
Diffstat (limited to '.scripts/audio_dl.sh')
-rwxr-xr-x | .scripts/audio_dl.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.scripts/audio_dl.sh b/.scripts/audio_dl.sh new file mode 100755 index 0000000..8e6c9eb --- /dev/null +++ b/.scripts/audio_dl.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +FILE=$@ +LINES=$(cat $FILE) + +counter=1 +for line in $LINES; do + youtube-dl -x --audio-format mp3 "https://www.youtube.com/watch?v=$line" || echo "$line" >> "$FILE""_failed" + counter=$((counter+1)) + tail -n "+$counter" "$FILE" > "$FILE""_remaining" +done +rm "$FILE""_remaining" |