mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
Merge pull request #417 from pypeclub/bugfix/ffmpeg_intra_in_burnins
change deprecated -intra parameter in ffmpeg to new `-g`
This commit is contained in:
commit
7e12f02ef0
1 changed files with 3 additions and 0 deletions
|
|
@ -528,6 +528,9 @@ def burnins_from_data(
|
|||
if pix_fmt:
|
||||
ffmpeg_args.append("-pix_fmt {}".format(pix_fmt))
|
||||
|
||||
# Use group one (same as `-intra` argument, which is deprecated)
|
||||
ffmpeg_args.append("-g 1")
|
||||
|
||||
ffmpeg_args_str = " ".join(ffmpeg_args)
|
||||
burnin.render(
|
||||
output_path, args=ffmpeg_args_str, overwrite=overwrite, **data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue