mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-08-22 06:23:20 -07:00
Add experimental flag for old ffmpeg versions
This commit is contained in:
parent
95c3636881
commit
b8bc0e2b0a
1 changed files with 2 additions and 1 deletions
|
@ -189,7 +189,8 @@ def video_from_sequence( input_dir, output_file, reference_file=None, ext=None,
|
||||||
|
|
||||||
output_kwargs.update ({"c:a": "aac",
|
output_kwargs.update ({"c:a": "aac",
|
||||||
"b:a": "192k",
|
"b:a": "192k",
|
||||||
"ar" : "48000"
|
"ar" : "48000",
|
||||||
|
"strict": "experimental"
|
||||||
})
|
})
|
||||||
|
|
||||||
job = ( ffmpeg.output(*output_args, **output_kwargs).overwrite_output() )
|
job = ( ffmpeg.output(*output_args, **output_kwargs).overwrite_output() )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue