Welcome to the Podcast Parser for NodeJS.
With this module, you can download a podcast feed to a object.
$ npm install podcast-parser --save
var podcastParser = require('podcast-parser');
// podcastParser.execute(url, options, callback)
podcastParser.execute(
'http://feeds.serialpodcast.org/serialpodcast',
{},
function (err, res) {
if (err) {
console.log(err);
return;
}
console.log(res);
});
// podcastParser.download(url, callback)
podcastParser.download(
'http://feeds.serialpodcast.org/serialpodcast',
function (err, res) {
if (err) {
console.log(err);
return;
}
console.log(res);
});
// podcastParser.download(url, options, callback)
podcastParser.download(
'http://feeds.serialpodcast.org/serialpodcast',
{ timeout: 60 },
function (err, res) {
if (err) {
console.log(err);
return;
}
console.log(res);
});
// podcastParser.parse(xml, options, callback)
podcastParser.parse(
'<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel>' +
'<title>Nerdcast – Jovem Nerd</title><item><title>Nerdcast 514 ' +
'– Turistas Babacas 2</title><enclosure' +
' url="https://jovemnerd.com.br/podpress_trac/feed/148003/0/nc514.mp3"' +
' length="73512785" type="audio/mpeg" /></item></rss>',
{},
function (err, res) {
if (err) {
console.log(err);
return;
}
console.log(res);
});
Given the feed url, returns the object representation of the feed
- String 'url': The podcast's feed.
- Object 'options': The options passed to podcast parser method.
- String 'dateAs': How will handle the dates (mainly the pubDate) (default:
string
)string
: return asstring
:Fri, 29 Apr 2016 06:27:42 +0000
array
: return asarray
:[ 2016, 3, 29, 6, 27, 42 ]
number
: return asnumber
:20160329062742
date
: return asDate
:new Date(2016, 3, 29, 6, 27, 42)
- String 'timeAs': How will handle the times (mainly the duration) (default:
string
)string
: return asstring
:1:41:56
array
: return asarray
:[ 1, 41, 56 ]
number
: return asnumber
:14156
- number 'timeout': will give timeout on waiting for the download. (default:
string
)
- String 'dateAs': How will handle the dates (mainly the pubDate) (default:
- Function 'callback': The callback function.
Download the feed from the URL
- String 'url': The podcast's feed.
- Object 'options': The options passed to podcast parser method.
- number 'timeout': will give timeout on waiting for the download. (default:
string
)
- number 'timeout': will give timeout on waiting for the download. (default:
- Function 'callback': The callback function.
Parse to a object, the representation of the feed
- String 'xml': The podcast's feed xml.
- Object 'options': The options passed to podcast parser method.
- String 'dateAs': How will handle the dates (mainly the pubDate) (default:
string
)string
: return asstring
:Fri, 29 Apr 2016 06:27:42 +0000
array
: return asarray
:[ 2016, 3, 29, 6, 27, 42 ]
number
: return asnumber
:20160329062742
date
: return asDate
:new Date(2016, 3, 29, 6, 27, 42)
- String 'timeAs': How will handle the times (mainly the duration) (default:
string
)string
: return asstring
:1:41:56
array
: return asarray
:[ 1, 41, 56 ]
number
: return asnumber
:14156
- String 'dateAs': How will handle the dates (mainly the pubDate) (default:
- Function 'callback': The callback function.