ohnx / youtube-mp3

npm module for downloading a youtube video as mp3 file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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!');
});

About

npm module for downloading a youtube video as mp3 file


Languages

Language:JavaScript 100.0%