Density012
Existing tagssupermeufs-queers

LockPickingLawyer

The Moderne Rogue

Mark Rober

Créer sa radio de A à Z - Série Tutos

Workshopping the visible

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

declare -a list=("https://www.youtube.com/channel/UCm9K6rby98W8JigLoZOh6FQ/videos" "https://www.youtube.com/channel/UC42VsoDtra5hMiXZSsD6eGg/videos" "https://www.youtube.com/user/onemeeeliondollars/videos" "https://www.youtube.com/channel/UCXxIKmGWbaPfToaCpTB1uwQ/videos" "https://vimeo.com/ouvresa")

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