6 ms·
I'm not sure how much programming experience you have, but I'd imagine it'd be a fairly quick Python script to scrape all of your subscriptions and put things t
by ComplexSystems 3y ago
I'm not sure how much programming experience you have, but I'd imagine it'd be a fairly quick Python script to scrape all of your subscriptions and put things together in RSS form. You could probably build a quick Flask app which serves the RSS feed from some custom query string representing a YouTube video id. With ChatGPT you could probably build this out in a day.
- d0mine 3y agoTo get an idea of how it might look, here's a telegram bot that notifies you about new videos on the channels you have subscribed to. It consists of approximately 150 lines of Python code. You can find the code here: https://gist.github.com/zed/a48da032ace0f4ff1c79cd80854bb8fd https://gist.github.com/zed/a48da032ace0f4ff1c79cd80854bb8fd
- vdaea 3y agoThat uses the rss feed to find new videos.
- d0mine 3y agoIt utilizes hubbub push-notifications to deliver information about new videos in RSS format. It is unclear whether it requires the corresponding RSS feed to be operational. In any case, it just demonstrates the general approach: subscribe to a topic, and receive new events as soon as they happen without polling. The point is that it doesn't require much code: just glue together corresponding APIs.
- solarkraft 3y agoI built something similar (and then never documented it) to generate (audio) podcast feeds from any playlist or channel or grab an audio file from a video: https://github.com/solarkraft/ytdl-podcast https://github.com/solarkraft/ytdl-podcast I haven't used it in a while, so I'm not sure that it currently works, but perhaps it'll contain some useful hints.
- deleted 3y ago[deleted]