机器是前几天刚到的evo2

emby用的官方的docker镜像,latest版本4.9.3.0,compose中添加了硬解相关的配置
services:
emby:
image: emby/embyserver:latest
container_name: emby
ports:
- "8096:8096"
- "8920:8920"
restart: on-failure
privileged: true
environment:
- UID=1000
- GID=100
- GIDLIST=100
volumes:
- /vol1/1000/docker/emby/config:/config
- /vol1/1000/strm:/strm
- /vol2/1000/local:/local
devices:
- /dev/dri:/dev/dri
在emby中也可以看到集显被识别出来

但是在实际播放过程中,资源监控可以看到GPU占用持续为0,CPU占用跑满


有大佬知道这是什么原因吗?