yt-songs
v1.0.1
Published
Download songs from YouTube fast and easy
Downloads
2
Readme
youtube-downloader
Download songs from youtube, fast and easy!
Example
const yt = require('youtube-downloader');
const fs = require('fs');
yt.convertVideo('https://www.youtube.com/watch?v=OjKGrF9nXv8').then( (res) => {
res.pipe(fs.createWriteStream('./song.mp3'))
})