Simple Podcast. A static podcast page generator in the style of stagit.
Point it at a directory of podcast folders. It generates plain HTML you can serve with any web server. No JavaScript, no database, no login, no dependencies beyond a C compiler.
Each subdirectory under your podcast root is treated as one podcast. Inside each podcast directory:
.mp3, .ogg, .opus, .m4a, .flac, .wav, .mp4, .mkv, .webm)README or README.md or README.txt (optional, displayed on the readme page; first line is the heading, second line becomes the description on the index)COVER.jpg or cover.png or similar (optional, displayed on the log page)LICENSE or COPYING (optional, displayed on the license page)podcasts/
my-show/
COVER.jpg
README.md
LICENSE
001-first-episode.mp3
002-second-episode.mp3
another-show/
cover.png
README
intro.ogg
bonus.mp4
For each podcast, spod generates four pages (just like stagit generates log, files, refs):
The index page lists all podcasts with their name, description, owner, and last update date. Navigation between pages uses the same Log | Episodes | README | LICENSE bar that stagit uses for Log | Files | Refs.
Media files are symlinked into the output directory, not copied.
$ spod podcasts/ # output to out/
$ spod podcasts/ /var/www # output to /var/www
Serve the output with nginx, quark, or python3 -m http.server.
$ make
$ sudo make install
Copy config.def.h to config.h and edit before building:
static char sitetitle[] = "podcasts";
static char sitedesc[] = "my podcast collection";
static char siteowner[] = "kris";
static char favicon[] = "";
prefers-color-scheme.MIT