Skip to content
/ pod Public

Barebones CLI podcast downloader.

License

Notifications You must be signed in to change notification settings

yumemio/pod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pod - barebones CLI podcast downloader

pod fetches podcast RSS feeds and downloads audio files.

Prerequisites

  • Bash
  • Python 3

Installation

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

Usage

1. Create a Podcast Channel

$ ./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.

Example

$ ./pod create me-myself-ai https://feeds.megaphone.fm/TPG7603691495

2. List Episodes of a Podcast Channel

$ ./pod list <title>
  • title: The name of the podcast channel.
  • Lists available episodes.

Example

$ ./pod list me-myself-ai

Lists episodes from me-myself-ai.

3. Download Podcast Episodes

$ ./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.

Example

$ ./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.

Notes

  • This Git repository is configured to ignore everything except a few files. Make sure to update .gitignore when adding new files.

Rant

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!

About

Barebones CLI podcast downloader.

Resources

License

Stars

Watchers

Forks