2024-01-22, 04:25 PM
(This post was last modified: 2024-01-22, 04:28 PM by Prince3739.)
(2024-01-22, 11:41 AM)mikesulsenti Wrote: You should be using QSV instead of VA-API when using Intel graphics
See if your docker container can actually utilize it:
andCode:docker exec -it jellyfin /usr/lib/jellyfin-ffmpeg/vainfo
Code:docker exec -it jellyfin /usr/lib/jellyfin-ffmpeg/ffmpeg -v verbose -init_hw_device vaapi=va -init_hw_device opencl@va
(2024-01-22, 04:25 PM)Prince3739 Wrote:(2024-01-22, 11:41 AM)mikesulsenti Wrote: You should be using QSV instead of VA-API when using Intel graphics
See if your docker container can actually utilize it:
andCode:docker exec -it jellyfin /usr/lib/jellyfin-ffmpeg/vainfo
Code:docker exec -it jellyfin /usr/lib/jellyfin-ffmpeg/ffmpeg -v verbose -init_hw_device vaapi=va -init_hw_device opencl@va
(2024-01-22, 10:28 AM)Prince3739 Wrote: Hello all,
I'm trying to figure out hardware acceleration on jelly fin. I have jell fin installed on a docker container.
My setup
Device : Intel NUC
CPU : Intel® Core™ i5-5250U processor Architecture: X64
OS : Linux Mint
Jellyfin Version : Version: 10.8.13
Graphics: Driver: i915 Model: HD Graphics 6000
Below is the stack I'm running on docker container.
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=100
- TZ=Europe/Berlin
volumes:
- /xxxxx/xxxx/Documents/docker/dockerconfigs/jellyfin: /config
- /media/datadrive/media/tv: /data/tvshows
- /media/datadrive/media/movies: /data/movies
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
devices:
- /dev/dri: /dev/dir
restart: unless-stopped
Whenever trying to play HEVC format for chrome browser on my PC, getting this error: Playback Error
This client isn't compatible with the media and the server isn't sending a compatible media format.
Also tried both Intel quick sync and video acceleration API but nothing works
I have checked off the HEVC decoding but still wont work.
Any suggestion would be help full, thanks