Package Exports
- youtube-mp3
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (youtube-mp3) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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!');
});