mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
Fix SVT-AV1 two-pass command syntax
This commit is contained in:
parent
496696f453
commit
67ff6480af
1 changed files with 2 additions and 2 deletions
|
@ -33,12 +33,12 @@ class SvtAv1(Encoder):
|
|||
CommandPair(
|
||||
Encoder.compose_ffmpeg_pipe(a),
|
||||
['SvtAv1EncApp', '-i', 'stdin', '--progress', '2', '--irefresh-type', '2', *a.video_params,
|
||||
'-output-stat-file', f'{c.fpf}.stat', '-b', os.devnull, '-']
|
||||
'--output-stat-file', f'{c.fpf}.stat', '-b', os.devnull, '-']
|
||||
),
|
||||
CommandPair(
|
||||
Encoder.compose_ffmpeg_pipe(a),
|
||||
['SvtAv1EncApp', '-i', 'stdin', '--progress', '2', '--irefresh-type', '2', *a.video_params,
|
||||
'-input-stat-file', f'{c.fpf}.stat', '-b', output, '-']
|
||||
'--input-stat-file', f'{c.fpf}.stat', '-b', output, '-']
|
||||
)
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue