• 0 Posts
  • 58 Comments
Joined 2 years ago
cake
Cake day: September 9th, 2023

help-circle




  • Thank you. I have seen the ASM1166 mentioned before as part of such a solution, but the other suggestions were new to me.

    Can you also confirm to me, have I got it right that (some/all? of) the N100 boards has everything included regarding CPU, GPU and RAM, while most other mini-ITX boards come without those? Or did I get that wrong? Sorry for bothering you, but it’s all still a bit confusing to me, and I have an empty Jonsbo N3 case, and some 22TB drives that are longing to move into their house.







  • being able to control the player from an android phone was so convenient and I don’t know any other player that has similar.

    Well, you can remote control playback in Kodi through apps like Kore, and browse the libraries, but it’s a totally different experience in comparison to dedicated music player apps. Kodi is more like software for a home theater PC, a.k.a. media center.

    The best viable solution I can think of, that includes a desktop UI and remote control from a phone, would be hosting a Jellyfin server for the music library, then using the client app for Android to remotely control another client app running on your desktop. I do that everyday (but mostly for video content), since I’m using my phone to control playback on a Raspberry Pi running Kodi with the “Jellycon” client add-on, but that could be any other Jellyfin client, such as a regular Jellyfin desktop client.








  • Thinking a bit outside the box, if your phone is capable of it, you could find a way to run a small local LLM on it. Maybe it can even be done in Termux?

    If that’s not an option and/or you need a bigger, more capable model, you could host a local Ollama instance, and connect to it from the Ollama (IzzyOnDroid) or GPTMobile (F-Droid). This way you will only connect to yourself instead of some 3rd party translation or LLM provider.

    I think that, with a well-written system prompt, you could make it more efficient by concisely instructing it to expect your text input and a language (or include permanent language instructions in system prompt), to then only output the translated version of your input in that language. This will keep the number of input+output tokens low, thereby saving some inference. You can also get creative and instruct it to output multiple variations, change the style/tone/formatting, provide an example sentence containing a single translated word, etc…


  • There’s probably a Plex add-on for Kodi. At least, there is for Jellyfin and Emby. If you don’t like the UI, try changing it. I prefer the one called “Arctic: Zephyr - Reloaded”. You’ll need to customize the homescreen a bit to get the most out of it. That way you can make it show widgets of your content, e.g. the latest content added, continue watching, specific libraries, etc. That, at least, works very well with Jellyfin through the Jellycon add-on.


  • I thought this would work - and it does! Here’s how to add radio channels as Live TV:

    • From the Jellyfin homescreen menu, navigate to the Dashboard
    • Click the Dashboard menu button (three stripes at the top)
    • Go to Live TV
    • Click the first (+) button to add a new tuner device
    • Choose “M3U Tuner”
    • Select your local .m3u file or paste a URL
    • Click Save
    • Go back to the homescreen of Jellyfin
    • In the menu, click Live TV
    • Switch to the tab called Channels
    • If your .m3u file works, you can select any channel it contains from here.

    You can even add a custom logo for each channel:

    #EXTM3U
    #EXTINF:-1,Channel 1 tvg-logo="https://link.to/logo-ch1.png"
    http://liveradio.url.channel1.fake:8000/channel1-is-fake.mp3
    
    #EXTINF:-1,RadiOmega tvg-logo="https://linking.park/logo-radiomega.png"
    http://liveradio.nope.omegalive:8000/y/radiomega.mp3
    

    And rank them in the list by changing -1 to positive values IIRC.