Density012
Existing tagssupermeufs-queers

Bois

Couture

Laura Kampf

Comme un pingouin dans le désert

The Survival

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

declare -a list=("https://www.youtube.com/channel/UCRix1GJvSBNDpEFY561eSzw/videos" "https://www.youtube.com/channel/UC-jv9gy4kyBZUhFBHQGw72Q/videos" "https://www.youtube.com/channel/UCOtloDe4Ytw3X2v04uU91bA/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