【发布时间】:2020-08-04 11:41:24
【问题描述】:
我正在使用以下方法对视频进行裁剪和添加字幕:
ffmpeg -i inputfile.mov -lavfi "crop=720:720:280:360,subtitles=subs.srt:force_style='OutlineColour=&H100000000,BorderStyle=3,Outline=1,Shadow=0,MarginV=20,Fontsize=18'" -crf 1 -c:a copy output.mov
我有另一个名为 credits.mp4 的视频,其尺寸与 output.mov 相同(裁剪后)。我可以在上述过程中执行此操作,还是之后必须使用 concat 之类的东西?
在 Mac 上的终端中使用 bash
【问题讨论】:
标签: bash macos ffmpeg terminal concat