You'll need the latest kernel, so no 7.0.x will not work for you unless you make a custom build
Posts by lrusak
-
-
Docker is likely to be the route we take for MySQL, but there are some chicken vs. egg logic challenges to figure out first since you want MySQL to start before Kodi but in the current design docker is a Kodi addon that starts with/after Kodi. It's being discussed, albeit not at a high priority.This was just changed in the recent docker addon update
-
Will this now work on generic x64 buolds now?Yes when the addon shows up in the repo
-
I'll need to see debug logs.
I just retested and it should be fine.
FYI, the "kodi game add-on repository (alpha)" will be empty
You need to use "LibreELEC Retroplayer Add-ons" -
That was fast!
Btw lrusak, did you enable the NEON optimizations in opus for ARM? (ref)done, thanks for pointing that out, moonlight: allow building for Generic, add neon support in opus by lrusak · Pull Request #368 · LibreELEC/LibreELEC.tv · GitHub
-
Thank for all your reply!change question:
will ever be planned an app to view Netflix "out of the box" (just install, configure and enjoy?)
No, because in order to use netflix you must use libwidevinecdm.so which is not redisributable. So the use will always have to install this. We can make scripts to install this (like I have in chromium) but the user must initiate the process.
-
I think a generic build is possible using SDL and ffmpeg!I'll look into it
-
latest version on a rpi2 shows all addons as incompatible.make sure peripheral.joystick is enabled
-
did you enable mouse support in kodi?
system --> system --> input devices --> enable mouse and touchscreen support
-
-
It seems to me that whatever change I have made in the settings.json file, no change in Transmission occurs. Which file should I edit to change ports, directories, etc?you can change ports and directories via the systemd service or via the docker run command line arguements
for example, here is the service file
Code
Display More[Unit] Description=%p container Requires=service.system.docker.service After=service.system.docker.service [Service] Restart=always RestartSec=10s TimeoutStartSec=0 ExecStartPre=-/bin/sh -c "mkdir -p /storage/%p/watch /storage/%p/downloads /storage/%p/incomplete /storage/%p/config" ExecStart=/storage/.kodi/addons/service.system.docker/bin/docker run \ --rm \ --name=%p \ --hostname=libreelec-%p \ --volume=/storage/%p/watch:/watch \ --volume=/storage/%p/downloads:/downloads \ --volume=/storage/%p/incomplete:/incomplete \ --volume=/storage/%p/config:/config \ --publish=9091:9091 \ --publish=45555:45555 \ libreelecarm/%p ExecStop=/storage/.kodi/addons/service.system.docker/bin/docker stop %p [Install] WantedBy=multi-user.target
change
to
the %p just stands for the service file prefix, in this case "transmission"and for changing the port you should change
toI hope this helps.
PS. after you change the service you will have to reload and restart (if using the systemd service)
-
Any chance to get your addon for the Generic build?it uses moonlight-embedded so it's not possible.
-
-
Ooh new build ahoy.... Though why o why did you wait until I'm away for 3 days to do itSent from my D5803 using Tapatalk
Yes new builds, an lots of changes. there is now a savestate database!
Many more changes can be seen here, Commits · garbear/xbmc · GitHub
-
For openelec i have found this on github: New Addon - picamera by lrusak · Pull Request #60 · OpenELEC/unofficial-addons · GitHubBut i cant doing anything whit this addon
The picamera python module is available in the RPI-TOOLS addon in the LibreELEC addon repo.
-
Won't be fixed, kodi 17 has a totally new input system and the changes are to big to be back ported, so you'll have to use devel builds or just make due for now.
-
Alpha builds are coming soon
Otherwise you can always compile LibreELEC yourself.
-
I can look into this, maybe there is an easy solution, but for now you should be able to
edit /storage/.kodi/addons/browser.chromium/bin/chromium
change the line
toCodeLANG=en_US.utf8 LD_PRELOAD=/usr/lib/libGL.so /storage/.kodi/addons/browser.chromium/bin/chromium.bin \
where LANG is which locale you want.