using youtube-dl to download youtube video:
(1) sudo apt-get install youtube-dl
(2) run.sh
#!/bin/bash while read line
do
name=`echo $line| cut -d' ' -f `
echo Download from file: $name
youtube-dl $name -i -c -o './video/%(id)s.%(ext)s' -u mv.ss.is.user@gmail.com -p mvssisuser done < $
(3) ./run.sh videolist.txt