diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-07-03 20:27:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-03 20:27:06 -0400 |
| commit | 6e1ba4e3cc88868304bf8c08baefb70b79c8838d (patch) | |
| tree | baab6612abcd9bb9472f55e18131951cc991dca3 | |
| parent | fcc64173f6528e5252079f870afbc5d80bd90bb5 (diff) | |
| parent | 98e3aec676172e7d52cb85acf421af29b1c1eac9 (diff) | |
Merge pull request #1918 from phantom-voltage/dev
Changed to a valid preset for h264_nvenc
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 89e62ed9b..27b675294 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -341,7 +341,7 @@ namespace MediaBrowser.Api.Playback // h264 (h264_nvenc) else if (string.Equals(videoCodec, "h264_nvenc", StringComparison.OrdinalIgnoreCase)) { - param = "-preset high-performance"; + param = "-preset default"; } // webm |
