Podcasting With Jekyll

This site is built using the static site generator Jekyll, the audio files live on Amazon S3 and (for the time being) the site itself is hosted on GitHub pages.

Why?

The simple answer is that podcasting relies on a pretty simple technology - RSS. RSS often gets generated for a website almost as a by-product of adding content, this allows people to “subscribe” to your website and be notified or fed updates. Jekyll generates RSS straight out of the box and every podcast needs a website so we thought - why not kill two birds with one stone?

How?

After a bit of a search we stumbled across Podcast Generator which seemed to be a useful tool and close to what we needed. Doug and Dai over at TIDE podcast use it and after having played with the setup - it’s quick and easy. There was some concern about placing our audio files up on our webserver though, audio files can be quite large which can impact on traffic allowances. Tim asked around the Reclaim Community and decided to have a go at Jekyll. After an evening of fiddling around the site was up and running. It was generating an RSS feed that complied with iTunes standards and was looking pretty nice too. Tim added a HTML5 player (Plyr) to the post page for each podcast so that people could sample and listen without having to subscribe or download anything. Next step was to move the files into an Amazon S3 bucket, which this tutorial covers nicely. The final step was getting a domain name and pointing it at GitHub.

Our Process

1. Record the conversation

2. Edit and export podcast

3. Edit metadata

4. FTP file to Amazon S3 - copy link

5. Create a new post in Markdown and add in the relevant front matter to the YAML section

layout: post
title: "Title Goes Here"
date: Publishing date and time
file: link to file in S3
summary: "Quick exerpt of episode"
description: "Longer information"
duration: "how long in minutes and seconds" 
length: "in seconds"
explicit: "do we swear" 
keywords: "keyword tags"
block: "hold back publishing it" 
voices: "who did the talking"

6. Add links and show notes to the content section.

7. Once we’re complete Commit to GitHub

8. Site and RSS is updated and the new episode is pushed out

Can I haz?

The beauty of this set up is that it’s simple - and you can access all the source files over on GitHub. The RSS file pulls information from the config.yml file which has most of the information you need to publish on iTunes. The episode information and file for Plyr are included the Post layout and pulled in from the front matter listed above. All styles can be configured using some basic CSS.

At the moment you’ll need to fork our code to make your own copy - but we’ll make a boilerplate available soon. If this sounds cool and you want to get in touch with us you can via email or on twitter!

Cheers!