youtube-mp3
v0.1.2
Published
Download Youtube videos as mp3 using http://youtube-mp3.org
Downloads
10
Readme
youtube-mp3
Download the audio from Youtube videos as mp3 file. This module uses youtube-mp3.org for the conversion.
Usage
var mp3 = require('youtube-mp3');
mp3.download('https://www.youtube.com/watch?v=bRmSMdQnfAc', 'LXJS 2013 Keynote', function(err) {
if(err) return console.log(err);
console.log('Download completed!');
});