• 0 Posts
  • 74 Comments
Joined 4 months ago
cake
Cake day: October 26th, 2025

help-circle













  • wltr@discuss.tchncs.detoLinux@lemmy.mlUbuntu spotted in the wild
    link
    fedilink
    arrow-up
    3
    arrow-down
    2
    ·
    edit-2
    7 days ago

    I used to run LibreELEC (a standalone Kodi with some very basic locked down Debian) on a Raspberry Pi 2B with 2 GB microSD card. Works very well running 1080P H264 content (version 1.2, version 1.1 does not run 1080P well) over LAN.

    I upgraded the setup for Orange Pi PC One, as it allows to be less picky about what I download, and decodes H265. But even RPi2 is quite capable, especially when you need to loop one video, which you can encode as you like.

    Saying that, it’s surprising someone would even consider running a full blown Ubuntu on it. To me, that’s a sign of a sheer incompetence. I have no other explanation for this phenomenon.





  • I have this for Kodi as a shortcut for iOS. You can connect via ssh if you allow ssh in settings.

    My command is:

    curl -u login:password —header “Content-Type: application/json” —request POST —data ‘{“jsonrpc”: “2.0”, “method”: “Application.SetVolume”, “params”: {“volume”: Rounded Number}, “id”: 1}’ http://localhost:8080/jsonrpc

    My exact command is a bit different, it takes the current volume of my iPhone / iPad multiplies that by 100 (as iOS volume is between 0 and 1, while Kodi’s from 0 to 100) and sends that volume to the HTPC. But it’s a nice idea, and there are various options to make it. I think I’d just do two buttons.

    So you can take that code and change Rounded Number to actual volume you need.