Difference between revisions of "Ffmpeg"

From Wasya Wiki
Jump to: navigation, search
Line 5: Line 5:
 
  ffmpeg -i MVI_0083.MP4 -s 960x540 20190322_out.mp4
 
  ffmpeg -i MVI_0083.MP4 -s 960x540 20190322_out.mp4
 
  ffmpeg.exe -i "test.avi" -c:v libx264 -crf 20 -c:a aac -strict -2 "test.mp4"
 
  ffmpeg.exe -i "test.avi" -c:v libx264 -crf 20 -c:a aac -strict -2 "test.mp4"
 +
 +
You might want to use the -ss and -t options to create short test encodes. -ss being the start time and -t being the duration — both in seconds. You probably don’t need to encode the entire video to determine what’s acceptable.

Revision as of 21:11, 4 June 2020

ffmpeg -i <input>.mp4 <output>.webm
ffmpeg -i MVI_0083.MP4 -s 960x540 20190322_out.webm
ffmpeg -i MVI_0083.MP4 -s 960x540 20190322_out.mp4
ffmpeg.exe -i "test.avi" -c:v libx264 -crf 20 -c:a aac -strict -2 "test.mp4"

You might want to use the -ss and -t options to create short test encodes. -ss being the start time and -t being the duration — both in seconds. You probably don’t need to encode the entire video to determine what’s acceptable.