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!
- Open-ended question
- 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.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- [email protected]: a community for finding communities
~Icon~ ~by~ ~@Double_[email protected]~
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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>
, whereCHANNEL_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.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:
Edit: Seems like, Lemmy messes up the code formatting, but you get the gist ...