Spyke

Posts

PSA: If your Jellyfin is having high memory usage, add MALLOC_TRIM_THRESHOLD_=100000 to environment

Many users reported high memory/RAM usage, some 8GB+.

In my case gone from 1.5GB+ to 400MB or less on Raspberry Pi 4.

Adding MALLOC_TRIM_THRESHOLD_=100000can make a big difference.

With Docker:
Add to your docker-compose.yml and docker compose down && docker compose up -d

...
environment:
  - MALLOC_TRIM_THRESHOLD_=100000
...

With systemd:
Edit /etc/default/jellyfin change the value of MALLOC_TRIM_THRESHOLD_ and restart the service

# Disable glibc dynamic heap adjustment
MALLOC_TRIM_THRESHOLD_=100000

Source: https://github.com/jellyfin/jellyfin/issues/6306#issuecomment-1774093928

Official docker,Debian,Fedora packages already contain MALLOC_TRIM_THRESHOLD_.
Not present on some docker images like linuxserver/jellyfin

Check is container (already) have the variable
docker exec -it jellyfin printenv | grep MALLOC_TRIM_THRESHO LD_

View original on lemm.ee

Awesome Android TV FOSS Apps. A curated list of FOSS apps for Android TV

Description

Since there wasn't anything similar, i have created a list of Android apps for Android TV.
There are many other apps that i didn't test or are unknown to me.
Some aren't made specific for TV, but work without issues.
Not all are available on app stores (F-Droid, Google Play), only on git repositories (GitHub, GitLab, Codeberg...)

List: Awesome-Android-TV-FOSS-Apps

Contribute

App requirements:

  • Must be FOSS (source code publicly available)
  • 90%+ must be usable with standard TV remote (D-Pad, OK key...)
  • APK available on F-Droid, Google Play, git repository... (not only the source-code)

Submit an App to the list: https://github.com/Generator/Awesome-Android-TV-FOSS-Apps/issues

View original on lemm.ee

You reached the end