![]() |
VA-API trickplay encoding: failed to open /usr/lib64/dri/hybrid_drv_video.so - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: VA-API trickplay encoding: failed to open /usr/lib64/dri/hybrid_drv_video.so (/t-va-api-trickplay-encoding-failed-to-open-usr-lib64-dri-hybrid-drv-video-so) |
VA-API trickplay encoding: failed to open /usr/lib64/dri/hybrid_drv_video.so - brianjmurrell - 2025-07-02 I'm trying to diagnose why Trickplay stopped generating images. There error I'm getting from ffmpeg on trying to generate them is: Code: # sudo -u jellyfin bash -c "/usr/libexec/jellyfin-ffmpeg/ffmpeg -loglevel error -init_hw_device vaapi=va:/dev/dri/card0,driver=i965 -i file:\"/video/mythvideo/Movies/[redacted] WEBRip-1080p.mkv\" -an -sn -vf \"fps=0.10000000149011612,setparams=color_primaries=bt709:color_trc=bt709:colorspace=bt709,scale=trunc(min(max(iw\,ih*(a*sar))\,320)/2)*2:trunc(ow/(a*sar)/2)*2:out_range=pc,format=nv12,hwupload_vaapi\" -threads 1 -c:v mjpeg_vaapi -global_quality:v 91 -fps_mode passthrough -f image2 \"/tmp/jellyfin/564b5be3230d4cb8af42b79ae3cd481c/%08d.jpg\"" vainfo reports: Code: # sudo -u jellyfin bash -c "vainfo" So as you can see, vainfo seems to correctly identify that it needs to use /usr/lib64/dri/i965_drv_video but I don't see jellyfin-ffmpeg trying to use the same thing. Any ideas what is going wrong here? RE: VA-API trickplay encoding: failed to open /usr/lib64/dri/hybrid_drv_video.so - nyanmisaka - 2025-07-02 /usr/libexec/jellyfin-ffmpeg/ffmpeg According to the logs this is an unofficial version of jellyfin-ffmpeg, so whether it contains fully functional drivers depends on your own linux distro. https://github.com/intel/intel-vaapi-driver/blob/fd727a4e9cb8b2878a1e93d4dddc8dd1c1a4e0ea/README#L43 Also it is recommended that you disable hardware acceleration for Trickplay. Because Haswell does not support the MJPEG encoder. Eventually it will fail. |