Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以让 ffmpeg 检测视频大小,如果它不是横向的,是否可以顺时针旋转 90 度?我在这里找到了一篇文章,但不确定它是否可以自动检测到:Rotating videos with FFmpeg
如果您的决定是基于高度和宽度,一个非常简单的 ffmpeg 脚本可以为您执行此操作
ffprobe yourfile
在输出中,您将获得可用于流的高度和宽度参数。对其运行正则表达式。
根据高度和宽度在脚本中决定是否旋转
使用正确的参数调用 ffmpeg。
-autorotate
根据文件元数据自动旋转视频。默认启用,使用-noautorotate禁用。
-noautorotate