想像这样为视频添加边框
我已经尝试使用 ffmpeg 无法正常工作
"ffmpeg -i input.avi -vf pad=w:h:x:y:black output.avi"
“w”是边框的宽度,“h”是边框的高度,“x”和“y”是边框的原点坐标。
任何人都可以建议宽度,高度,x 和 y 值吗?
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)