diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-09-29 09:18:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-29 09:18:52 +0200 |
| commit | 7775066475c14627fb635a2475f4378e4b0c1782 (patch) | |
| tree | 16b599670ad0c23ba181c09ce7b198549b946bf2 /MediaBrowser.Model/System/SystemInfo.cs | |
| parent | 6cafc152b9403f7870003b0e1a7c85ce74910162 (diff) | |
| parent | 53d5f64e037c13c295d82fcb98b91ef2de8fc842 (diff) | |
Merge pull request #4236 from ConfusedPolarBear/warnings1
Fix some warnings
Diffstat (limited to 'MediaBrowser.Model/System/SystemInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index 18ca74ee30..4b83fb7e61 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -14,13 +14,16 @@ namespace MediaBrowser.Model.System { /// <summary>No path to FFmpeg found.</summary> NotFound, + /// <summary>Path supplied via command line using switch --ffmpeg.</summary> SetByArgument, + /// <summary>User has supplied path via Transcoding UI page.</summary> Custom, + /// <summary>FFmpeg tool found on system $PATH.</summary> System - }; + } /// <summary> /// Class SystemInfo. |
