Snippets

Eduardo Matos ffmpeg commands

Created by Eduardo Matos
1
2
3
4
5
6
7
8
# Scale video (mantaining proportion)
ffmpeg -i input.mp4 -vf scale=1280:-1 output.mp4

# Reduce video size
ffmpeg -i input.mp4 -vcodec libx265 -crf 28 output.mp4

# Cut video (start and output duration)
ffmpeg -ss 01:08:50 -i input.mp4 -to 00:02:10 -c copy output.mp4

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.