6

想像这样为视频添加边框

我已经尝试使用 ffmpeg 无法正常工作

"ffmpeg -i input.avi -vf pad=w:h:x:y:black output.avi" 

“w”是边框的宽度,“h”是边框的高度,“x”和“y”是边框的原点坐标。

任何人都可以建议宽度,高度,x 和 y 值吗?

在此处输入图像描述

4

1 回答 1

5

FFmpeg has the drawbox filter... Just replace the desired width and height here down:

ffmpeg -i input.avi -vf "drawbox= : x=0 : y=0 : w=100 : h=100 : color=green" output.avi

You can find all the options in the filter page (change color, thickness, etc)

http://ffmpeg.org/ffmpeg-filters.html#drawbox

于 2013-11-02T03:38:44.953 回答