Skip to content

ffmpeg Notes

crop and scale a video

ffmpeg -i VID_20240424_215259605.mp4 -vf crop=1000:300:350:200,scale=200:-2 -an output.gif -y

The crop filter uses this format out_width:out_hieght:width:hieght. You can find more information on this stack overflow post.