diff --git a/blog/2022/12/10/watching-youtube-in-private/index.html b/blog/2022/12/10/watching-youtube-in-private/index.html index 0543c052..3053b2d0 100644 --- a/blog/2022/12/10/watching-youtube-in-private/index.html +++ b/blog/2022/12/10/watching-youtube-in-private/index.html @@ -190,8 +190,8 @@ personal blog
I recently stumbled across yewtu.be and found it intriguing. It not only allows for you watch YouTube without being on YouTube, but it also allows you to create an account and subscribe to channels without a Google account. I wondered what sort of wizardry was going on under the hood and discovered that it’s a hosted instance of invidious.
Wow, this is cool, and JavaScript is not required.
-I started to use yewtu.be as my primary client for watching videos. I subscribe to about a dozen channels and I really only want to a see list of the latest videos from my subscriptions, and not be the victim of a proprietry algorithm feeding me new content. A few days ago, yewtu.be went down briefly, and that motivated me enough to self-host inviduous.
-There are several other hosted instances of inviduous listed here, but being able to easily backup my own instance (along with watch history) is more compelling in my case.
+I started to use yewtu.be as my primary client for watching videos. I subscribe to about a dozen channels and I really only want to a see list of the latest videos from my subscriptions, and not be the victim of a proprietry algorithm feeding me new content. A few days ago, yewtu.be went down briefly, and that motivated me enough to self-host invidious.
+There are several other hosted instances listed here, but being able to easily backup my own instance (along with watch history) is more compelling in my case.
The quickest way to get invidious up is with docker-compose as mentioned in the docs.
I made a few modifications (such as pinning the container’s tag), and ended up with:
@@ -238,11 +238,11 @@ personal blog postgresdata:After invidious was up and running, I installed Tailscale on it to leverage its MagicDNS, and I’m now able to access this instance from anywhere at http://invidious:3000/feed/subscriptions.
I figured it would be nice to redirect existing YouTube links that others send me, so that I could seamlessly watch the videos using inviduous.
+I figured it would be nice to redirect existing YouTube links that others send me, so that I could seamlessly watch the videos using invidious.
Without subjecting my entire household to this, I went looking for a way to redirect paths at the browser level. I found the lightweight proxy requestly, which can be used to modify http requests in my browser. I created the following rules:
Now the link https://www.youtube.com/watch?v=-lz30by8-sU will redirect to http://invidious:3000/watch?v=-lz30by8-sU
-I’m still looking for ways to improve this inviduous setup. There doesn’t appear to be a way to stream in 4K yet.
+I’m still looking for ways to improve this invidious setup. There doesn’t appear to be a way to stream in 4K yet.