2025-02-19, 04:47 PM
(This post was last modified: 2025-02-20, 09:50 AM by MutzelBruzzel. Edited 3 times in total.)
Hi folks,
I just got my new 'mini PC (intel i5-10300H / NVIDIA RTX 2060-mobile)' for jellyfin, but unfortunately it's not working as intended:
- Using only the CPU results in lags and 100% usage -> Ok nvm
- Using the NVIDIA NVENC (with H264, VC1, HEVC 10bit and VP9 10bit) results in an error message.
Trancsoder-log:
'nvidia-smi' says:
I am using the jellyfin docker and my 'docker-compose.yaml' looks like this:
What did I do wrong?
I just got my new 'mini PC (intel i5-10300H / NVIDIA RTX 2060-mobile)' for jellyfin, but unfortunately it's not working as intended:
- Using only the CPU results in lags and 100% usage -> Ok nvm
- Using the NVIDIA NVENC (with H264, VC1, HEVC 10bit and VP9 10bit) results in an error message.
Trancsoder-log:
Quote:[h264_nvenc @ 0x5a5afe243b40] Cannot load libnvidia-encode.so.1
[h264_nvenc @ 0x5a5afe243b40] The minimum required Nvidia driver for nvenc is 520.56.06 or newer
[vost#0:0/h264_nvenc @ 0x5a5afe47b380] Error while opening encoder - maybe incorrect parameters such as bit_rate, rate, width or height.
[vf#0:0 @ 0x5a5afe3c7100] Error sending frames to consumers: Operation not permitted
[vf#0:0 @ 0x5a5afe3c7100] Task finished with error code: -1 (Operation not permitted)
[vf#0:0 @ 0x5a5afe3c7100] Terminating thread with return code -1 (Operation not permitted)
[hevc @ 0x5a5afe423a40] Skipping NAL unit 63
Last message repeated 1 times
[hevc @ 0x5a5afe410bc0] Skipping NAL unit 63
Last message repeated 1 times
[hevc @ 0x5a5afe914880] Skipping NAL unit 63
Last message repeated 1 times
[hevc @ 0x5a5afe332200] Skipping NAL unit 63
Last message repeated 1 times
[vost#0:0/h264_nvenc @ 0x5a5afe47b380] Could not open encoder before EOF
[vost#0:0/h264_nvenc @ 0x5a5afe47b380] Task finished with error code: -22 (Invalid argument)
[vost#0:0/h264_nvenc @ 0x5a5afe47b380] Terminating thread with return code -22 (Invalid argument)
[out#0/hls @ 0x5a5afe34ce40] Nothing was written into output file, because at least one of its streams received no packets.
frame= 0 fps=0.0 q=0.0 Lsize= 0KiB time=N/A bitrate=N/A speed=N/A
Conversion failed!
'nvidia-smi' says:
Quote:NVIDIA-SMI 550.127.08 Driver Version: 550.127.08 CUDA Version: 12.4
I am using the jellyfin docker and my 'docker-compose.yaml' looks like this:
Quote:
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Germany/Berlin
volumes:
- jellyfin-configconfig
- /mediamedia-lokal
ports:
- 8096:8096
restart: unless-stopped
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities:
- gpu
- utility
- compute
volumes:
jellyfin-config:
What did I do wrong?