Generate an RSS feed from a config file and an mp3 file.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Ismael Arenzana c08e18ff67
Track upstream latest
2 years ago
cmd Track upstream latest 2 years ago
examples Removed C dependency 2 years ago
objects Fixes owner email, explicit tag and some categories. Takes multiple configs 3 years ago
vendor Track upstream latest 2 years ago
web Better web 3 years ago
.gitignore add/generate work 3 years ago
37.html Removed C dependency 2 years ago
CHANGELOG.md README and changelog 3 years ago
Dockerfile Initial commit 3 years ago
LICENSE Initial commit 3 years ago
Makefile Removed C dependency 2 years ago
README.md README and changelog 3 years ago
VERSION Initial commit 3 years ago
go.mod Track upstream latest 2 years ago
go.sum Removed C dependency 2 years ago
main.go Initial commit 3 years ago

README.md

feeder

Generates RSS feed and can upload to S3. Also, it can generate episode and index HTML if desired.

Install

Build from source

Make sure Go 1.15+ is installed on your machine. You can follow this guide to do so. On a Mac, just set your $GOPATH and run brew install go.

git clone https://gitlab.com/iarenzana/feeder.git
cd feeder
make

Now you can execute feeder.

Examples

First, add an episode:

feeder add -f ~/episode01.mp3 -u

This will generate an entry on the podcast_episodes file. We should edit the JSON file with the info we want first. The episode has also been uploaded at this point (it could have generated an episode file too if we had passed the -w option).

Now we need to generate the RSS file from the episodes:

feeder generate -c ~/feeder_podcastname.yml -u -w

This will generate the RSS file and upload it to S3.

It's recommended that you create a CloudFront distribution and point Route 53 entries to it rather than just going directly to the S3 bucket.