mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
removed dead code
This commit is contained in:
parent
38a3a7017e
commit
1de034c94d
1 changed files with 3 additions and 4 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue