2025-04-18, 07:49 AM
(This post was last modified: 2025-04-18, 09:49 PM by s_p. Edited 2 times in total.)
hello
I am having difficulty playing some files only through the Android app while everything is ok from the browser.
The host is a fanless with N5105 cpu and jellyfin installation is through docker.
In the logs I see MediaBrowser.MediaEncoding.Transcoding.TranscodeManager: FFmpeg exited with code 218.
Can this be fixed?
This is my >>>log<<<
transcoding setup
and docker-compose
I am having difficulty playing some files only through the Android app while everything is ok from the browser.
The host is a fanless with N5105 cpu and jellyfin installation is through docker.
In the logs I see MediaBrowser.MediaEncoding.Transcoding.TranscodeManager: FFmpeg exited with code 218.
Can this be fixed?
This is my >>>log<<<
transcoding setup
and docker-compose
Code:
---
version: "2.1"
services:
jellyfin:
image: ghcr.io/linuxserver/jellyfin
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Rome
- JELLYFIN_PublishedServerUrl=192.168.0.10 #optional
volumes:
- /srv/dev-disk-by-uuid-b1a430ba-feae-4449-b841-cd9bd6cdd32f/docker/Jellyfin:/config
- /srv/dev-disk-by-uuid-b1a430ba-feae-4449-b841-cd9bd6cdd32f/video/serie:/tv
- /srv/dev-disk-by-uuid-b1a430ba-feae-4449-b841-cd9bd6cdd32f/video/film:/movies
- /opt/vc/lib:/opt/vc/lib #optional
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
restart: unless-stopped