代码改变世界

download youtube video

2015-05-28 13:58  Jack King  阅读(811)  评论(0编辑  收藏  举报

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 1`
    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 < $1

(3) ./run.sh videolist.txt