Youtube Channel URL to RSS feed URL Converter

This website was designed to quickly and conveniently get the RSS feed urls for your favourite Youtube channels without having to pay for some subscription. If you would like to see more features added just let me know! (email [email protected])





Example URL: https://www.youtube.com/@Vsauce

Code

Here's the code. You can run it locally too if you'd like:

#!/bin/bash
finalURL=$(curl -s $1 | sed -nE 's/.*channel_id=([^"]*).*/\1/p' | head -n1)
echo "https://www.youtube.com/feeds/videos.xml?channel_id=$finalURL"