gpt4 book ai didi

FFMPEG 返回负值并停止渲染

转载 作者:行者123 更新时间:2023-12-04 23:02:16 25 4
gpt4 key购买 nike

在尝试从任何分辨率输入获得 16:9 纵横比输出时,我一直遇到错误。

这就是我提示的:

ffmpeg -i "input.mp4" -i "overlay.png" -strict -2 -vcodec h264 -aspect 16:9 -filter_complex "[0]scale=604:-2,pad=604:340:(604-iw)/2:(340-ih)/2[v];[v][1]overlay=x=W-w-5:y=H-h-5" -an "output.mp4"

错误是:
[0] => [Parsed_pad_1 @ 0xeffca0] Negative values are not acceptable.
[1] => [Parsed_pad_1 @ 0xeffca0] Failed to configure input pad on Parsed_pad_1
[2] => Error configuring complex filters.
[3] => Invalid argument

我很高兴得到任何帮助。

最佳答案

如果您的输入尺寸大于焊盘目标,则过滤器设置将失败。应该改进错误消息。

作为一种解决方法,使用

pad=604:max(340\,ih):-1:-1
-1告诉过滤器将填充框架中的输入沿该维度居中。

关于FFMPEG 返回负值并停止渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59750556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com