mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
fix for rav1e target_quality if resumed
This commit is contained in:
parent
982298c39c
commit
6050140562
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ def probe_cmd(chunk: Chunk, q, ffmpeg_pipe, encoder, probing_rate) -> CommandPai
|
|||
cmd = CommandPair(pipe, [*params, '-o', probe_name, '-'])
|
||||
|
||||
elif encoder == 'rav1e':
|
||||
params = ['rav1e', '-s', '10', '--tiles', '8', '--quantizer', f'{q}']
|
||||
params = ['rav1e', '-y', '-s', '10', '--tiles', '8', '--quantizer', f'{q}']
|
||||
cmd = CommandPair(pipe, [*params, '-o', probe_name, '-'])
|
||||
|
||||
elif encoder == 'vpx':
|
||||
|
|
Loading…
Reference in a new issue