Skip to content

Instantly share code, notes, and snippets.

@rdhyee
Last active December 30, 2022 13:57
Show Gist options
  • Save rdhyee/cd926d95188f4ffee237c24bca8337f1 to your computer and use it in GitHub Desktop.
Save rdhyee/cd926d95188f4ffee237c24bca8337f1 to your computer and use it in GitHub Desktop.
Radix Magazine Podcast feed (Prototype)
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Podcast Title</title>
<link>http://www.example.com/podcast</link>
<language>en-us</language>
<copyright>Copyright 2021</copyright>
<itunes:subtitle>A brief description of the podcast</itunes:subtitle>
<itunes:author>Your Name</itunes:author>
<itunes:summary>A longer description of the podcast</itunes:summary>
<description>A longer description of the podcast</description>
<itunes:owner>
<itunes:name>Your Name</itunes:name>
<itunes:email>[email protected]</itunes:email>
</itunes:owner>
<itunes:image href="http://www.example.com/podcast/image.jpg" />
<itunes:category text="Technology">
<itunes:category text="Gadgets" />
</itunes:category>
<itunes:explicit>no</itunes:explicit>
<!-- Repeat the following block for each episode in the podcast -->
<item>
<title>Episode Title</title>
<itunes:subtitle>A brief description of the episode</itunes:subtitle>
<itunes:author>Your Name</itunes:author>
<itunes:summary>A longer description of the episode</itunes:summary>
<description>A longer description of the episode</description>
<enclosure url="http://www.example.com/podcast/episode1.mp3" length="12345678" type="audio/mpeg" />
<guid>http://www.example.com/podcast/episode1.mp3</guid>
<pubDate>Mon, 06 Mar 2017 00:00:00 +0000</pubDate>
<itunes:duration>1:00:00</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episode>1</itunes:episode>
<itunes:season>1</itunes:season>
</item>
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment