Before starting the main text of this article, you must first install the ffmpeg program (x264 encoding must also be installed under Linux). Install directly with brew on Mac: brew install ffmpeg --with-faac --with-fdk-aac --with-ffplay --with-fontconfig --with-freetype --with-libass --with-libbluray --with-libcaca --with-libsoxr --with-libquvi --with-frei0r --with-libvidstab --with-libvorbis --with-libvpx --with-opencore-amr --with-openjpeg --with-openssl --with-opus --with-rtmpdump --with-schroedinger --with-speex --with-theroa --with-tools --with-x265 After installation, you can use the ffmpeg command to compress MP4 files: ffmpeg -i MVI_7274.MOV -vcodec libx264 -preset fast -crf 20 -y -vf "scale=1920:-1" -acodec libmp3lame -ab 128k a.mp4 The parameters are explained as follows (modified from here: https://vistb.net/2012/02/x264-video-compress-intro/): -preset: specifies the encoding configuration. The x264 encoding algorithm has many configurable parameters. Different parameter values can result in very different encoding speeds and may even affect the quality. To save users the trouble of understanding the algorithm and then manually configuring parameters. x264 provides some preset values, which can be specified by preset. The presets are: ultrafast, superfast, veryfast, faster, fast, medium, slow, slower, veryslow, and placebo. Ultrafast has the fastest encoding speed, but has a low compression rate and generates larger files, while Placebo is just the opposite. The default value used by x264 is medium. It should be noted that preset mainly affects the encoding speed and does not greatly affect the quality of the encoded results. When compressing HD movies, I usually use slow or slower. If your machine is very good, you can use veryslow, but it usually doesn't bring much benefit. -crf: This is the most important option, used to specify the quality of the output video. The value range is 0-51, and the default value is 23. The smaller the number, the higher the quality of the output video. This option will directly affect the bit rate of the output video. Generally speaking, I would use around 20 for compressing 480p, 16-18 for compressing 720p, and I haven't tried 1080p. Personally, I think it is not necessary to go below 16 under normal circumstances. The best way is to try several values, each for a few minutes, to see the final output quality and file size, and then choose according to your needs. In fact, there is also a parameter like -b 1024k, but I found that -b is useless after -crf is set. According to my own simple attempt, the relationship between the crf and the compressed file size of an 18-second 1920x1080 video shot by 5D2 (natural light in the afternoon, simple image, large white walls, only one black door) is as follows:
I compared the video quality when the crf was 20, 28, and 32, and found that the quality still declined at 32. 20 is indeed very fine, but the difference between 28 and 20 is not that big. It is better to set the crf value between 26-28. If you have requirements for the size, you can leave it alone and use the default value (probably 31). In addition, regarding preset, slow and fast are only related to the running time. The running time of slow is much longer than that of fast. The mp4 file produced by slow will be smaller (12M), and the file produced by fast will be larger (14M), but the difference in video quality is not obvious. If the original video size is reduced from 1920x1080 to 960x540, the video size becomes:
To sum up, when you have higher requirements on quality, choose 22 or below; when you have very high requirements on size, choose 26 (but the quality will indeed be slightly worse), otherwise 24 is more cost-effective (or the default 23 is also fine), and if you have very, very high requirements on size, then choose 28 or above. Postscript (from @gghyoo) You can use Here are some examples: ffmpeg -threads 2 -crf 20 -y -i ML-02.avi -strict experimental ML-02.mp4 Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of how CocosCreator system events are generated and triggered
>>: Reasons and solutions for being unable to remotely connect to MySQL database under CentOS7
GUN Screen: Official website: http://www.gnu.org/...
Preface I had previously enabled Docker's 237...
Table of contents Tutorial Series 1. User Managem...
Table of contents 1. Panorama II. Background 1. R...
The following is my judgment based on the data st...
Flappy Bird is a very simple little game that eve...
The author recently encountered a performance bot...
I recently discussed "advertising" with...
(P4) Web standards are composed of a series of sta...
The implementation method is divided into three s...
1. Call the parent component method directly thro...
Table of contents introduce Link start Continue t...
Table of contents 3 ways to deploy projects with ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...
What if the basic images have been configured bef...