diff options
| author | PloughPuff <ploughpuff@protonmail.com> | 2019-02-28 22:06:56 +0000 |
|---|---|---|
| committer | Ploughpuff <ploughpuff@protonmail.com> | 2019-03-05 21:29:15 +0000 |
| commit | 656bffbbb291dc9b58443bb36c8ed7d3688f6c1b (patch) | |
| tree | 403afb071ece2c6490e5453fc0e3cae9dccd6e86 /MediaBrowser.Model | |
| parent | 8104e739d5b83d0d6563bb685f910697e60d6c12 (diff) | |
Remove --ffprobe logic
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index 7fc985ba0..285ff4ba5 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -11,11 +11,11 @@ namespace MediaBrowser.Model.Configuration /// <summary> /// FFmpeg path as set by the user via the UI /// </summary> - public string EncoderAppPathCustom { get; set; } + public string EncoderAppPath { get; set; } /// <summary> - /// The current FFmpeg path being used by the system + /// The current FFmpeg path being used by the system and displayed on the transcode page /// </summary> - public string EncoderAppPath { get; set; } + public string EncoderAppPathDisplay { get; set; } public string VaapiDevice { get; set; } public int H264Crf { get; set; } public string H264Preset { get; set; } |
