Replies: 2 comments 3 replies
-
What is the output of nvidia-smi on the TrueNAS host? What is the output or nvidia-smi in the jail? Also post your jail config file please. |
Beta Was this translation helpful? Give feedback.
3 replies
-
The Geforce RTX 3050 was isolated when: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
System:
Chassis: Supermicro SC846BE1C-R1K23B
MB: Supermicro X11SPH-nCTF
CPU: Intel® Xeon® Silver 4114 Processor
RAM: 256 GiB Samsung M393A4K40BB2-CTD
GPU: Asus Geforce RTX 3050
OS: TrueNAS-SCALE-23.10.0.1
System Settings > Advanced > Isolated GPU Device(s) - Isolated GPU Device(s):NVIDIA Corporation GA106 [Geforce RTX 3050]
Jailmaker (jlmkr.py 1.0.1)
Docker - installed per convenience script
Jellyfin docker-compose.yml
version: '3.9'
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
networks:
- proxy
security_opt:
- no-new-privileges:true
restart: unless-stopped
user: 3000:3000
environment:
- PUID=3000
- PGID=3000
- TZ=America/New_York
volumes:
- /mnt/tank1/apps/jellyfin/config:/config
- /mnt/tank1/apps/jellyfin/cache:/cache
- /mnt/tank1/apps/jellyfin/logs:/logs
- /mnt/tank0/media:/data/media
#- /dev/shm:/data/transcode # Offload transcoding to RAM if you have enough RAM
devices:
- /dev/dri/card0:/dev/dri/card0
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.jellyfin.entrypoints=https"
- "traefik.http.routers.jellyfin.rule=Host(
jellyfin.example.net
)"- "traefik.http.routers.jellyfin.tls=true"
- "traefik.http.routers.jellyfin.service=jellyfin"
## HTTP Services
- "traefik.http.services.jellyfin.loadbalancer.server.port=8096"
networks:
proxy:
external: true
Jellyfin > Playback > Transcoding > Hardware acceleration > Nvidia NVENC
(H264, HEVC, VC1, AV1, HEVC 10bit)
I get Playback Error:
This client isn't compatible with the media and server isn't sending a compatible media format.
And without Hardware acceleration, the same media is played.
I would appreciate some help here!
Beta Was this translation helpful? Give feedback.
All reactions