ytrss

Crates.ioytrss
lib.rsytrss
version0.1.2
created_at2025-06-02 08:35:11.446952+00
updated_at2025-06-02 11:48:02.029783+00
descriptionQuickly get RSS feed URLs from YouTube channel urls
homepagehttps://github.com/caliguIa/ytrss
repositoryhttps://github.com/caliguIa/ytrss
max_upload_size
id1697784
size257,674
Cal (caliguIa)

documentation

README

ytrss

A CLI tool to extract RSS feed URLs from YouTube channel URLs.

Installation

cargo install ytrss

Usage

Single URL

Extract RSS feed URL from a single YouTube channel:

ytrss url "https://www.youtube.com/channel/xxx"

File Input

Process multiple YouTube URLs from a file (one URL per line):

ytrss file channels.txt

The tool will create an output file with _parsed suffix containing the RSS feed URLs.

Examples

# 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

Features

  • Supports both youtube.com and youtu.be URLs
  • Concurrent processing for file input (up to 10 requests)
  • Automatic output file generation for batch processing
Commit count: 14

cargo fmt