1.0.7 ā€¢ Published 5 years ago

playlist-mp3-stream-downloader v1.0.7

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

Download youtube playlists and get a stream for each video as .mp3 file

const downloader = new PlaylistStreamDownloader(youtubeApiKey, tempFileDirectory);
const downloads = await downloader.downloadPlaylist(playlistId);

for(let download of downloads){
    const {stream, filePath, metadata, position, thumbnail} = download;
    //...
    download.dispose(); //Remove generated file
}

Install

npm i playlist-mp3-stream-downloader

Run tests

npm run test

Author

šŸ‘¤ Chaily

Show your support

Give a ā­ļø if this project helped you!


This README was generated with ā¤ļø by readme-md-generator