Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 768 Bytes

readme.md

File metadata and controls

32 lines (25 loc) · 768 Bytes

podcastdl

Download podcast audio files and general info from a podcast RSS feed. Not optimized. It does what it does for me, albeit not in the most speedy fashion.

CLI usage

podcastdl --url https://foo.bar
# basic usage, download the podcast feed to the default folder "out"

podcastdl --url https://foo.bar --output a-folder --verbose
# download the podcast feed to the folder "a-folder" and show more logs

Options

url: the url of the podcast feed
--url or -u

output: the folder to save the podcast files
--output or -o

verbose: show more logs
--verbose or -v

help: show this help
--help or -h

API usage

import downloader from "./index.js"
downloader("https://app.springcast.fm/podcast-xml/16731", "out", true)