diff options
| author | Frank <fhriley@gmail.com> | 2019-06-01 15:03:48 -0700 |
|---|---|---|
| committer | Frank <fhriley@gmail.com> | 2019-06-01 15:46:41 -0700 |
| commit | 3ba709fcc32d7255a2cb2466dde8c2479130a2bc (patch) | |
| tree | 9f9969e525296fbaf9afe0c4a2ec7d5267619836 /MediaBrowser.Api/Playback/Progressive/VideoService.cs | |
| parent | b1f764984f7098ee1164efee77f1bcb3de9fd08a (diff) | |
Fix #1432. Add support for encoding with libx265 and hevc_nvenc.
Diffstat (limited to 'MediaBrowser.Api/Playback/Progressive/VideoService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/Progressive/VideoService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Progressive/VideoService.cs b/MediaBrowser.Api/Playback/Progressive/VideoService.cs index ab19fdc26..cfc8a283d 100644 --- a/MediaBrowser.Api/Playback/Progressive/VideoService.cs +++ b/MediaBrowser.Api/Playback/Progressive/VideoService.cs @@ -120,7 +120,7 @@ namespace MediaBrowser.Api.Playback.Progressive protected override string GetCommandLineArguments(string outputPath, EncodingOptions encodingOptions, StreamState state, bool isEncoding) { - return EncodingHelper.GetProgressiveVideoFullCommandLine(state, encodingOptions, outputPath, GetDefaultH264Preset()); + return EncodingHelper.GetProgressiveVideoFullCommandLine(state, encodingOptions, outputPath, GetDefaultEncoderPreset()); } } } |
