From 805d820e9bcafe0b3fc7e7f42a6ce118f48f94ee Mon Sep 17 00:00:00 2001 From: rigaya Date: Tue, 25 Apr 2023 21:54:07 +0900 Subject: [PATCH] =?UTF-8?q?Update:=20[Server][LiveEncodingTask]=20rkmppenc?= =?UTF-8?q?=20=E3=81=A7=E3=82=82=20H.264=20high=20profile=20=E3=82=92?= =?UTF-8?q?=E9=81=B8=E6=8A=9E=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E6=88=BB?= =?UTF-8?q?=E3=81=99=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rkmppenc の更新により、 high profile でもヘッダが正常に出力されるようになったため。 --- server/app/tasks/LiveEncodingTask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')