2025-03-16, 02:27 PM
(This post was last modified: 2025-03-16, 02:29 PM by doobs. Edited 2 times in total.)
Greetings,
I've stood up a new (to me) server with JellyFin and TVHeadEnd in Docker containers.
Everything is configured properly, JellyFin downloads the schedule, etc, etc, etc.
In all my JellyFin Clients, browser, Android, etc,
I get a playback error.
"Playback failed due to a fatal playback error".
I used this process to install jellyfin, although i did not make a docker compose file. With the Docker pull command, it set everything up and configured all the folders and such.
My Tvheadend Docker-compose looks like:
Thanks!
I've stood up a new (to me) server with JellyFin and TVHeadEnd in Docker containers.
Everything is configured properly, JellyFin downloads the schedule, etc, etc, etc.
In all my JellyFin Clients, browser, Android, etc,
I get a playback error.
"Playback failed due to a fatal playback error".
I used this process to install jellyfin, although i did not make a docker compose file. With the Docker pull command, it set everything up and configured all the folders and such.
My Tvheadend Docker-compose looks like:
Code:
services:
tvheadend:
image: lscr.io/linuxserver/tvheadend:latest
container_name: tvheadend
environment:
- PUID=1000
- PGID=1000
- TZ=Americas/New_York
- RUN_OPTS= #optional
volumes:
- /home/elitedesk2/tvheadend/data:/config
- /home/elitedesk2/tvheadend/recordings:/recordings
ports:
- 9981:9981
- 9982:9982
devices:
- /dev/dri:/dev/dri #optional
- /dev/dvb:/dev/dvb #optional
restart: unless-stopped
Thanks!
chris