Skip to main content

kNVENCEncoderMultipass

Electron APIs / recorder / kNVENCEncoderMultipass

type kNVENCEncoderMultipass = "qres" | "fullres" | "disabled";

Specifies the multipass encoding mode for NVIDIA's NVENC encoder.

Multipass encoding improves visual quality by analyzing the video in multiple passes to better allocate bitrate and compression decisions.

ValueDescription
'qres'Quarter-resolution first pass followed by full-resolution encoding. Offers a good balance between speed and improved quality.
'fullres'Full-resolution multipass encoding. Produces the highest quality results but increases encoding time.
'disabled'Multipass is turned off. Results in faster encoding at the potential cost of lower quality.

Example

const multipass: kNVENCEncoderMultipass = "qres";