Skip to content

Instantly share code, notes, and snippets.

@MasWag
MasWag / make-audio-feed.sh
Created February 3, 2024 13:18 — forked from ivan/make-audio-feed.sh
Script to generate a Podcasts/Overcast-compatible RSS feed for audio files on your own web server
#!/usr/bin/env bash
# Generates an RSS feed for a list of audio files, for consumption by Overcast
# and other podcast players.
#
# Usage: make-audio-feed TITLE BASE_URL FILE...
# Example: (cd directory && make-audio-feed 'My Audio Files' 'https://your.server/directory/' * > .feed.rss)
set -eu -o pipefail