{"id":16594059,"url":"https://github.com/jsdf/podcastgen","last_synced_at":"2025-04-15T03:02:54.632Z","repository":{"id":16024568,"uuid":"18768247","full_name":"jsdf/podcastgen","owner":"jsdf","description":"generate itunes-compatible podcasts from cson or json","archived":false,"fork":false,"pushed_at":"2014-12-03T23:58:29.000Z","size":146,"stargazers_count":3,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-15T03:02:47.419Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CoffeeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsdf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-04-14T16:42:34.000Z","updated_at":"2020-06-16T23:55:02.000Z","dependencies_parsed_at":"2022-08-30T14:41:55.625Z","dependency_job_id":null,"html_url":"https://github.com/jsdf/podcastgen","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsdf%2Fpodcastgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsdf%2Fpodcastgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsdf%2Fpodcastgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsdf%2Fpodcastgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsdf","download_url":"https://codeload.github.com/jsdf/podcastgen/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248997084,"owners_count":21195798,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T23:44:57.298Z","updated_at":"2025-04-15T03:02:54.603Z","avatar_url":"https://github.com/jsdf.png","language":"CoffeeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# podcastgen\n\ngenerate itunes-compatible podcasts from cson or json\n\n## example\n\n`example/jsdfpodcast.cson`:\n```coffee\ntitle: \"jsdf podcast\",\nbaseUrl: \"http://files.ktfr.net/podcast/\",\npodcastUrl: \"http://files.ktfr.net/podcast/podcast.xml\",\nitems: [\n  {\n    title: \"cashmere cat mix\",\n    path: \"cashmere.mp3\", # relative from baseUrl\n    date: \"Mon, 3 Mar 2014 00:00:00 +1100\", # RFC 2822 formatted date\n  },\n  {\n    title: \"jacques greene mix\",\n    path: \"LWEPodcast198JacquesGreene.mp3\",\n    date: \"Mon, 14 Apr 2014 00:00:00 +1100\", \n  }\n]\n```\n\nrun it:\n```bash\npodcastgen example/jsdfpodcast.cson \u003e podcast.xml\n```\n\n`podcast.xml`:\n```xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003crss 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\"\u003e\n\u003cchannel\u003e\n  \u003catom:link href=\"http://files.ktfr.net/podcast/podcast.xml\" rel=\"self\" type=\"application/xml\"/\u003e\n  \u003ctitle\u003ejsdf podcast\u003c/title\u003e\n  \u003citem\u003e\n    \u003ctitle\u003ecashmere cat mix\u003c/title\u003e\n    \u003cmedia:content url=\"http://files.ktfr.net/podcast/cashmere.mp3\" type=\"audio/mpeg\" medium=\"audio\" expression=\"full\"/\u003e\n    \u003cenclosure url=\"http://files.ktfr.net/podcast/cashmere.mp3\" type=\"audio/mpeg\"/\u003e\n    \u003cpubDate\u003eMon, 3 Mar 2014 00:00:00 +1100\u003c/pubDate\u003e\n    \u003cguid isPermaLink=\"true\"\u003ehttp://files.ktfr.net/podcast/cashmere.mp3\u003c/guid\u003e\n  \u003c/item\u003e\n  \u003citem\u003e\n    \u003ctitle\u003ejacques greene mix\u003c/title\u003e\n    \u003cmedia:content url=\"http://files.ktfr.net/podcast/LWEPodcast198JacquesGreene.mp3\" type=\"audio/mpeg\" medium=\"audio\" expression=\"full\"/\u003e\n    \u003cenclosure url=\"http://files.ktfr.net/podcast/LWEPodcast198JacquesGreene.mp3\" type=\"audio/mpeg\"/\u003e\n    \u003cpubDate\u003eMon, 14 Apr 2014 00:00:00 +1100\u003c/pubDate\u003e\n    \u003cguid isPermaLink=\"true\"\u003ehttp://files.ktfr.net/podcast/LWEPodcast198JacquesGreene.mp3\u003c/guid\u003e\n  \u003c/item\u003e\n\u003c/channel\u003e\n\u003c/rss\u003e\n```\n\n### api usage\n```coffee\npodcastgen = require 'podcastgen'\n\nrssdata = podcastgen({\n  title: \"my podcast\",\n  baseUrl: \"http://example.com/podcast/\",\n  ...\n})\n```\n\n### install\n\n```bash\nnpm install -g podcastgen\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsdf%2Fpodcastgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsdf%2Fpodcastgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsdf%2Fpodcastgen/lists"}