!! Combine/stack two videos or images and change size
.\ffmpeg.exe -i part1.mp4 -i part1.mp4 -filter_complex "[0:v]pad=iw*2:ih*1[a];[a][1:v]overlay=w" output.mp4
!! Crop videos or images
!! out_w is the width of the output rectangle
!! out_h is the height of the output rectangle
!! x and y specify the top left corner of the output rectangle
!! .\ffmpeg.exe -i input.mp4 -strict -2 -vf crop=600:796:200:0 output.mp4 !! ctspecimen
!! .\ffmpeg.exe -i input.mp4 -strict -2 -vf crop=1612:300:0:300 output.mp4 !! ASTM_E606
.\ffmpeg.exe -i a.mov -strict -2 -vf crop=out_w:out_h:x:y output.mp4
!! Combine/stack three videos or images
.\ffmpeg.exe -i part1.mp4 -i part2.mp4 -i out3.mp4 -filter_complex "[0:v]pad=iw*3:ih*1[a];[a][1:v]overlay=w[b];[b][2:v]overlay=2.0*w" output.mp4
!! Speed up videos
.\ffmpeg.exe -i input.mp4 -filter:v "setpts=PTS/60" output.mp4