node module to download Podcasts from a RSS feed
$ npm install podcast-downloader
const podcast = require('podcast-downloader');
(async () => {
let episodes = await podcast("<Podcast RSS url...>", "Desktop/");
//download all episodes
await podcast("https://collegeinfogeek.com/podcast", "Desktop/",10);
// downloads the first 10 episodes from college info geek
})();
Downloads all episodes from the RSS feed, saves them inside the output folder
Returns a Promise
that holds an Array with all downloaded episodes and additional information.
Downloads episodes from the RSS feed until the limit is reached, saves them inside the output folder
Returns a Promise
that holds an Array with all downloaded episodes and additional information.
Type: string
Url to the podcast rss feed
Type: string
Where to save the videos.
Type: integer
limits the podcast downloads, if not defined, every episode in the feed will be downloaded
- node-podcast-parser - Node module to parse a podcast's RSS feed .
MIT © Julian Beck