jwztv music video scraper

This commit is contained in:
2022-01-09 03:56:45 -08:00
parent 0adabd3efe
commit 94b5cae9ae
683 changed files with 271575 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
set -x
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
INPUTFILE="$DIR/all.txt"
DESTDIR="/Volumes/EXT/tmp/jwztv-youtube-scrape"
while IFS= read -r SEARCHTERM; do
cd $DESTDIR
yt-dlp "ytsearch:$SEARCHTERM"
done < "$INPUTFILE"