Density012
Existing tagssupermeufs-queers

Tipoui !

ContraPoints

Alistair - H Paradoxæ

Vivre Avec

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

declare -a list=("https://www.youtube.com/channel/UCRYbv2ywI_OPC_jgItF7ZQA/videos" "https://www.youtube.com/user/ContraPoints" "https://www.youtube.com/channel/UCREQUCvi8eBCuamHuwiH9eA/videos" "https://www.youtube.com/channel/UCH3Hp3WAm0iGQBi_csusoUg/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