Skip Navigation
YouTube has now begun skipping videos altogether for users with ad blockers
  • Dude, I have YouTube music and I literally am not able to change or upgrade to YouTube premium. They don't let me, it links me to a useless empty page with no options. I don't even know what the price is like. This whole subscription thing is a mess.

    I solved it by using YouTube revanced and have all premium functions and more. On desktop I wrote my own player. It's so much better because their website is a mess. At this point do I really want to pay for features I know I won't use?

  • is there a jellyfin api which I could query to get the state if someone is actively watching or not?
  • Yep, the api in jellyfin is quite easy. Someone already sent the link to the docs. The specific endpoint you want is Sessions. You need to get yourself an api_key which you can get in the admin panel. Here is an example code in Python to give you an idea on how to use the api:

    #!/usr/bin/env python3
    
    import requests
    
    response = requests.get("http://your_jellyfin_server:8096/Sessions?api_key=your_api_key")
    json = response.json()
    
    currently_watching = []
    for session in json:
        if "NowPlayingItem" in session:
            currently_watching.append(session["UserName"])
    
    if currently_watching:
        print("Currently watching: " + ", ".join(currently_watching))
    else:
        print("Nobody is watching")
    

    If it is indeed Python that you want to use, you can adjust it to your needs depending on what you want it to output.

    Basically, it is as simple as looping through every current session and checking if they have a NowPlayingItem key which is only present when they have a video open (both playing and paused). It works very reliability, I am using it to automatically change my lights when I watch a long video or movie.

  • Would this flow work with Immich & Syncthing to copy images and auto upload and delete?
  • Ah, I am not familiar at all with Windows, so I honestly wouldn't know. Does the Immich CLI even work on Windows?

    But going off by the comments and the parts I understand, I guess it could kinda work, assuming that the arguments are all correct. Although, it will try to upload all photos every time, regardless if Immich already has them or not. Which is not ideal but I believe Immich will filter out duplicated photos. But it's worth checking if it's indeed smart enough to do that.

    For the Immich command it will upload the files to an album called "Camera_Backup". Not sure if that's what you want. If not, then remove the -a flag. If you want to upload it to a specific album, then instead add '-A albumname' (edit: I realize I might be wrong here. If you have multiple folders in Syncthing you're backing up it will work differently)

  • Would this flow work with Immich & Syncthing to copy images and auto upload and delete?
  • I understand you. I also don't use the auto upload feature as it's creating more problems for me to solve than what it fixes. I already had Syncthing running anyway so I currently use that combo (except I manually sort through my photos on a semi-weekly basis before I upload it to Immich).

    If you want, I can cook up a little Python script you could stick into Cron to do all the tasks you described. I haven't worked with the Immich CLI yet but I'm sure I can figure it out. Send me a message if you're interested. I will probably use it myself as well.

  • Backing-up Single Board Computer
  • I love that idea, and I'd love to implement that. But I honestly can never figure out how people are working with services that enables the user to change settings (for example, to set their location to get their local weather) while still maintaining a read-only system.

  • Google's anti-adblocker campaign
  • With ublock origin I haven't encountered popups for weeks. They update pretty much every day to keep on top of the YouTube changes.

    The only time I really got popups was when another extention I had was making ad changing modifications to YouTube which I didn't realize at that time.

  • Majestic
  • They have two layers. In the summer you want to brush out the insulting undercoat, but leave the topcoat as it protects against sunlight. A shaved husky will overheat in the sun and can easily get skin cancer! It also doesn't grow back properly. The husky in this picture will never have a normal coat again as it has his fur ruined for the rest of his life.

    There isn't any valid medical reason that requires to shave a husky entirely. Only people who don't understand how their coat work do it. It is basically animal abuse and it makes me sad every time I see this picture.

  • KDE Connect is the best! Also why isn't the app called KDE Konnekt 🤣
  • Yeah, kde connect can control media players on your desktop and automatically pause them when a call comes in. To make it work with Firefox I do now realise it might be limited to kde desktops only though. But if you have that, all you need is to install the plasma integration extension for Firefox (which does a couple of cool things) and then kde connect can see Firefox's media as well.

  • KDE Connect is the best! Also why isn't the app called KDE Konnekt 🤣
  • The first time it paused my YouTube video inside Firefox when a call came in on my phone, it blew my mind. And then when the call ended, it just casually resumed the video. I love it. That, the clipboard syncing and easy sharing of files between devices make it absolutely awesome to have.

  • InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)ES
    Esca @lemmy.one
    Posts 0
    Comments 19