A CLI tool to extract RSS feed URLs from YouTube channel URLs.
cargo install ytrssExtract RSS feed URL from a single YouTube channel:
ytrss url "https://www.youtube.com/channel/xxx"Process multiple YouTube URLs from a file (one URL per line):
ytrss file channels.txtThe tool will create an output file with _parsed suffix containing the RSS feed URLs.
# Single channel
ytrss url "https://www.youtube.com/@example"
# Multiple channels from file
echo "https://www.youtube.com/channel/UC1234" > channels.txt
echo "https://www.youtube.com/@example" >> channels.txt
ytrss file channels.txt- Supports both youtube.com and youtu.be URLs
- Concurrent processing for file input (up to 10 requests)
- Automatic output file generation for batch processing