Posts by heitbaum
-
-
-
-
Hi,
I've just set up a brand new NUC with a Tiger Lake CPU/iGPU (1165g7) and I'm not having much luck with anything that requires GL graphics.
glxinfo provides:
name of display: :0.0
Error: couldn't find RGB GLX visual or fbconfig
I found this: which I thought might have something to do with the solution, so I compiled LE RR 10 from source with 5.11.22 but still the same issue.
I'll keep trying at it but thought I'd point out the issue and see if there's something simple that I might be overlooking?
Thanks
Hi glennguy the 5.10 LE works (ish) Though there are issues until you get to 5.12. I am running 5.14 on my NUC11 - though not doing any RR stuff. 5.14 will PR to nightly shortly, and there are a number of intel and mesa updates in nightly.
-
-
Hi thomsa for a new SD Card these are the right instructions. https://wiki.libreelec.tv/installation/create-media
-
Mr.Tiptop - librespot has been added back to the x86 Generic repository - FYI
-
It should be there now
librespot 10.0.0 124
-
You will need to add the addon - but will be in the addons list.
-
For Jellyfin there is a Addon that is close to release - just tidy it up the user interface, icons, …. But is fully functional against current.
Jellyfin: add new addon package by heitbaum · Pull Request #5488 · LibreELEC/LibreELEC.tv · GitHub
-
_fdc_ the build issues have been fixed. The addon should be available for download in the next few days.
-
HWTest - I have raised a bug [BUG] libraw image decoder not working · Issue #5524 · LibreELEC/LibreELEC.tv · GitHub - missing library issue. Will look at it. Identified another issue with libraw in my dev tree, so will try and fix both at the same time.
Fix queued up: imagedecoder.raw: link against static lcms2 by heitbaum · Pull Request #5525 · LibreELEC/LibreELEC.tv · GitHub
-
_fdc_ there are build issues with it on Generic - Update rust resolving TARGET=HOST build issues by heitbaum · Pull Request #5446 · LibreELEC/LibreELEC.tv · GitHub.
Grab the zip from here - LibreELEC.tv/10.0.0-Generic-x86_64-service.librespot-10.0.0.128.zip at librespot-bin · heitbaum/LibreELEC.tv · GitHub
Or self build it: LibreELEC.tv/10-build.sh at librespot-bin · heitbaum/LibreELEC.tv · GitHub
-
Hi Anewmission you will find mpd in the addons: services.multimedia. Version 0.22.9 is there LibreELEC.tv/packages/addons/service/mpd at master · LibreELEC/LibreELEC.tv · GitHub let us know how you go.
-
Excellent. Glad you have got it working 👍
-
nvdias any reason not to use ffmpegx? The Jellyfin PR that is is using ffmpegx and essentially does the same (but more)?
-
Hi nickybee123 search for H616 in the forums. Search Results - LibreELEC Forum
There is work going on to support the H616 in mainline Linux and uboot (in fact I have a TX6s running Linux - one of my many projects …). Linux mainlining effort - linux-sunxi.org - still a wile off for LE though.
-
Hi again,
I'm having a new problem related to the addition of Speech Dispatcher.
When building it, it checks for additional Voice TTSs and if it finds them, it adds the respective modules.
I'm trying to generate the eSpeak Module, but it needs the espeak library for the process, so I added espeak:host as a dependency.
The eSpeak package wasn't able to generate host builds, so I edited it and could add the eSpeak libraries and include headers to the toolchain. However, when trying to build Speech Dispatcher with espeak support it says that file <espeak/speak_lib.h> does not exist, but the file speak_lib.h is inside $TOOLCHAIN/include/espeak.
It seems that the build process is ignoring the toolchain paths, even if toolchain is in the package.mk as a target dependency.
My current package.mk:
--------------------
Code
Display MorePKG_NAME="speech-dispatcher" PKG_VERSION="0.10.2" PKG_SHA256="b06319f201e15e56c6296653af5bcfc300cb348e972d517df8b06eac77eae2dc" PKG_LICENSE="LGPL" PKG_SITE="https://freebsoft.org/speechd" PKG_URL="https://github.com/brailcom/speechd/releases/download/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.gz" PKG_DEPENDS_TARGET="toolchain glib dotconf libsndfile libpthread-stubs libtool alsa-lib pulseaudio espeak:host" PKG_LONGDESC="Common high-level interface to TTS" PKG_TOOLCHAIN="autotools" PKG_CONFIGURE_OPTS_TARGET="$PKG_CONFIGURE_OPTS_TARGET \ ac_cv_func_realloc_0_nonnull=yes \ ac_cv_func_malloc_0_nonnull=yes"
Can you share espeak/package.mk
Target depends on target generally.
…
Hypothetically…
Bob is a program that builds a file called bill.txt.
We want to use bill.txt as part of our build process for james.
E.g. cc -o james bill.txt James.c
Then bob:host makes sense… as “bob.exe” needs to run on you build host as a program to create bill.txt.
One of our examples would be cmake:host
cmake:target does not make sense - as when you are running LE10 on your RPi4 - you don’t want to run cmake. You only want to run cmake on the build host.
So if “espeak:host” is a program that generates abc.tts, bcd.tts - then espeak:host makes sense - on the build host.
If espeak:host builds a library called espeak.lib that is being used by speech-distpacher… e.g. cc -o speech-dispatcher speech-dispatcher.c -lespeak - this is INCORRECT using espeak:host … It should be espeak:target (which is the same as espeak.)
Ping me back on how you go.
--------------------