this post was submitted on 16 Feb 2025
107 points (97.3% liked)

Asklemmy

45216 readers
874 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

I've seen a lot of people praising RSS feeds over standard news. What benefits does RSS have over normal news sites? Are they more privacy-focused?

What feeds would you recommend for a fellow Lemmy user?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 4 points 4 days ago* (last edited 4 days ago)

If you're into watching YouTube: You can add channels as RSS into your reader. The latest 15 videos are offered via the feeds. All you need is the channel ID of the channel whose feed you want to access.

The channel ID is not visible anywhere on the page, but if you look at the DOM in the web browser via the developer console, you will find a meta entry <link rel="canonical" href="https://www.youtube.com/channel/CHANNEL_ID"> in the <head>, where CHANNEL_ID is the required ID. There are also websites that can be found quickly and easily using the appropriate keywords, which read out and return the ID associated with the provided handle.

https://www.youtube.com/feeds/videos.xml?channel_id=CHANNEL_ID

If you have a lot of subscriptions, you can use Google Takeout at takeout.google.com and export the YouTube subscriptions as a CSV file. The CSV file contains the subscribed channels with their ID and title for you to parse into whatever format you need for your reader.

For Newsboat you can use this script on the Abos.csv from my Google Takeout archive:

while IFS="," read id url name; do
  feedURL="https://www.youtube.com/feeds/videos.xml?channel_id=%24%7Bid%7D"
  [ ! -z "${id}" ] && echo "$feedURL youtube videos \"~${name}\""
done < <(tail -n +2 Abos.csv) >> urls

Edit: Seems like, Lemmy messes up the code formatting, but you get the gist ...