• 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 Unable to play/scream via the Webinterface on Chrome based browsers

    Pages (2): 1 2 Next »

     
    • 0 Vote(s) - 0 Average

    Unable to play/scream via the Webinterface on Chrome based browsers

    MikeSouth
    Offline

    Junior Member

    Posts: 7
    Threads: 1
    Joined: 2024 Jul
    Reputation: 0
    Country:Germany
    #1
    2024-07-24, 02:52 PM (This post was last modified: 2024-07-24, 03:33 PM by MikeSouth. Edited 4 times in total.)
    Hi,
    I am unable to stream/play any videos via the web interface using Chrome based browsers, it works fine using the apps as well as on Firefox. The error message I get is "Playback failed due to a fatal player error."

    So I have jellyfin 10.9.8 running on ubuntu 22.04 on a baremetal Haswell CPU. It doesn't matter what Codec is used in the video, I can't play anything in Chrome, it doesn't matter what Client OS I use.

    Full log: https://pastebin.com/mfBB5wRi
    My encoding.xml: https://pastebin.com/EWNEAixk

    More info about my setup
    Code:
    [root@<SERVERNAME> /var/log/jellyfin $ lsb_release -a
    No LSB modules are available.
    Distributor ID: Ubuntu
    Description: Ubuntu 22.04.4 LTS
    Release: 22.04
    Codename: jammy
    [root@<SERVERNAME> /var/log/jellyfin $ dpkg -l | grep jelly
    ii  jellyfin                              10.9.8+ubu2204                          all          Jellyfin is the Free Software Media System.
    rc  jellyfin-ffmpeg5                      5.1.4-3-jammy                          amd64        Tools for transcoding, streaming and playing of multimedia files
    ii  jellyfin-ffmpeg6                      6.0.1-7-jammy                          amd64        Tools for transcoding, streaming and playing of multimedia files
    ii  jellyfin-server                        10.9.8+ubu2204                          amd64        Jellyfin is the Free Software Media System.
    ii  jellyfin-web                          10.9.8+ubu2204                          all          Jellyfin is the Free Software Media System.
    [root@<SERVERNAME> /var/log/jellyfin $ lscpu | grep "Model name"
    Model name:                        Intel(R) Xeon(R) CPU E3-1271 v3 @ 3.60GHz

    Could someone please point me to to what I am doing wrong?

    Thanks in advance,
    Mike
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-07-24, 03:07 PM
    Instead of using an override logging.json, can you remove that file and set the log level to Debug directly in logging.default.json in /etc/jellyfin? The log is much cleaner and easier to read when Debug is set in the default json file.

    Also, you should remove jellyfin-ffmpeg5.

    Code:
    sudo systemctl stop jellyfin
    sudo apt remove jellyfin-ffmpeg5

    Ignore the prompts about "jellyfin-server not being needed". It won't actually remove them.

    Code:
    sudo apt reinstall jellyfin-ffmpeg6
    sudo systemctl start jellyfin

    Once you've reinstalled jellyfin-ffmpeg6, replicate the problem and share the new jellyfin log.
    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]
    MikeSouth
    Offline

    Junior Member

    Posts: 7
    Threads: 1
    Joined: 2024 Jul
    Reputation: 0
    Country:Germany
    #3
    2024-07-24, 03:54 PM (This post was last modified: 2024-07-24, 03:59 PM by MikeSouth. Edited 3 times in total.)
    They TheDreadPirate, thank you very much for your help.
    I've just edited my thread because I only experience this on Chrome based browsers, it took a while to realize this as I basically only use Chrome based browsers.
    jellyfin-ffmpeg5 was not installed but still had config files "^rc", of I've purged it. The process > https://pastebin.com/RDQHXMBa
    Here is the jellyfin log after removing logging.json and restarting jellyfin  > https://pastebin.com/wB5yX3HT
    Here is the ffmpeg output > https://pastebin.com/WxefdkYz

    The browser used was a google chrome version 127.0.6533.72 on ubuntu 24.04 linux with zero extensions.

    Here is the working ffmpeg logfile when using Firefox 128.0.2 on OSX
    https://pastebin.com/pqcyAidA
    theguymadmax
    Online

    Community Moderator

    Posts: 1,043
    Threads: 0
    Joined: 2024 Jun
    Reputation: 58
    #4
    2024-07-24, 04:12 PM
    Code:
      <AllowAv1Encoding>true</AllowAv1Encoding>

    Turn off AV1 encoding. Your iGPU doesn't support it.
    1
    1
    MikeSouth
    Offline

    Junior Member

    Posts: 7
    Threads: 1
    Joined: 2024 Jul
    Reputation: 0
    Country:Germany
    #5
    2024-07-24, 04:27 PM (This post was last modified: 2024-07-24, 04:39 PM by MikeSouth. Edited 1 time in total.)
    (2024-07-24, 04:12 PM)theguymadmax Wrote:
    Code:
      <AllowAv1Encoding>true</AllowAv1Encoding>

    Turn off AV1 encoding. Your iGPU doesn't support it.

    Thank you for your input, unfortiently this didn't solve the issue
    Code:
    [root@<SERVERNAME> /etc/jellyfin $ service jellyfin restart
    [root@<SERVERNAME> /etc/jellyfin $ grep Av1 encoding.xml
      <AllowAv1Encoding>false</AllowAv1Encoding>

    It still depends on the browser, see [Image: jh4nwHX.jpg]
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2024-07-24, 04:35 PM
    (2024-07-24, 04:12 PM)theguymadmax Wrote:
    Code:
      <AllowAv1Encoding>true</AllowAv1Encoding>

    Turn off AV1 encoding. Your iGPU doesn't support it.

    They didn't have HWA enabled, so it doesn't matter.

    Code:
    <HardwareAccelerationType />

    But the CPU is probably not up to the task either.  So it should have been disabled anyway.

    Are you using a reverse proxy?  If so which one?
    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]
    MikeSouth
    Offline

    Junior Member

    Posts: 7
    Threads: 1
    Joined: 2024 Jul
    Reputation: 0
    Country:Germany
    #7
    2024-07-24, 04:42 PM
    Yes I do use a reverse proxy, nginx Version 1.18.0-6ubuntu14.4
    Config: https://pastebin.com/UdLsg7We
    theguymadmax
    Online

    Community Moderator

    Posts: 1,043
    Threads: 0
    Joined: 2024 Jun
    Reputation: 58
    #8
    2024-07-24, 04:47 PM (This post was last modified: 2024-07-24, 04:57 PM by theguymadmax. Edited 1 time in total.)
    Try disabling hevc encoding. That could be difference between Chrome and Firefox.

    Also to correct my prior post, your processor doesn't have an iGPU, so I'm assuming this is a headless system.
    MikeSouth
    Offline

    Junior Member

    Posts: 7
    Threads: 1
    Joined: 2024 Jul
    Reputation: 0
    Country:Germany
    #9
    2024-07-24, 04:54 PM
    (2024-07-24, 04:47 PM)theguymadmax Wrote: Try disabling hevc encoding. That could be difference between Chrome and Firefox.

    I just did that, unfortiently it didn't change anything.
    Code:
    [root@<SERVERNAME> /etc/jellyfin $ service jellyfin restart
    [root@<SERVERNAME> /etc/jellyfin $ grep HevcEncoding encoding.xml
      <AllowHevcEncoding>false</AllowHevcEncoding>

    jellyfin log: https://pastebin.com/n8LhC0Fc
    ffmpeg log (much much longer then before): https://pastebin.com/QBgj5gU2
    theguymadmax
    Online

    Community Moderator

    Posts: 1,043
    Threads: 0
    Joined: 2024 Jun
    Reputation: 58
    #10
    2024-07-24, 05:06 PM
    Unless I'm missing something, your processor has no hardware codec support so everything should be disabled.
    1
    Pages (2): 1 2 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 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