You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using ffmpeg 5.0.1 ari_stich fails to stich Images and wav because it uses vsync 2 which is no longer supported as option
Instead of vsync 2, when working with version of ffmpeg that doesnt support numbers as parameters should use "vfr" parameter.
`"Passing a number to -vsync is deprecated, use a string argument as described in the manual."
And video is created but images and sound are no sync.
I could fix it changing vsync parameter option to "vfr" in source code of ari_stich function beacause it is not a parameter option to pass direct into ari_narrate.
Maybe the solution is just add an video_sync_method parameter to ari_narrate to inject to the ari_stich call.
The text was updated successfully, but these errors were encountered:
Using ffmpeg 5.0.1 ari_stich fails to stich Images and wav because it uses vsync 2 which is no longer supported as option
Instead of vsync 2, when working with version of ffmpeg that doesnt support numbers as parameters should use "vfr" parameter.
Example
when running:
Console output says:
`"Passing a number to -vsync is deprecated, use a string argument as described in the manual."
And video is created but images and sound are no sync.
I could fix it changing vsync parameter option to "vfr" in source code of ari_stich function beacause it is not a parameter option to pass direct into ari_narrate.
Maybe the solution is just add an
video_sync_method
parameter to ari_narrate to inject to the ari_stich call.The text was updated successfully, but these errors were encountered: