• 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 Playback Error

     
    • 0 Vote(s) - 0 Average

    Playback Error

    Video not playing in hardware acceleration
    Cryotan
    Offline

    Junior Member

    Posts: 7
    Threads: 2
    Joined: 2024 Aug
    Reputation: 0
    Country:Netherlands
    #1
    2024-08-01, 12:35 AM
    So i've been trying to get my Jellyfin working on my PC.

    Relevant Hardware/Software information:
    Method: Installed Jellyfin directly from Terminal
    OS: Debian 12
    CPU: i5-2500
    RAM: 16GB

    Everything seems to be set up correctly until I try to play a video, it gives me the following error: ''Playback failed due to a fatal player error.''
    I used Video Acceleration API (VAAPI) for this, I've tried various other hardware accelerators but when playing the video it keeps giving me the same error.
    However, I found out that the video will play if I disable the hardware accelerator. It's not recommended because my videos will be too slow it's not enjoyable.

    Here is what I also tried doing:
    Installing the Intel VA-API Driver
    Making sure there is access to the videofile

    I would like to provide logs but whenever I try to upload it's telling me to use a different type, t's a plain text document.
    Let me know if you need to know anything else i'll gladly provide it.
    Thank you in advance for your help.
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,173
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #2
    2024-08-01, 12:42 AM
    You have an intel i5-2500 that's codenamed "Sandy Bridge".
    https://www.intel.com/content/www/us/en/...tions.html

    Use this wiki table to figure out the codecs that your CPU's iGPU supports: https://en.wikipedia.org/wiki/Intel_Quic...d_encoding

    So in your dashboard's playback settings for HWA, you should:

    Enable these decode codecs:
    1. H264
    2. MPEG2
    3. VC1

    Disable these decode codecs:
    1. HEVC
    2. VP8
    3. VP9
    4. AV1
    5. HEVC 10bit
    6. VP9 10bit

    Finally, you can enable encoding using HWA, but you cannot encode to HEVC or AV1 with the iGPU.
    Cryotan
    Offline

    Junior Member

    Posts: 7
    Threads: 2
    Joined: 2024 Aug
    Reputation: 0
    Country:Netherlands
    #3
    2024-08-02, 12:40 PM
    (2024-08-01, 12:42 AM)Efficient_Good_5784 Wrote: You have an intel i5-2500 that's codenamed "Sandy Bridge".
    https://www.intel.com/content/www/us/en/...tions.html

    Use this wiki table to figure out the codecs that your CPU's iGPU supports: https://en.wikipedia.org/wiki/Intel_Quic...d_encoding

    So in your dashboard's playback settings for HWA, you should:

    Enable these decode codecs:
    1. H264
    2. MPEG2
    3. VC1

    Disable these decode codecs:
    1. HEVC
    2. VP8
    3. VP9
    4. AV1
    5. HEVC 10bit
    6. VP9 10bit

    Finally, you can enable encoding using HWA, but you cannot encode to HEVC or AV1 with the iGPU.

    That seems to have solved the issue thank you so much! The videos play rather slow however I’m guessing it’s time for an hardware upgrade. I’m guessing if I were to use a CPU without integrated GPU paired with an Nvidia GPU I’m supposed to choose “nvenc” as accelerator right?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2024-08-02, 02:07 PM (This post was last modified: 2024-08-02, 02:08 PM by TheDreadPirate. Edited 1 time in total.)
    Correct. But if whatever you buy will only run Jellyfin, modern Intel CPUs have extremely capable iGPUs for transcoding. If you only have a couple users you don't need a dedicated GPU.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    Cryotan
    Offline

    Junior Member

    Posts: 7
    Threads: 2
    Joined: 2024 Aug
    Reputation: 0
    Country:Netherlands
    #5
    2024-08-03, 07:08 PM
    (2024-08-02, 02:07 PM)TheDreadPirate Wrote: Correct.  But if whatever you buy will only run Jellyfin, modern Intel CPUs have extremely capable iGPUs for transcoding.  If you only have a couple users you don't need a dedicated GPU.

    I am planning to use it just for Jellyfin, however i'm running it through a Reverse Proxy which requires SSL encryption so I definitely need some extra power.
    Enabling and disabling codecs has worked but now Jellyfin stopped playing videos through my domainname. I'm really confused because last time I used Jellyfin the videos did play through my dommainname.
    Maybe I changed a setting by accident, any idea what it could be or am I supposed nginx for help? Considering Jellyfin plays locally but stopped working threough proxy server.

    I also really appreciate your time and effort.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2024-08-03, 07:17 PM
    Is this vanilla Nginx or Nginx Proxy Manager? Can you share your config file (censor the domain) if vanilla Nginx. Take screenshots if Nginx Proxy Manager.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    Cryotan
    Offline

    Junior Member

    Posts: 7
    Threads: 2
    Joined: 2024 Aug
    Reputation: 0
    Country:Netherlands
    #7
    2024-08-03, 07:36 PM
    (2024-08-03, 07:17 PM)TheDreadPirate Wrote: Is this vanilla Nginx or Nginx Proxy Manager?  Can you share your config file (censor the domain) if vanilla Nginx.  Take screenshots if Nginx Proxy Manager.

    It's Nginx Proxy Manager, what exactly do you want me to take screenshots of? There are many settings.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #8
    2024-08-03, 07:53 PM
    Go into the proxy settings for Jellyfin and take a screenshot of each tab (4 tabs IIRC). Censor the domain.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    « Next Oldest | Next Newest »

    Users browsing this thread: 2 Guest(s)


    • 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