Skip to content

Instantly share code, notes, and snippets.

@remylagerweij
Created April 9, 2020 09:58
Show Gist options
  • Save remylagerweij/613881045f173af8cf5a3188cbdbc2da to your computer and use it in GitHub Desktop.
Save remylagerweij/613881045f173af8cf5a3188cbdbc2da to your computer and use it in GitHub Desktop.
Podcast - RSS Specification
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">
<channel>
<title>Podcast Title</title>
<atom:link href="https://www.mypodcastfeed.com/feed/podcast/" rel="self" type="application/rss+xml" />
<link>https://www.podcasturl.com</link>
<description>Podcast description</description>
<lastBuildDate>Fri, 19 Jan 2018 01:45:39 +0000</lastBuildDate>
<language>en-US</language>
<copyright />
<sy:updatePeriod>weekly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<itunes:summary>Podcast description.</itunes:summary>
<itunes:author>Podcast Author</itunes:author>
<itunes:explicit>clean</itunes:explicit>
<itunes:image href="https://www.podcasturl.com/image.jpg" />
<itunes:type>episodic</itunes:type>
<itunes:owner>
<itunes:name>Podcast title</itunes:name>
<itunes:email>podcast@podcasturl.com</itunes:email>
</itunes:owner>
<managingEditor>podcast@podcasturl.com (Podcast Title)</managingEditor>
<itunes:subtitle>Secondary Description</itunes:subtitle>
<image>
<title>Podcast Title</title>
<url>https://www.podcasturl.com/image.jpg</url>
<link>https://www.podcasturl.com/</link>
</image>
<itunes:category text="Technology" />
<item>
<title>My First Podcast Title</title>
<link>https://www.podcasturl.com/Podcast-Episode01.mp3</link>
<pubDate>Mon, 15 Jan 2018 09:53:37 +0000</pubDate>
<description>Episode Description</description>
<itunes:summary>Episode Summary</itunes:summary>
<itunes:subtitle />
<itunes:image href="https://www.podcasturl.com/image.jpg" />
<guid>https://www.podcasturl.com/Podcast-Episode01.mp3</guid>
<enclosure url="https://www.podcasturl.com/Podcast-Episode01.mp3" length="27217920" type="audio/mpeg" />
<itunes:duration>16:11</itunes:duration>
</item>
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment