valentincognito
11/22/2017 - 6:50 AM

FFMPEG

All about this magic plugin

Command line cheat sheet

Images sequence to video

ffmpeg -i DSC_%03d.jpg out.mp4

Standard video codecs

ffmpeg -i input.mp4 -vcodec libx264 -pix_fmt yuv420p standard.mp4

Crop video (full HD example)

ffmpeg -i input.mp4 -vf "crop=3840:2160:0:0" full_hd.mp4

Slow down video

ffmpeg -i input.mp4 -filter:v "setpts=2*PTS" two_times_slower.mp4

Motion interpolation

ffmpeg -i input.mp4 -filter "minterpolate='fps=120'" slowmo_effect.mp4