• 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 General Questions Jellyfin pauses with 4K movie on local network in Synology DS224+

     
    • 0 Vote(s) - 0 Average

    Jellyfin pauses with 4K movie on local network in Synology DS224+

    angelsing
    Offline

    Junior Member

    Posts: 2
    Threads: 1
    Joined: 2024 Sep
    Reputation: 0
    Country:Colombia
    #1
    2024-09-28, 01:41 AM
    Hello,
    I recently installed and configured Jellyfin on my Synology DS224+ NAS with an Intel CPU using Docker through a YAML file that installs the latest version (10.9.11). The issue I'm facing is that when playing 4K (HEVC) movies, after a while of continuous playback, they start to pause. This doesn't happen with Plex, which leads me to think that Plex is transcoding the content, preventing the pauses. However, I haven’t configured anything related to transcoding in either program.

    My NAS is a Synology DS224+ with an Intel Celeron J4125 CPU and 10 GB of RAM. The YAML code I used to install Jellyfin is as follows:

    Code:
    version: '3.5'
    services:
      jellyfin:
        image: jellyfin/jellyfin:latest
        container_name: jellyfin
        environment:
          - PUID=1026
          - GUID=100
          - TZ=America/Bogota
        network_mode: host
        volumes:
          - /volume1/docker/jellyfin_update/config:/config:rw
          - /volume1/docker/jellyfin_update/cache:/cache:rw
          - /volume1/video/Series:/Series:rw
          - /volume1/video/Movies:/Movies:rw
          - /volume1/video/Intros:/Intros:rw
        restart: unless-stopped

    The details of the 4K movie are as follows:

    Quote:General
    Unique ID                      : 314257487104850058564620213900128731829 (0xEC6BCA5C000D1127FA05F0EB5C7EC2B5)
    Complete name                  : \\xxxxxxxx\xxxx\Peliculas 4K Temp\Borderlands - El destino del universo está en juego (2024) 4K\Borderlands - El destino del universo está en juego (2024) 4K.mp4
    Format                        : Matroska
    Format version                : Version 4
    File size                      : 17.1 GiB
    Duration                      : 1 h 40 min
    Overall bit rate              : 24.3 Mb/s
    Frame rate                    : 23.976 FPS
    Movie name                    : xxxxxxxxxxxx
    Encoded date                  : 2024-09-27 22:06:02 UTC
    Writing application            : mkvmerge v87.0 ('Black as the Sky') 64-bit
    Writing library                : libebml v1.4.5 + libmatroska v1.7.1
    FileExtension_Invalid          : mkv mk3d mka mks

    Video
    ID                            : 1
    Format                        : HEVC
    Format/Info                    : High Efficiency Video Coding
    Format profile                : Main 10@L5@High
    HDR format                    : Dolby Vision, Version 1.0, Profile 8.1, dvhe.08.06, BL+RPU, no metadata compression, HDR10 compatible / SMPTE ST 2094 App 4, Version HDR10+ Profile B, HDR10+ Profile B compatible
    Codec ID                      : V_MPEGH/ISO/HEVC
    Duration                      : 1 h 40 min
    Bit rate                      : 23.7 Mb/s
    Width                          : 3 824 pixels
    Height                        : 1 592 pixels
    Display aspect ratio          : 2.40:1
    Frame rate mode                : Constant
    Frame rate                    : 23.976 (24000/1001) FPS
    Color space                    : YUV
    Chroma subsampling            : 4:2:0 (Type 2)
    Bit depth                      : 10 bits
    Bits/(Pixel*Frame)            : 0.162
    Stream size                    : 16.7 GiB (97%)
    Title                          : xxxxxxxxx
    Language                      : English
    Default                        : Yes
    Forced                        : Yes
    Color range                    : Limited
    Color primaries                : BT.2020
    Transfer characteristics      : PQ
    Matrix coefficients            : BT.2020 non-constant
    Mastering display color primar : Display P3
    Mastering display luminance    : min: 0.0050 cd/m2, max: 4000 cd/m2
    Maximum Content Light Level    : 1039 cd/m2
    Maximum Frame-Average Light Le : 239 cd/m2

    Audio
    ID                            : 2
    Format                        : E-AC-3
    Format/Info                    : Enhanced AC-3
    Commercial name                : Dolby Digital Plus
    Codec ID                      : A_EAC3
    Duration                      : 1 h 40 min
    Bit rate mode                  : Constant
    Bit rate                      : 640 kb/s
    Channel(s)                    : 6 channels
    Channel layout                : L R C LFE Ls Rs
    Sampling rate                  : 48.0 kHz
    Frame rate                    : 31.250 FPS (1536 SPF)
    Compression mode              : Lossy
    Stream size                    : 461 MiB (3%)
    Title                          : xxxxxxxxxxxx
    Language                      : Spanish
    Service kind                  : Complete Main
    Default                        : Yes
    Forced                        : No
    Dialog Normalization          : -31 dB
    compr                          : -0.28 dB
    dialnorm_Average              : -31 dB
    dialnorm_Minimum              : -31 dB
    dialnorm_Maximum              : -31 dB

    My question is: Does anyone know why this might be happening? Should I enable transcoding in Jellyfin to prevent the pauses? If so, how can I configure it properly?
    Thank you in advance for any guidance.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-09-28, 02:02 AM (This post was last modified: 2024-09-28, 02:03 AM by TheDreadPirate. Edited 2 times in total.)
    You didn't pass in the GPU into the container.

    Code:
        devices:
          - /dev/dri/renderD128:/dev/dri/renderD128

    Read this guide from our walk through sub-forum.

    https://forum.jellyfin.org/t-guide-runni...er-compose


    HAVING SAID THAT, your video is HDR and Intel no longer supports tone mapping on Synology NASes.
    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]
    angelsing
    Offline

    Junior Member

    Posts: 2
    Threads: 1
    Joined: 2024 Sep
    Reputation: 0
    Country:Colombia
    #3
    2024-09-28, 03:02 AM
    (2024-09-28, 02:02 AM)TheDreadPirate Wrote: You didn't pass in the GPU into the container.

    Code:
        devices:
          - /dev/dri/renderD128:/dev/dri/renderD128

    Read this guide from our walk through sub-forum.

    https://forum.jellyfin.org/t-guide-runni...er-compose


    HAVING SAID THAT, your video is HDR and Intel no longer supports tone mapping on Synology NASes.

    ok i left my code like this:

    Code:
    version: '3.5'
    services:
      jellyfin:
        image: jellyfin/jellyfin:latest
        container_name: jellyfin
        environment:
          - PUID=1026
          - GUID=100
          - TZ=America/Bogota
        network_mode: host
        volumes:
          - /volume1/docker/jellyfin_update/config:/config:rw
          - /volume1/docker/jellyfin_update/cache:/cache:rw
          - /volume1/video/Series:/Series:rw
          - /volume1/video/Peliculas:/Peliculas:rw
          - /volume1/video/Intros:/Intros:rw
        devices:
          - /dev/dri/renderD128:/dev/dri/renderD128
          - /dev/dri/card0:/dev/dri/card0
        restart: unless-stopped

    I will try playing a 4k movie again on my local network. Do you know what parameters I should enable in the Jellyfin configuration - playback - transcoding? It is not explained in the guide you sent me.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2024-09-28, 03:49 AM (This post was last modified: 2024-09-28, 03:50 AM by TheDreadPirate.)
    Use the Gemini Lake column on this wiki table.

    https://en.wikipedia.org/wiki/Intel_Quic...d_encoding
    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: 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