FFMPEG によりズームパンが不安定になったり、ジッタが発生したりします

FFMPEG によりズームパンが不安定になったり、ジッタが発生したりします

1 枚の画像から 5 秒の mp4 ビデオを作成したいです。

以下のコードを使用すると、ビデオはスムーズになります。デフォルトの方向は左上へのズームインです。

ffmpeg -loop 1 -i prop1.jpeg -vf "zoompan=z='min(zoom+0.0015,1.5)':d=125" -c:v libx264  -t 5 -s "800x450" fade.mp4

右上にズームインするには、以下のコードを使用することにしました

ffmpeg -loop 1 -i prop1.jpeg -vf "zoompan=z='min(zoom+0.0015,1.5)':x='if(gte(zoom,1.5),x,x+1)':y='y':d=125" -c:v libx264  -t 5 -s "800x450" fade.mp4

正しい方向にズームインしていますが、ビデオが不安定になります。

変換時にもエラーが発生しました:

[swscaler @ 0x429bda0] deprecated pixel format used, make sure you did set range correctly
[swscaler @ 0x429bac0] deprecated pixel format used, make sure you did set range correctly
[swscaler @ 0x429bac0] Warning: data is not aligned! This can lead to a speedloss
[swscaler @ 0x429bac0] deprecated pixel format used, make sure you did set range correctly
Last message repeated 97 times
[output stream 0:0 @ 0x37af200] 100 buffers queued in output stream 0:0, something may be wrong.
[swscaler @ 0x429bac0] deprecated pixel format used, make sure you did set range correctly
Last message repeated 24 times
[swscaler @ 0x42b7040] deprecated pixel format used, make sure you did set range correctly
Last message repeated 1 times

コードの何が問題なのでしょうか?

答え1

ズームパンの前にアップスケールを使用します。

ffmpeg -loop 1 -i prop1.jpeg -vf "scale=8000:-1,zoompan=z='min(zoom+0.0015,1.5)':x='if(gte(zoom,1.5),x,x+1)':y='y':d=125" -c:v libx264  -t 5 -s "800x450" fade.mp4

上記のコメントにあるように、これは ffmpeg のバグのようです。https://trac.ffmpeg.org/ticket/4298

ここでこの回避策を見つけました:ffmpeg: 揺れのないスムーズなズームパン

関連情報