本文介绍了使用ffmpeg时无效的帧大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试缩放并转换视频:
I am trying scale and convert a video:
ffmpeg -i input.mkv -s 1920×1080 output.mp4
但是每次显示错误时(Windows):
But every time it shows error (Windows):
Invalid frame size: 1920×1080.
或在Linux上:
Invalid frame size: 1920×1080.
推荐答案
使用x
,而不是×
.
- 错误:
1920×1080
- 正确:
1920x1080
- Incorrect:
1920×1080
- Correct:
1920x1080
这篇关于使用ffmpeg时无效的帧大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!