-
-
Save laziel/06d76bef42f6c2859dc7d690948037de to your computer and use it in GitHub Desktop.
Download Youtube-Video in node.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http') | |
var fs = require('fs') | |
var argv = require('optimist').argv | |
var rxVideoID = /v=([\]\[!"#$%'()*+,.\/:;<=>?@\^_`{|}~-\w]*)/ | |
var link = argv._.toString() | |
var videoID = link.match(rxVideoID)[1] | |
http.get("http://www.youtube.com/get_video_info?video_id="+videoID, function(res) { | |
var chunks = [] | |
res.on('data', function(chunk){chunks.push(chunk) | |
}).on('end', function(){ | |
var data = Buffer.concat(chunks).toString() | |
var videoInfo = parseVideoInfo(data) | |
downloadVideo(videoInfo) | |
}) | |
}).on('error', function(e) { | |
console.log("Got error: " + e.message) | |
}); | |
function parseVideoInfo(videoInfo) { | |
var rxUrlMap = /url_encoded_fmt_stream_map=([\]\[!"#$%'()*+,.\/:;<=>?@\^_`{|}~-\w]*)/ | |
urlmap = unescape(videoInfo.match(rxUrlMap)[1]) | |
var rxUrlG = /url=([\]\[!"#$%'()*+,.\/:;<=>?@\^_`{|}~-\w]*)/g | |
var rxUrl = /url=([\]\[!"#$%'()*+,.\/:;<=>?@\^_`{|}~-\w]*)/ | |
var urls = urlmap.match(rxUrlG) | |
urls = map(urls, function(s) {return s.match(rxUrl)[1]} ) | |
urls = map(urls, unescape) | |
var rxTitle = /title=([\]\[!"#$%'()*+,.\/:;<=>?@\^_`{|}~-\w]*)/ | |
var title = argv.o ? argv.o : videoInfo.match(rxTitle)[1] | |
return { title: title, urls: urls } | |
} | |
function downloadVideo(videoInfo) { | |
var url = videoInfo.urls[0]; | |
var filename = videoInfo.title + ".flv" | |
http.get(url, | |
function(res) { | |
var stream = fs.createWriteStream(filename) | |
res.pipe(stream) | |
}) | |
console.log("Downloading to "+filename); | |
} | |
function map (a,f) { | |
for(i=0;i<a.length;i++){ | |
a[i]= f(a[i]) | |
} | |
return a | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment