< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Configuration.EncodingOptions
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Configuration/EncodingOptions.cs
Line coverage
100%
Covered lines: 42
Uncovered lines: 0
Coverable lines: 42
Total lines: 298
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Configuration/EncodingOptions.cs

#LineLine coverage
 1#pragma warning disable CA1819 // XML serialization handles collections improperly, so we need to use arrays
 2
 3#nullable disable
 4using MediaBrowser.Model.Entities;
 5
 6namespace MediaBrowser.Model.Configuration;
 7
 8/// <summary>
 9/// Class EncodingOptions.
 10/// </summary>
 11public class EncodingOptions
 12{
 13    /// <summary>
 14    /// Initializes a new instance of the <see cref="EncodingOptions" /> class.
 15    /// </summary>
 16    public EncodingOptions()
 17    {
 318        EnableFallbackFont = false;
 319        EnableAudioVbr = false;
 320        DownMixAudioBoost = 2;
 321        DownMixStereoAlgorithm = DownMixStereoAlgorithms.None;
 322        MaxMuxingQueueSize = 2048;
 323        EnableThrottling = false;
 324        ThrottleDelaySeconds = 180;
 325        EnableSegmentDeletion = false;
 326        SegmentKeepSeconds = 720;
 327        EncodingThreadCount = -1;
 28        // This is a DRM device that is almost guaranteed to be there on every intel platform,
 29        // plus it's the default one in ffmpeg if you don't specify anything
 330        VaapiDevice = "/dev/dri/renderD128";
 331        QsvDevice = string.Empty;
 332        EnableTonemapping = false;
 333        EnableVppTonemapping = false;
 334        EnableVideoToolboxTonemapping = false;
 335        TonemappingAlgorithm = TonemappingAlgorithm.bt2390;
 336        TonemappingMode = TonemappingMode.auto;
 337        TonemappingRange = TonemappingRange.auto;
 338        TonemappingDesat = 0;
 339        TonemappingPeak = 100;
 340        TonemappingParam = 0;
 341        VppTonemappingBrightness = 16;
 342        VppTonemappingContrast = 1;
 343        H264Crf = 23;
 344        H265Crf = 28;
 345        DeinterlaceDoubleRate = false;
 346        DeinterlaceMethod = DeinterlaceMethod.yadif;
 347        EnableDecodingColorDepth10Hevc = true;
 348        EnableDecodingColorDepth10Vp9 = true;
 349        EnableDecodingColorDepth10HevcRext = false;
 350        EnableDecodingColorDepth12HevcRext = false;
 51        // Enhanced Nvdec or system native decoder is required for DoVi to SDR tone-mapping.
 352        EnableEnhancedNvdecDecoder = true;
 353        PreferSystemNativeHwDecoder = true;
 354        EnableIntelLowPowerH264HwEncoder = false;
 355        EnableIntelLowPowerHevcHwEncoder = false;
 356        EnableHardwareEncoding = true;
 357        AllowHevcEncoding = false;
 358        AllowAv1Encoding = false;
 359        EnableSubtitleExtraction = true;
 360        AllowOnDemandMetadataBasedKeyframeExtractionForExtensions = ["mkv"];
 361        HardwareDecodingCodecs = ["h264", "vc1"];
 362    }
 63
 64    /// <summary>
 65    /// Gets or sets the thread count used for encoding.
 66    /// </summary>
 67    public int EncodingThreadCount { get; set; }
 68
 69    /// <summary>
 70    /// Gets or sets the temporary transcoding path.
 71    /// </summary>
 72    public string TranscodingTempPath { get; set; }
 73
 74    /// <summary>
 75    /// Gets or sets the path to the fallback font.
 76    /// </summary>
 77    public string FallbackFontPath { get; set; }
 78
 79    /// <summary>
 80    /// Gets or sets a value indicating whether to use the fallback font.
 81    /// </summary>
 82    public bool EnableFallbackFont { get; set; }
 83
 84    /// <summary>
 85    /// Gets or sets a value indicating whether audio VBR is enabled.
 86    /// </summary>
 87    public bool EnableAudioVbr { get; set; }
 88
 89    /// <summary>
 90    /// Gets or sets the audio boost applied when downmixing audio.
 91    /// </summary>
 92    public double DownMixAudioBoost { get; set; }
 93
 94    /// <summary>
 95    /// Gets or sets the algorithm used for downmixing audio to stereo.
 96    /// </summary>
 97    public DownMixStereoAlgorithms DownMixStereoAlgorithm { get; set; }
 98
 99    /// <summary>
 100    /// Gets or sets the maximum size of the muxing queue.
 101    /// </summary>
 102    public int MaxMuxingQueueSize { get; set; }
 103
 104    /// <summary>
 105    /// Gets or sets a value indicating whether throttling is enabled.
 106    /// </summary>
 107    public bool EnableThrottling { get; set; }
 108
 109    /// <summary>
 110    /// Gets or sets the delay after which throttling happens.
 111    /// </summary>
 112    public int ThrottleDelaySeconds { get; set; }
 113
 114    /// <summary>
 115    /// Gets or sets a value indicating whether segment deletion is enabled.
 116    /// </summary>
 117    public bool EnableSegmentDeletion { get; set; }
 118
 119    /// <summary>
 120    /// Gets or sets seconds for which segments should be kept before being deleted.
 121    /// </summary>
 122    public int SegmentKeepSeconds { get; set; }
 123
 124    /// <summary>
 125    /// Gets or sets the hardware acceleration type.
 126    /// </summary>
 127    public HardwareAccelerationType HardwareAccelerationType { get; set; }
 128
 129    /// <summary>
 130    /// Gets or sets the FFmpeg path as set by the user via the UI.
 131    /// </summary>
 132    public string EncoderAppPath { get; set; }
 133
 134    /// <summary>
 135    /// Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page.
 136    /// </summary>
 137    public string EncoderAppPathDisplay { get; set; }
 138
 139    /// <summary>
 140    /// Gets or sets the VA-API device.
 141    /// </summary>
 142    public string VaapiDevice { get; set; }
 143
 144    /// <summary>
 145    /// Gets or sets the QSV device.
 146    /// </summary>
 147    public string QsvDevice { get; set; }
 148
 149    /// <summary>
 150    /// Gets or sets a value indicating whether tonemapping is enabled.
 151    /// </summary>
 152    public bool EnableTonemapping { get; set; }
 153
 154    /// <summary>
 155    /// Gets or sets a value indicating whether VPP tonemapping is enabled.
 156    /// </summary>
 157    public bool EnableVppTonemapping { get; set; }
 158
 159    /// <summary>
 160    /// Gets or sets a value indicating whether videotoolbox tonemapping is enabled.
 161    /// </summary>
 162    public bool EnableVideoToolboxTonemapping { get; set; }
 163
 164    /// <summary>
 165    /// Gets or sets the tone-mapping algorithm.
 166    /// </summary>
 167    public TonemappingAlgorithm TonemappingAlgorithm { get; set; }
 168
 169    /// <summary>
 170    /// Gets or sets the tone-mapping mode.
 171    /// </summary>
 172    public TonemappingMode TonemappingMode { get; set; }
 173
 174    /// <summary>
 175    /// Gets or sets the tone-mapping range.
 176    /// </summary>
 177    public TonemappingRange TonemappingRange { get; set; }
 178
 179    /// <summary>
 180    /// Gets or sets the tone-mapping desaturation.
 181    /// </summary>
 182    public double TonemappingDesat { get; set; }
 183
 184    /// <summary>
 185    /// Gets or sets the tone-mapping peak.
 186    /// </summary>
 187    public double TonemappingPeak { get; set; }
 188
 189    /// <summary>
 190    /// Gets or sets the tone-mapping parameters.
 191    /// </summary>
 192    public double TonemappingParam { get; set; }
 193
 194    /// <summary>
 195    /// Gets or sets the VPP tone-mapping brightness.
 196    /// </summary>
 197    public double VppTonemappingBrightness { get; set; }
 198
 199    /// <summary>
 200    /// Gets or sets the VPP tone-mapping contrast.
 201    /// </summary>
 202    public double VppTonemappingContrast { get; set; }
 203
 204    /// <summary>
 205    /// Gets or sets the H264 CRF.
 206    /// </summary>
 207    public int H264Crf { get; set; }
 208
 209    /// <summary>
 210    /// Gets or sets the H265 CRF.
 211    /// </summary>
 212    public int H265Crf { get; set; }
 213
 214    /// <summary>
 215    /// Gets or sets the encoder preset.
 216    /// </summary>
 217    public EncoderPreset? EncoderPreset { get; set; }
 218
 219    /// <summary>
 220    /// Gets or sets a value indicating whether the framerate is doubled when deinterlacing.
 221    /// </summary>
 222    public bool DeinterlaceDoubleRate { get; set; }
 223
 224    /// <summary>
 225    /// Gets or sets the deinterlace method.
 226    /// </summary>
 227    public DeinterlaceMethod DeinterlaceMethod { get; set; }
 228
 229    /// <summary>
 230    /// Gets or sets a value indicating whether 10bit HEVC decoding is enabled.
 231    /// </summary>
 232    public bool EnableDecodingColorDepth10Hevc { get; set; }
 233
 234    /// <summary>
 235    /// Gets or sets a value indicating whether 10bit VP9 decoding is enabled.
 236    /// </summary>
 237    public bool EnableDecodingColorDepth10Vp9 { get; set; }
 238
 239    /// <summary>
 240    /// Gets or sets a value indicating whether 8/10bit HEVC RExt decoding is enabled.
 241    /// </summary>
 242    public bool EnableDecodingColorDepth10HevcRext { get; set; }
 243
 244    /// <summary>
 245    /// Gets or sets a value indicating whether 12bit HEVC RExt decoding is enabled.
 246    /// </summary>
 247    public bool EnableDecodingColorDepth12HevcRext { get; set; }
 248
 249    /// <summary>
 250    /// Gets or sets a value indicating whether the enhanced NVDEC is enabled.
 251    /// </summary>
 252    public bool EnableEnhancedNvdecDecoder { get; set; }
 253
 254    /// <summary>
 255    /// Gets or sets a value indicating whether the system native hardware decoder should be used.
 256    /// </summary>
 257    public bool PreferSystemNativeHwDecoder { get; set; }
 258
 259    /// <summary>
 260    /// Gets or sets a value indicating whether the Intel H264 low-power hardware encoder should be used.
 261    /// </summary>
 262    public bool EnableIntelLowPowerH264HwEncoder { get; set; }
 263
 264    /// <summary>
 265    /// Gets or sets a value indicating whether the Intel HEVC low-power hardware encoder should be used.
 266    /// </summary>
 267    public bool EnableIntelLowPowerHevcHwEncoder { get; set; }
 268
 269    /// <summary>
 270    /// Gets or sets a value indicating whether hardware encoding is enabled.
 271    /// </summary>
 272    public bool EnableHardwareEncoding { get; set; }
 273
 274    /// <summary>
 275    /// Gets or sets a value indicating whether HEVC encoding is enabled.
 276    /// </summary>
 277    public bool AllowHevcEncoding { get; set; }
 278
 279    /// <summary>
 280    /// Gets or sets a value indicating whether AV1 encoding is enabled.
 281    /// </summary>
 282    public bool AllowAv1Encoding { get; set; }
 283
 284    /// <summary>
 285    /// Gets or sets a value indicating whether subtitle extraction is enabled.
 286    /// </summary>
 287    public bool EnableSubtitleExtraction { get; set; }
 288
 289    /// <summary>
 290    /// Gets or sets the codecs hardware encoding is used for.
 291    /// </summary>
 292    public string[] HardwareDecodingCodecs { get; set; }
 293
 294    /// <summary>
 295    /// Gets or sets the file extensions on-demand metadata based keyframe extraction is enabled for.
 296    /// </summary>
 297    public string[] AllowOnDemandMetadataBasedKeyframeExtractionForExtensions { get; set; }
 298}

Methods/Properties

.ctor()