0

Currently I have the following code,

which cuts the video, adds audio and burns subtitle into the video.

-ss 00:00:30 -t -i video.mp4 -i audio.wav -vcodec copy  -acodec copy -map 0:0 -map 1:0 -vf subtitles=subtitle.srt

but I need to crop the video before the subtitle is added. I know it is possible to crop video using the command:

-vf crop=405:720

or using

-filter:v crop=405:720

but I am unable to use it in conjunction with the above statement. What would be the best approch to get the desribed outcome?

0 Answers0