• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: December 14th, 2023

help-circle




  • This is the main reason I always preferred running my own arrstack over paying for realdebrid. Besides mullvad VPN going out of business suddenly (which wouldn’t be that hard to switch) or taking down all torrent indexes simultaneously, there is no service that can be taken down using the law that would interrupt my media consumption. And even if all torrent sites went down tomorrow, I can trivially hook back up my arrstack to a dht crawler and ill be basically fully decentralized, pulling infohashes from the ether and downloading using purely P2P technologies with no (practical) central point of failure.




  • My primary use case is safeguarding my important personal artifacts (family photos, digitized paperwork, encryption key / account recovery / 2FA backups) against drive failure (~2TB), followed by my decently sized Plex server (23TB), immich, nextcloud, and various other small things like selfhosted bitwarden, grocy, ollama, and stuff like that.

    I run all of my stuff off of a 6 bay Synology (more drives helps with capacity efficiency as double redundancy with 6 drives costs you 30% and I wanted to be protected against drive failures during rebuilding) with an Intel nuc on top to run plex/jellyfin transcoding using quicksync instead of loading the poor nas with cpu transcoding, I also run ollama on the nuc since it has faster cores than the nas.






  • I’m mostly in the same boat. So far anything I didn’t like could be easily turned off. I unpinned the Plex TV and movies so it never shows up. I don’t mind discover because it means it returns results for things I don’t have, letting me watchlist it so overseerr can request it without me needing to leave Plex.

    I have a jellyfin container running in the same docker compose yml with the exact same media folders mounted to it with quicksync passed through to it in addition to Plex, reverse proxy already set up so switching is as easy as opening a different URL or app since it’s already up and running.



  • I’m more excited about reducing congestion when more of my neighbors upgrade to 6, so that BSS coloring and other wifi 6/7 features can enable more efficient use of the spectrum. Before wifi 6 most of the upgrades were just increasing data rates, but really lacking in improvements to spectral use efficiency (like the resource unit allocation in OFDMA which splits channels into sub carriers and centrally plans assignment to multiple client devices for simultaneous use which results in much less wasted airtime compared to each device yelling and listening while waiting to see if they can have exclusive access to the whole channel which wastes time) and interference management (like preamble puncturing which allows partial use of a channel when only a portion has interference). In a crowded environment like an apartment building wifi 6 should help a lot in reducing channel utilization.


  • It feels like the rollout of client modules and APs/routers was better synchronized this time. Back with wifi 6 I ordered the Intel modules within a week of them being available on AliExpress and then waited for what felt like months for APs to be available (it looks like unifi’s wifi 6 ap finally came out in November 2021 based on when I bought it). Unifi’s U7 pro dropped a few days ago so I nabbed one as soon as I saw the email and that arrived today so that’s already set up, and the wifi 7 modules have already been out for a bit, i just didn’t order them since I was anticipating a wait for APs. So now I just gotta wait a bit for shipping and I’ll have all my laptops upgraded too.


  • If it’s just videos you want, you can try using network inspector to see if you can catch the url of the file - assuming giving the url of the video’s webpage to youtube-dl along with a snapshot of your browsers logged in cookies doesn’t work. You might also see an m3u8 in the network inspector, which you can also give the url of to youtube-dl and it’ll download all the segments and merge them into a video file (you might also need auth cookies or headers unless it’s a temporary url which can work anywhere, just check the network request to see what’s sent). Some sites do separate m3u8 for video and audio or multiple ones for different video qualities, so you might need to change the quality to maximum for the browser to request the high quality stream url. You might also see a file requested that just lists the urls for m3u8s of each quality. If you see a vtt file then you can also grab that, convert to an srt, and remux with mkvtoolnix to embed it into the file as an optional subtitle.

    This should all work as long as they don’t use drm / widevine type stuff and as long as they don’t have some supremely annoying security measures (like using authenticated urls that are one time use so by the time your browser shows it in the network inspector the url is expired or something). Otherwise for widevine you’ll need to do some kind of screen / HDMI capture type setup.