diff --git a/server/app/tasks/LiveEncodingTask.py b/server/app/tasks/LiveEncodingTask.py index 4337ab72..72c312aa 100644 --- a/server/app/tasks/LiveEncodingTask.py +++ b/server/app/tasks/LiveEncodingTask.py @@ -310,7 +310,7 @@ def buildHWEncCOptions(self, options.append('--preset balanced') elif encoder_type == 'rkmppenc': options.append('--preset best') - if QUALITY[quality].is_hevc is True or encoder_type == 'rkmppenc': + if QUALITY[quality].is_hevc is True: options.append('--profile main') else: options.append('--profile high')