Skip to content

Instantly share code, notes, and snippets.

@Justin-Heer
Justin-Heer / ffmpeg-crop.bat
Last active August 16, 2020 15:10
crops video to desired position
ffmpeg -loglevel warning -i output.mp4 -filter:v "crop=225:350:445:0 " cropped.mp4 -y
@Justin-Heer
Justin-Heer / ffmpeg-trim.bat
Created August 16, 2020 14:46
trimmed video to specified length using ffmpeg
ffmpeg -loglevel warning -i input.mp4 -ss 0:00 -to 0:10 output.mp4 -y