Intermittent HW Transcoding - Is this normal?

I thought I was loosing my mind, that I had not properly setup IOMMU, and Drivers correctly. But after running some cuda stress tests, I can confirm that the GPU and rivers are holding up.

I just migrated from Plex on a Linux LXC, to docker. Below is my compose file.

When running a test playback from the web player, I will see it switch to HW mode for a few seconds, then switch back off. Logs show successful trans-coding, no errors.

Is this normal, my only assumption could be that it it processing ahead of time, but I am only on a 3050 in my server, so I would doubt it.

Any ideas?

Also, sometimes it just gets stuck on a black playback screen, and the timestamp slider stops working. Again, no errors in plex logs.

version: "3.8"
services:
  plex:
    image: lscr.io/linuxserver/plex:latest
    container_name: plex
    network_mode: host
    environment:
      - PUID=1000
      - PGID=1000
      - VERSION=docker
      - PLEX_CLAIM=90210
      - NVIDIA_VISIBLE_DEVICES=all
      - NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: 1
              capabilities: [gpu]
    volumes:
      - /opt/docker-volumes/plex/config:/config
      - /mnt/shares/nas-primary/multimedia_read:/media

    restart: unless-stopped

Server Version#: 1.41.8.9834
Player Version#: Web UI
<If providing server logs please do NOT turn on verbose logging, only debug logging should be enabled>

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.