• 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: Most compatible container and format

     
    • 0 Vote(s) - 0 Average

    SOLVED: Most compatible container and format

    ghiamar
    Offline

    Junior Member

    Posts: 12
    Threads: 1
    Joined: 2024 Jul
    Reputation: 0
    Country:Argentina
    #12
    2024-07-26, 07:07 PM (This post was last modified: 2024-07-26, 07:10 PM by ghiamar.)
    Docker compose
    Code:
    services:
      jellyfin:
        image: 'jellyfin/jellyfin:10.9.8'
        container_name: jellyfin
        restart: always
        volumes:
          - /media/data/jellyfin/config:/config
          - /media/data/jellyfin/cache:/cache
          - /media/data/jellyfin/media:/media
        # user: 0:0
        network_mode: 'host'
        # Optional - alternative address used for autodiscovery
        environment:
          - JELLYFIN_PublishedServerUrl=https://media.mgscreativa.com
        # Optional - may be necessary for docker healthcheck to pass if running in host network mode
        extra_hosts:
          - 'host.docker.internal:host-gateway'
        devices:
          - /dev/dri/renderD128:/dev/dri/renderD128

    sudo docker exec jellyfin env
    Code:
    PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
    HOSTNAME=xxxx
    JELLYFIN_PublishedServerUrl=https://xxxx.xxxx.com
    HEALTHCHECK_URL=http://localhost:8096/health
    DEBIAN_FRONTEND=noninteractive
    LC_ALL=en_US.UTF-8
    LANG=en_US.UTF-8
    LANGUAGE=en_US:en
    JELLYFIN_DATA_DIR=/config
    JELLYFIN_CACHE_DIR=/cache
    JELLYFIN_CONFIG_DIR=/config/config
    JELLYFIN_LOG_DIR=/config/log
    JELLYFIN_WEB_DIR=/jellyfin/jellyfin-web
    JELLYFIN_FFMPEG=/usr/lib/jellyfin-ffmpeg/ffmpeg
    XDG_CACHE_HOME=/cache
    MALLOC_TRIM_THRESHOLD_=131072
    NVIDIA_VISIBLE_DEVICES=all
    NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
    HOME=/root

    sudo cat /media/data/jellyfin/config/config/encoding.xml
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <EncodingOptions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <EncodingThreadCount>-1</EncodingThreadCount>
      <TranscodingTempPath>/cache/transcodes</TranscodingTempPath>
      <FallbackFontPath />
      <EnableFallbackFont>false</EnableFallbackFont>
      <EnableAudioVbr>false</EnableAudioVbr>
      <DownMixAudioBoost>2</DownMixAudioBoost>
      <DownMixStereoAlgorithm>None</DownMixStereoAlgorithm>
      <MaxMuxingQueueSize>2048</MaxMuxingQueueSize>
      <EnableThrottling>false</EnableThrottling>
      <ThrottleDelaySeconds>180</ThrottleDelaySeconds>
      <EnableSegmentDeletion>false</EnableSegmentDeletion>
      <SegmentKeepSeconds>720</SegmentKeepSeconds>
      <HardwareAccelerationType>vaapi</HardwareAccelerationType>
      <EncoderAppPathDisplay>/usr/lib/jellyfin-ffmpeg/ffmpeg</EncoderAppPathDisplay>
      <VaapiDevice>/dev/dri/renderD128</VaapiDevice>
      <EnableTonemapping>false</EnableTonemapping>
      <EnableVppTonemapping>false</EnableVppTonemapping>
      <EnableVideoToolboxTonemapping>false</EnableVideoToolboxTonemapping>
      <TonemappingAlgorithm>bt2390</TonemappingAlgorithm>
      <TonemappingMode>auto</TonemappingMode>
      <TonemappingRange>auto</TonemappingRange>
      <TonemappingDesat>0</TonemappingDesat>
      <TonemappingPeak>100</TonemappingPeak>
      <TonemappingParam>0</TonemappingParam>
      <VppTonemappingBrightness>16</VppTonemappingBrightness>
      <VppTonemappingContrast>1</VppTonemappingContrast>
      <H264Crf>23</H264Crf>
      <H265Crf>28</H265Crf>
      <EncoderPreset />
      <DeinterlaceDoubleRate>false</DeinterlaceDoubleRate>
      <DeinterlaceMethod>yadif</DeinterlaceMethod>
      <EnableDecodingColorDepth10Hevc>true</EnableDecodingColorDepth10Hevc>
      <EnableDecodingColorDepth10Vp9>true</EnableDecodingColorDepth10Vp9>
      <EnableEnhancedNvdecDecoder>true</EnableEnhancedNvdecDecoder>
      <PreferSystemNativeHwDecoder>true</PreferSystemNativeHwDecoder>
      <EnableIntelLowPowerH264HwEncoder>false</EnableIntelLowPowerH264HwEncoder>
      <EnableIntelLowPowerHevcHwEncoder>false</EnableIntelLowPowerHevcHwEncoder>
      <EnableHardwareEncoding>true</EnableHardwareEncoding>
      <AllowHevcEncoding>false</AllowHevcEncoding>
      <AllowAv1Encoding>false</AllowAv1Encoding>
      <EnableSubtitleExtraction>true</EnableSubtitleExtraction>
      <HardwareDecodingCodecs>
        <string>h264</string>
        <string>vc1</string>
      </HardwareDecodingCodecs>
      <AllowOnDemandMetadataBasedKeyframeExtractionForExtensions>
        <string>mkv</string>
      </AllowOnDemandMetadataBasedKeyframeExtractionForExtensions>

    For new QS settings, see attachment
       

    Tested on Shield TV Pro 2019 client and playback starts right away, testes on never played track, no remux, updated log https://pastebin.com/raw/v9U4vsEp
    Jellyfin Server 10.9.8 (Docker)
    Ubuntu 22.04 LTS
    Intel Core i5-8500T (6 cores, 6 threads)
    16GB (2x8GB) SODIMM DDR4-2667
    Intel UHD Graphics 630
    OS drive
        Samsung SSD 840 120GB
    Storage
        2x TeamGroup 2TB nvme (software raid1 mdadm)
    « Next Oldest | Next Newest »

    Users browsing this thread: 2 Guest(s)


    Messages In This Thread
    Most compatible container and format - by ghiamar - 2024-07-24, 09:51 PM
    RE: Most compatible container and format - by TheDreadPirate - 2024-07-25, 12:12 AM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 01:16 PM
    RE: Most compatible container and format - by TheDreadPirate - 2024-07-26, 01:38 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 01:55 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 02:22 PM
    RE: Most compatible container and format - by TheDreadPirate - 2024-07-26, 04:06 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 05:54 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 06:41 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 06:52 PM
    RE: Most compatible container and format - by TheDreadPirate - 2024-07-26, 06:54 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 07:07 PM
    RE: Most compatible container and format - by TheDreadPirate - 2024-07-26, 07:17 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 07:33 PM
    RE: Most compatible container and format - by TheDreadPirate - 2024-07-26, 08:05 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 10:35 PM
    RE: Most compatible container and format - by ghiamar - 2024-07-26, 10:52 PM
    RE: Most compatible container and format - by TheDreadPirate - 2024-07-27, 12:53 AM
    RE: Most compatible container and format - by ghiamar - 2024-07-28, 12:58 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