JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8
  • Score
    100M100P100Q59278F
  • License BSD-2-Clause

Download Youtube videos as mp3 using http://youtube-mp3.org

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