0

我正在制作视频幻灯片

melt -profile atsc_720p_25 67.jpg length=100 -filter crop center=1 -filter  affine transition.geometry="0=0,0:100%x100%;100=-100,-100:115%x115%" -consumer avformat:out.mp4 vcodec=libx264 vb=3000k

我有闪烁的线条效果,当通过 adobe 制作相同的幻灯片后效果时我没有得到: https ://www.youtube.com/watch?v= B41pdpunN9o 我该如何解决这个问题?

4

1 回答 1

1

您可能会遇到裁剪和仿射过滤器之间的一些交互。作物不应该是必需的。您可以使用更多缩放开始仿射以达到相同的效果:

melt -profile atsc_720p_25 67.jpg length=100 \
   -filter affine transition.geometry="0=0,0:110%x110%;100=-100,-100:125%x125%" \
   -consumer avformat:out.mp4 vcodec=libx264 vb=3000k

设置填充框架所需的任何初始缩放。

于 2016-07-19T13:07:42.830 回答