diff --git a/index.html b/index.html index 2d3401e..a093b2f 100644 --- a/index.html +++ b/index.html @@ -348,7 +348,7 @@
ffmpeg
starts the command
-i input_file
path, name and extension of the input file
-c:v h264_nvenc
tells FFmpeg to encode the video stream as H.264 using Nvidia's encoder.
-
--preset llhq
uses the "low latency, high quality" encoding preset, a good default when working with nvenc.
+
-preset llhq
uses the "low latency, high quality" encoding preset, a good default when working with nvenc.
-rc:v vbr_hq
means "variable bitrate, high quality," allowing you to set a minimum and maximum bitrate for the encode.
-cq:v 19
is the same as the CRF quality level specified using x264 or other CPU-based encoders, where 0 is lossless, 51 is the worst possible quality, and values from 18-23 are typical.
-b:v 8000k -maxrate:v 12000k
corresponds to a minimum bitrate of 8 megabits (8000k) per second, and a maximum of 12 megabits per second. nvenc is not as good at estimating bitrates as CPU-based encoders, and without this data, will occasionally choose a visibly lower bitrate. The 8-12 mbit range is generally a good one for high-quality 1080p h264.