diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-06-03 02:47:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-03 02:47:15 -0400 |
| commit | c31b2798a521e6bfe7c6b078306a1b2244c0ea93 (patch) | |
| tree | 2990fde1629a75f6e865e52b5dc0e4ed305e1c50 /MediaBrowser.Model/Configuration/EncodingOptions.cs | |
| parent | 91b089c0fac7e6b6831f5768ab5e23ee5151d0be (diff) | |
| parent | 46420dfd68945fd7c7045b8492c401e3d8cd302d (diff) | |
Merge pull request #3180 from xumix/master
Refactor copy codec checks
Diffstat (limited to 'MediaBrowser.Model/Configuration/EncodingOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index 648568fd7..5880730fd 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -5,10 +5,15 @@ namespace MediaBrowser.Model.Configuration public class EncodingOptions { public int EncodingThreadCount { get; set; } + public string TranscodingTempPath { get; set; } + public double DownMixAudioBoost { get; set; } + public bool EnableThrottling { get; set; } + public int ThrottleDelaySeconds { get; set; } + public string HardwareAccelerationType { get; set; } /// <summary> @@ -20,12 +25,19 @@ namespace MediaBrowser.Model.Configuration /// The current FFmpeg path being used by the system and displayed on the transcode page. /// </summary> public string EncoderAppPathDisplay { get; set; } + public string VaapiDevice { get; set; } + public int H264Crf { get; set; } + public int H265Crf { get; set; } + public string EncoderPreset { get; set; } + public string DeinterlaceMethod { get; set; } + public bool EnableHardwareEncoding { get; set; } + public bool EnableSubtitleExtraction { get; set; } public string[] HardwareDecodingCodecs { get; set; } |
