Add -y flag to overwrite output file if it already exists.
ffprobe -i video.mov -show_entries format=duration -v quiet -of csv="p=0"In this case we output a clip that starts at 10 seconds and ends at 15 minutes 15 seconds of the input video
ffmpeg -ss 00:00:10 -i input.mov -to 00:15:15 -c copy output.movffmpeg -safe 0 -f concat -i files.txt -vcodec copy -acodec aac -strict -2 -b:a 384k output.movwhere files.txt contains the following:
file ./input_1.mov
file ./input_2.mov
file ./input_3.mov
Open up power shell, then type cmd
Then paste
for %i in (*.mov) do ffmpeg -i "%i" -f webm -c:v libvpx -b:v 2M -acodec libvorbis -auto-alt-ref 0 "%~ni.webm" -hide_banner