podcastgen

0.1.0 • Public • Published

podcastgen

generate itunes-compatible podcasts from cson or json

example

example/jsdfpodcast.cson:

title: "jsdf podcast",
baseUrl: "http://files.ktfr.net/podcast/",
podcastUrl: "http://files.ktfr.net/podcast/podcast.xml",
items: [
  {
    title: "cashmere cat mix",
    path: "cashmere.mp3"# relative from baseUrl 
    date: "Mon, 3 Mar 2014 00:00:00 +1100"# RFC 2822 formatted date 
  },
  {
    title: "jacques greene mix",
    path: "LWEPodcast198JacquesGreene.mp3",
    date: "Mon, 14 Apr 2014 00:00:00 +1100"
  }
]

run it:

podcastgen example/jsdfpodcast.cson > podcast.xml

podcast.xml:

<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
<channel>
  <atom:link href="http://files.ktfr.net/podcast/podcast.xml" rel="self" type="application/xml"/>
  <title>jsdf podcast</title>
  <item>
    <title>cashmere cat mix</title>
    <media:content url="http://files.ktfr.net/podcast/cashmere.mp3" type="audio/mpeg" medium="audio" expression="full"/>
    <enclosure url="http://files.ktfr.net/podcast/cashmere.mp3" type="audio/mpeg"/>
    <pubDate>Mon, 3 Mar 2014 00:00:00 +1100</pubDate>
    <guid isPermaLink="true">http://files.ktfr.net/podcast/cashmere.mp3</guid>
  </item>
  <item>
    <title>jacques greene mix</title>
    <media:content url="http://files.ktfr.net/podcast/LWEPodcast198JacquesGreene.mp3" type="audio/mpeg" medium="audio" expression="full"/>
    <enclosure url="http://files.ktfr.net/podcast/LWEPodcast198JacquesGreene.mp3" type="audio/mpeg"/>
    <pubDate>Mon, 14 Apr 2014 00:00:00 +1100</pubDate>
    <guid isPermaLink="true">http://files.ktfr.net/podcast/LWEPodcast198JacquesGreene.mp3</guid>
  </item>
</channel>
</rss>

api usage

podcastgen = require 'podcastgen'
 
rssdata = podcastgen({
  title: "my podcast",
  baseUrl: "http://example.com/podcast/",
  ...
})

install

npm install -g podcastgen

Readme

Keywords

Package Sidebar

Install

npm i podcastgen

Weekly Downloads

0

Version

0.1.0

License

none

Last publish

Collaborators

  • jsdf