• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting Transcoding on i7 4770k & GTX 770 (docker)

     
    • 0 Vote(s) - 0 Average

    Transcoding on i7 4770k & GTX 770 (docker)

    zjeffer
    Offline

    Junior Member

    Posts: 18
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:Belgium
    #1
    2024-05-20, 03:43 PM (This post was last modified: 2024-05-20, 04:24 PM by zjeffer. Edited 2 times in total.)
    I moved my jellyfin configuration from a Raspberry Pi 4 to a secondhand desktop PC I just bought. These are the specs:
    • Intel i7 4770k
    • GTX 770
    • 16 GB RAM

    I'm running it with the following docker-compose file:

    Code:
    services:
      jellyfin:
        image: linuxserver/jellyfin:latest
        container_name: jellyfin
        restart:  unless-stopped
        ports:
          - "8096:8096"
          - "8920:8920"
        networks:
          - proxy
        volumes:
          - ./data/jellyfin-config:/config
          - ./data/jellyfin-cache:/cache
          - /run/media/admin/Elements:/media
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/Brussels
          - NVIDIA_VISIBLE_DEVICES=all
          - NVIDIA_DRIVER_CAPABILITIES=compute,utility
        runtime: nvidia
        deploy:
          resources:
            reservations:
              devices:
                - driver: nvidia
                  count: all
                  capabilities: [gpu]

     
      caddy:
        image: caddy:latest
        container_name: caddy
        restart: unless-stopped
        ports:
          - "80:80"
          - "443:443"
          - "443:443/udp"
        networks:
          - "proxy"
        volumes:
          - ./Caddyfile:/etc/caddy/Caddyfile
          - ./data/caddy_data:/data
          - ./data/caddy_config:/config

    networks:
      proxy:
        driver: bridge

    If I try to play something with transcoding enabled (Nvidia NVENC), the ffmpeg logs show this, and playback stops:


    Code:
    [AVHWDeviceContext @ 0x605e7a2ffd00] Cannot load libcuda.so.1 
    [AVHWDeviceContext @ 0x605e7a2ffd00] Could not dynamically load CUDA Device creation failed: -1. 
    Failed to set value 'cuda=cu:0' for option 'init_hw_device': Operation not permitted

    I took a look at the GPU matrix from Nvidia, and noticed the GTX 770 isn't even present in the list. I assume it doesn't have NVENC/NVDEC at all?




    Here are my questions:
    • Can I use NVENC with my GTX 770?
    • If not, can I use the i7 4770k's integrated GPU with Intel QuickSync instead?
    • I notice there's also VAAPI and Video4Linux2 support. Are any of these useful/compatible with my setup?

    Thanks
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-20, 03:43 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-20, 04:35 PM
    RE: Transcoding on i5 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-20, 04:46 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-20, 05:06 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-20, 05:58 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-20, 06:25 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-20, 08:51 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-20, 08:56 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-20, 09:42 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-22, 06:28 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-22, 06:38 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-23, 08:15 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-24, 01:09 AM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-24, 05:15 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-24, 05:22 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-24, 05:50 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-24, 05:59 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-24, 08:45 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-24, 09:42 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-24, 10:04 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-24, 10:31 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-24, 10:49 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-24, 10:56 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-05-24, 11:02 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-25, 08:51 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-05-25, 09:50 PM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by zjeffer - 2024-06-16, 10:41 AM
    RE: Transcoding on i7 4770k & GTX 770 (docker) - by TheDreadPirate - 2024-06-16, 04:43 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode