Native macOS app to track YouTube channels, no Google login required
18 points by agentcooper
18 points by agentcooper
Neat. In case you want to DIY something similar you can also add YouTube channels to your RSS reader
I have a NetNewsWire folder with youtube channels in it. If you have the Safari extension enabled you can just go to the channel page and click the NetNewsWire icon to add the channel.
Out of curiosity. Does this use RSS or is it more like NewPipe? Cause if it's the latter I'm actually surprised that it's allowed in the Mac Store.
Looks crisp!
Also as RSS has been mentioned couple of times already, here's a shell function I use for snatching a feed:
fetch_rss_youtube () {
CHANNEL_URL="$1"
if [ -n "$CHANNEL_URL" ]
then
curl -s "$CHANNEL_URL" | grep -Po '<link rel="canonical" href="https://www.youtube.com/channel/\K.*?(?=">)' | xargs -I@ echo 'https://www.youtube.com/feeds/videos.xml?channel_id=@' | wl-copy
fi
}
iirc the yt rss feed includes shorts and there isin't a way to differentiate them from regular videos.
There is a way! I think they changed something recently. Now there is <link rel="alternate" href="https://www.youtube.com/shorts/..."/>, for example check this feed: https://www.youtube.com/feeds/videos.xml?channel_id=UC_-hYjoNe4PJNFa9iZ4lraA.
In Telik the "Hide YouTube Shorts" is enabled by default.
Nice, there's also a great app called Play that does something similar. However its not open source