-cv libvpx -ca libvorbis -quality good -cpu-used 0 -bv 2M -qmin 10 -qmax 42 -maxrate 2M -bufsize 4M
This FFmpeg command is used to transcode a video file using the VP8 video codec and the Vorbis audio codec. The options used in this command are:
-c:v libvpx: This specifies the video codec to use, which in this case is VP8.
-c:a libvorbis: This specifies the audio codec to use, which in this case is Vorbis.
-quality good: This sets the quality level for the output file to "good".
-cpu-used 0: This sets the CPU usage level to 0, which means that FFmpeg will try to use as much CPU as possible to encode the video.
-b:v 2M: This sets the video bitrate to 2 megabits per second.
-qmin 10: This sets the minimum quality level for the video to 10.
-qmax 42: This sets the maximum quality level for the video to 42.
-maxrate 2M: This sets the maximum bitrate for the video to 2 megabits per second.
-bufsize 4M: This sets the buffer size for the video to 4 megabytes.
Overall, this command is used to create a high-quality video file with a bitrate of 2 megabits per second and a maximum quality level of 42
原文地址: http://www.cveoy.top/t/topic/ezAD 著作权归作者所有。请勿转载和采集!