Use this to download this category as MP3 with youtube-dl:
declare -a list=("https://www.youtube.com/channel/UCsnRkRtbTyISkfGTGwM7VfQ/videos" "https://www.youtube.com/channel/UC8ZYMrDhyqgfq1xn-tf5w-A/videos" "https://www.youtube.com/user/worldunicycletour/videos" "https://www.youtube.com/channel/UCJlvyoYGLr3UIV0oD4-aarA/videos" "https://www.youtube.com/c/owlaps/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