gpt4 book ai didi

video - ffmpeg 按条件改变分辨率

转载 作者:行者123 更新时间:2023-12-04 22:47:27 26 4
gpt4 key购买 nike

我想用 ffmpeg 改变我的视频分辨率:

-s 852×480

视频宽高大于852×480怎么办?

我希望使用 ffmpeg,而不是我的编程语言:

if video.width > 852:
resize width and proportionally resize height

if video.height > 480:
resize height and proportionally resize width

if video.width > 852 and video.height > 480:
resize height width

最佳答案

在你的命令中使用这个过滤器:

-filter_complex "scale=if(gt(iw,852),852,-1)':'if(gt(ih,480),480,-1)':force_original_aspect_ratio=decrease"

关于video - ffmpeg 按条件改变分辨率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20714843/

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