Density012
Existing tagssupermeufs-queers

Ghostroyce

Chris Ramsay

Use this to download this category as MP3 with youtube-dl:

declare -a list=("https://www.youtube.com/user/Ghostroyce/videos" "https://www.youtube.com/user/MrTricksforfun/videos")

for val in ${list[@]}; do
name=$(basename "$val")
if [ -e $name ]
then
continue
fi

mkdir $name
cd $name
youtube-dl -f mp3-128 $val
cd ..
done