|
@@ -948,9 +948,13 @@ namespace MediaBrowser.Api.Playback.Hls
|
|
args += " " + EncodingHelper.GetVideoQualityParam(state, codec, encodingOptions, GetDefaultEncoderPreset());
|
|
args += " " + EncodingHelper.GetVideoQualityParam(state, codec, encodingOptions, GetDefaultEncoderPreset());
|
|
|
|
|
|
// Unable to force key frames to h264_qsv transcode
|
|
// Unable to force key frames to h264_qsv transcode
|
|
- if (codec != "h264_qsv") {
|
|
|
|
- args += " " + keyFrameArg;
|
|
|
|
- }
|
|
|
|
|
|
+ if (codec == "h264_qsv") {
|
|
|
|
+ Logger.LogInformation("Bug Workaround: Disabling force_key_frames for h264_qsv");
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ args += " " + keyFrameArg;
|
|
|
|
+ }
|
|
|
|
|
|
//args += " -mixed-refs 0 -refs 3 -x264opts b_pyramid=0:weightb=0:weightp=0";
|
|
//args += " -mixed-refs 0 -refs 3 -x264opts b_pyramid=0:weightb=0:weightp=0";
|
|
|
|
|