From 1de034c94d970d67e577e4529cb42ae42d63de75 Mon Sep 17 00:00:00 2001 From: Zen <46526140+master-of-zen@users.noreply.github.com> Date: Sat, 18 Jul 2020 20:41:27 +0300 Subject: [PATCH] removed dead code --- utils/compose.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/utils/compose.py b/utils/compose.py index ea1aa80..9708a0e 100755 --- a/utils/compose.py +++ b/utils/compose.py @@ -148,9 +148,7 @@ def rav1e_encode(inputs, passes, pipe, params): f' rav1e - --first-pass {file[0].with_suffix(".stat")} {params} ' f'--output {file[1].with_suffix(".ivf")}', f'-i {file[0]} {pipe} ' - f' rav1e - --second-pass {file[0].with_suffix(".stat")} {pa65 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra -265 -rams} ' + f' rav1e - --second-pass {file[0].with_suffix(".stat")} f'--output {file[1].with_suffix(".ivf")}', (file[0], file[1].with_suffix('.ivf'))) for file in inputs] @@ -175,7 +173,7 @@ def x265_encode(inputs, passes, pipe, params): if passes == 1: commands = [ - (f' -i {file[0]} {pipe} {single_p} {params} - -o {file[1].with_suffix(".ivf")}', + (f' -i {file[0]} {pipe} {single_p} {params} - -o {file[1].with_suffix(".mkv")}', (file[0], file[1].with_suffix('.ivf'))) for file in inputs ] @@ -190,6 +188,7 @@ def x265_encode(inputs, passes, pipe, params): return commands + def compose_encoding_queue(files, temp, encoder, params, pipe, passes): """ Composing encoding queue with split videos.