• 1 Post
  • 11 Comments
Joined 7 months ago
cake
Cake day: December 14th, 2023

help-circle






  • I don’t think it’s completely true to say it’s not accurate in any way. You can still get a rough estimate based on the proportion of likes to dislikes coming from people with the extension installed, then extrapolate that out based on the public number of likes provided by YouTube.

    Of course it’s not going to be anything more than a ballpark number, but being able to tell the difference between “almost nobody is disliking this” and “like half of viewers are disliking this” is super useful information. If nothing else it serves as a third party keeping a dislike count for users who installed the extension. They’re not claiming to access the real YouTube data, so I think it’s unnecessarily dismissive of what it does to call it bullshit.


  • 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 not a cook but just a general fan of commercial / industrial products (always getting jealous of the stuff I see in my engineer friends machine shops at work, materials science labs, etc), and one of my favorite sites to get ideas for when it comes to household / kitchen stuff is the webstaurant store. I don’t necessarily even buy much stuff because some of the items can only be bought by the case, but it’s fun to browse and if I see something I like I can check if it’s available anywhere else. I have bought a commercial style tall recycling bin and some generic 5 gallon bag in box soda syrups since you could just buy 1 of those, which save a lot of money if you carbonate at home compared to buying soda at the grocery store.

    Anyway they have a surface sanitizer section so you might get some ideas on what to get by browsing there. Again some are by the case but at least a few you can buy a single spray bottle or a single gallon: https://www.webstaurantstore.com/35535/surface-sanitizing-and-disinfecting-chemicals.html

    And of course be sure to read all the directions and warnings since they might be used differently than you would at home, or have different requirements.


  • 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.