invalid frame size while using ffmpeg

前端 未结 2 1561
灰色年华
灰色年华 2021-02-14 06:29

I am trying scale and convert a video:

ffmpeg -i input.mkv -s 1920×1080 output.mp4

But every time it shows error (Windows):

Inv         


        
相关标签:
2条回答
  • 2021-02-14 07:08

    Also, it cannot be a double, eg 512.0. Make sure it's an int 512.

    0 讨论(0)
  • 2021-02-14 07:12

    Use x, not ×.

    • Incorrect: 1920×1080
    • Correct: 1920x1080
    0 讨论(0)
提交回复
热议问题