mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
Address review comments from Bond
This commit is contained in:
parent
632968dc81
commit
8104e739d5
2 changed files with 16 additions and 4 deletions
|
|
@ -8,8 +8,14 @@ namespace MediaBrowser.Model.Configuration
|
|||
public bool EnableThrottling { get; set; }
|
||||
public int ThrottleDelaySeconds { get; set; }
|
||||
public string HardwareAccelerationType { get; set; }
|
||||
public string EncoderAppPathCustom { get; set; } // FFmpeg path as set by the user via the UI
|
||||
public string EncoderAppPath { get; set; } // The current FFmpeg path being used by the system
|
||||
/// <summary>
|
||||
/// FFmpeg path as set by the user via the UI
|
||||
/// </summary>
|
||||
public string EncoderAppPathCustom { get; set; }
|
||||
/// <summary>
|
||||
/// The current FFmpeg path being used by the system
|
||||
/// </summary>
|
||||
public string EncoderAppPath { get; set; }
|
||||
public string VaapiDevice { get; set; }
|
||||
public int H264Crf { get; set; }
|
||||
public string H264Preset { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue