• 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 SOLVED: Jellyfin does not trancscode 4K HEVC in web player

    Pages (3): « Previous 1 2 3 Next »

     
    • 0 Vote(s) - 0 Average

    SOLVED: Jellyfin does not trancscode 4K HEVC in web player

    bioblatt
    Offline

    Junior Member

    Posts: 18
    Threads: 2
    Joined: 2024 Apr
    Reputation: 0
    #11
    2024-07-24, 06:55 PM
    still the same issue
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #12
    2024-07-24, 06:58 PM
    I'm sorry if you've answered this. There are like 3 threads with similar issues.

    What browser are you using and what version?
    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]
    bioblatt
    Offline

    Junior Member

    Posts: 18
    Threads: 2
    Joined: 2024 Apr
    Reputation: 0
    #13
    2024-07-24, 07:05 PM
    No problem Smiling-face I'm really thankful for your great support.

    I'm using Firefox 128.0 (64-Bit) on Windows 10 but it's also not working on my Android phone (Android 13) Jellyfin version 2.6.2 with the default Web player. The integrated player works fine.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #14
    2024-07-24, 08:07 PM
    Are you using a reverse proxy?
    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]
    bioblatt
    Offline

    Junior Member

    Posts: 18
    Threads: 2
    Joined: 2024 Apr
    Reputation: 0
    #15
    2024-07-24, 08:18 PM (This post was last modified: 2024-07-24, 08:21 PM by bioblatt. Edited 1 time in total.)
    Yes, I use Nginx as a reverse proxy.

    Here's my config:
    Code:
    server {
          server_name my_domain;

          access_log /var/log/nginx/jellyfin.access;
          error_log /var/log/nginx/jellyfin.error;

          set $jellyfin 127.0.0.1;

          location / {
              proxy_pass http://127.0.0.1:8096;
              proxy_set_header Host $host;
              proxy_set_header X-Real-IP $remote_addr;

              proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
              proxy_set_header X-Forwarded-Proto $scheme;
              proxy_set_header X-Forwarded-Protocol $scheme;
              proxy_set_header X-Forwarded-Host $http_host;

              # Disable buffering when the nginx proxy gets very resource heavy upon streaming
              proxy_buffering off;
          }

          location /socket {
              # Proxy Jellyfin Websockets traffic
              proxy_pass http://$127.0.0.1:8096;
              proxy_http_version 1.1;
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection "upgrade";
              proxy_set_header Host $host;
              proxy_set_header X-Real-IP $remote_addr;
              proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
              proxy_set_header X-Forwarded-Proto $scheme;
              proxy_set_header X-Forwarded-Protocol $scheme;
              proxy_set_header X-Forwarded-Host $http_host;
          }

            # Security / XSS Mitigation Headers
            #add_header X-Frame-Options "SAMEORIGIN";
            add_header Cross-Origin-Resource-Policy "cross-origin" always;
            add_header X-XSS-Protection "1; mode=block";
            add_header X-Content-Type-Options "nosniff";

        listen 443 ssl; # managed by Certbot
        ssl_certificate /etc/letsencrypt/live/my_domain/fullchain.pem; # managed by Certbot
        ssl_certificate_key /etc/letsencrypt/live/my_domain/privkey.pem; # managed by Certbot
        include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

    }
    server {
        if ($host = my_domain) {
            return 301 https://$host$request_uri;
        } # managed by Certbot


          listen 80;
          server_name my_domain;
        return 404; # managed by Certbot


    }
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #16
    2024-07-24, 09:03 PM
    For testing, can you set X-XSS-Protection from "1; mode=block" to "0". Our documentation says to not enable it, period.

    Code:
    # Security / XSS Mitigation Headers
        # NOTE: X-Frame-Options may cause issues with the webOS app
        add_header X-XSS-Protection "0"; # Do NOT enable. This is obsolete/dangerous
        add_header X-Content-Type-Options "nosniff";

    Reload nginx and try again.
    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]
    bioblatt
    Offline

    Junior Member

    Posts: 18
    Threads: 2
    Joined: 2024 Apr
    Reputation: 0
    #17
    2024-07-24, 09:13 PM
    Done. Made no difference.
    bioblatt
    Offline

    Junior Member

    Posts: 18
    Threads: 2
    Joined: 2024 Apr
    Reputation: 0
    #18
    2024-07-27, 11:48 PM
    Anything else I can try?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #19
    2024-07-28, 12:27 AM
    You've got me stumped. Are you using any extensions in the browser?
    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]
    bioblatt
    Offline

    Junior Member

    Posts: 18
    Threads: 2
    Joined: 2024 Apr
    Reputation: 0
    #20
    2024-07-28, 07:45 AM
    Yes but like I said, this also happens on the android app.
    Pages (3): « Previous 1 2 3 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