Add Elfeed config for podcasts

This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:32 +00:00
parent 9da0630358
commit acc2b30fe1

View File

@ -693,3 +693,17 @@ needs to be set up to install them if they aren't already.
(emms-player-mpd-connect) (emms-player-mpd-connect)
(emms-cache-set-from-mpd-all) (emms-cache-set-from-mpd-all)
#+end_src #+end_src
** Podcasts
Elfeed supports media enclosures, so it's ideal for podcasts
out-of-the-box.
#+begin_src emacs-lisp
(use-package elfeed
:config
(setq elfeed-feeds
'("https://www.patreon.com/rss/seanmcarroll?auth=xZISWBuCvZ1rKXy547HnRXQVyBIscY1P"
"https://www.patreon.com/rss/plasticpills?auth=S0ExMga6Cco6F4DN30W6Sg9kUciLdjXR"
"https://www.nasa.gov/rss/dyn/Houston-We-Have-a-Podcast.rss"
"https://www.nasa.gov/rss/dyn/APPEL-Giant-Leaps.rss")))
#+end_src