Podcasting?

Post Reply
PlayBoxTech
Jr. Bludit
Posts: 5
Joined: Sun Mar 22, 2020 7:30 pm

HI all,

In looking for something besides WordPress to use, I found Bludit. So far really enjoying it.
However wondering if there's a plugin already designed that will allow me to link an MP3 to a post so that it would generate the proper RSS for podcatchers?

Thanks!

Chris
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

PlayBoxTech wrote: Sun Mar 22, 2020 11:59 pm However wondering if there's a plugin already designed that will allow me to link an MP3 to a post so that it would generate the proper RSS for podcatchers?
Have you some information about RSS for podcatchers?
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
PlayBoxTech
Jr. Bludit
Posts: 5
Joined: Sun Mar 22, 2020 7:30 pm

Pretty much you would just need this:

Code: Select all

<!--REPEAT THIS BLOCK FOR EACH EPISODE-->
<item>
   <title>Verbose title of the episode</title>
   <description>Verbose description of the episode.</description>
   <itunes:summary>Duplicate of above verbose description.</itunes:summary>
   <itunes:subtitle>Short description of the episode - 255 character max.</itunes:subtitle>
   <itunesu:category itunesu:code="112" />
   <enclosure url="https://www.YourSite.com/FILE.EXT" type="audio/mpeg" length="1" />
   <guid>https://www.YourSite.com/FILE.EXT</guid>
   <itunes:duration>H:MM:SS</itunes:duration>
   <pubDate>Fri, 05 Oct 2018 09:00:00 GMT</pubDate>
</item>
<!--END REPEAT--> 
You could likely due away with the iTunes specific calls, but the rest would be needed.
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

There is no plugin for this available at the moment.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
Post Reply