README
Welcome to playlist-downloader 👋
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