I frequently Google things, then promptly forget them. I’m starting to collect some of those things in quick reference “cheat sheets” here so I can refer to them again later.
I frequently Google things, then promptly forget them. I’m starting to collect some of those things in quick reference “cheat sheets” here so I can refer to them again later.
Some quick samples of ffmpeg commands I frequently use. Quick Overview If you’re not familiar with ffmpeg, here’s the basic command structure: ffmpeg -i path/to/original/file.mp4 ... filters and settings ... path/to/output/file.mp4 Common Settings Resize a Video Use the scale video filter (-vf). The arguments to the scale filter are width:height. You can use -1 in place of either value to set only one value and maintain the current aspect ratio.