Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 1.3 KB

README.md

File metadata and controls

43 lines (37 loc) · 1.3 KB

Just fetch RSS podcasts as playlist files so you can browse and listen to the various radio entries. It does not download the files, just creates files with the provided URL.

Install dependencies

$> npm install

Configure your own Podcast feeds

Edit the configuration file and update the "rss_feeds" entry. By default, it is configured to fetch some interesting french Radio France France Culture programmes :)

"rss_feeds": [
		"http://radiofrance-podcast.net/podcast09/rss_10467.xml",
		"http://radiofrance-podcast.net/podcast09/rss_11701.xml"
],
"download_folder": "Podcasts",
"max_media_download_size": "2000000", // in Bytes
"media_download": false

Create the podcasts files

$> node index.js
X podcasts have been downloaded to Podcasts/AUTHOR/TITLE/ folder
...

You should find the .m3u files in the "Podcasts" folder (by default)

$> ls "Podcasts/Radio France/"
CULTURES MONDE.m3u
$> ls "Podcasts/Radio France/CULTURES MONDE/"
2014-10-30 - Heureux qui comme Ulysse.m3u
...

Play the podcast

Use your favorite player (vlc, XBMC...)

$> vlc "Podcasts/Radio France/CULTURES MONDE/2014-10-30 - Heureux qui comme Ulysse.m3u"

MIT LICENSE