aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorPloughPuff <ploughpuff@protonmail.com>2019-02-28 22:06:56 +0000
committerPloughpuff <ploughpuff@protonmail.com>2019-03-05 21:29:15 +0000
commit656bffbbb291dc9b58443bb36c8ed7d3688f6c1b (patch)
tree403afb071ece2c6490e5453fc0e3cae9dccd6e86 /MediaBrowser.Model
parent8104e739d5b83d0d6563bb685f910697e60d6c12 (diff)
Remove --ffprobe logic
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Configuration/EncodingOptions.cs6
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; }