pod
fetches podcast RSS feeds and downloads audio files.
- Bash
- Python 3
Create a directory for podcasts and deploy the scripts:
$ git clone https://github.com/yumemio/pod
$ mv pod ~/rec/podcasts
$ cd ~/rec/podcasts
Install the required dependencies:
$ pip install -r requirements.txt
Give necessary permissions:
$ chmod -R u+x ./pod ./bin
$ ./pod create <title> <url>
- title: The name you assign to this podcast channel (used as a directory name)
- url: The podcast feed URL
Initializes a directory <title>
and saves the podcast URL in _url
.
$ ./pod create me-myself-ai https://feeds.megaphone.fm/TPG7603691495
$ ./pod list <title>
- title: The name of the podcast channel.
- Lists available episodes.
$ ./pod list me-myself-ai
Lists episodes from me-myself-ai
.
$ ./pod download <title> <id|id1,id2|id1-id3>
- title: The name of the podcast channel
- id|id1,id2|id1-id3: Specifies which episodes to download. Use the IDs
shown in the output of
./pod list
. - Downloads the episodes to the
<title>/
directory.
$ ./pod download me-myself-ai 1
Downloads the latest episode of me-myself-ai
.
$ ./pod download me-myself-ai 3,5,7
Downloads episodes 3
, 5
, and 7
.
$ ./pod download me-myself-ai 1-5
Downloads episodes 1
through 5
.
Use your favorite media player to listen to the downloaded episodes.
- This Git repository is configured to ignore everything except a few files.
Make sure to update
.gitignore
when adding new files.
My favorite music player is cmus
(absolutely amazing TUI player when you don't want to mess with mpd
), and while it has a file explorer feature, it doesn't come with a podcast manager. I'm using this little program alongside cmus
so that I can listen to podcasts and music from the same interface, which is why this repo focuses on listing and downloading bits of managing podcasts.
In cmus
, I also assigned F2 to run cd /srv/rec/podcast
(the git-cloned root of this repo) and open the list of podcasts, saving myself from the pain of navigating through my messy filesystem!