• 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

     
    • 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
    #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


    }
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 03:37 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-24, 03:45 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 03:50 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-24, 04:12 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 04:27 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-24, 05:00 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-24, 05:05 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 05:21 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 05:48 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-24, 06:52 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 06:55 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-24, 06:58 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 07:05 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-24, 08:07 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 08:18 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-24, 09:03 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-24, 09:13 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-27, 11:48 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-07-28, 12:27 AM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-07-28, 07:45 AM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-08-07, 08:01 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-08-07, 08:51 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-08-07, 09:00 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-08-07, 09:28 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-08-08, 05:49 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-08-08, 06:05 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-08-08, 06:11 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by TheDreadPirate - 2024-08-08, 06:20 PM
    RE: Jellyfin does not trancscode 4K HEVC in web player - by bioblatt - 2024-08-08, 06:41 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