NVENC

August 8, 2026 ยท View on GitHub

This encoder offers the best latency, which is most noticeable at higher resolutions.

Hardware

This encoder requires a supported NVIDIA graphics card:

  • a "professional" Quadro 4000 card (no license key required)
  • a consumer card and a license key or a patch to work around the artificial context limit which can be debilitating
You must have [PyCUDA](http://mathema.tician.de/software/pycuda/) installed (it is included in the official [xpra repositories](https://github.com/Xpra-org/xpra/wiki/Download)), and a recent enough version of the nvidia drivers. It is not compatible with the `nouveau` driver.

How you install those drivers is entirely up to you, here are some options for Fedora / RHEL:

If your CUDA (libcuda.so) or NVENC (libnvidia-encode.so) libraries are installed in an unusual location, it is your responsibility to ensure they can be loaded at runtime, usually by adding the directory to the LD_LIBRARY_PATH.

If the codec loads properly, it will be used ahead of the other software encoders automatically.

You can verify the video encoder currently in use with:

xpra info | grep "encoder="

Important: the video encoder is only used when needed, usually when there is a stream of screen updates.

To force xpra to use nvenc exclusively as video encoder, you can use the `--video-encoders=` command line option: ```shell xpra seamless :10 --video-encoders=nvenc ```

To debug the availability of video encoders and GPUs:

xpra encoding
xpra video
xpra nvinfo

Once nvenc is running, you can debug the encoding process step with:

xpra seamless -d nvenc ...
You can store the license keys in `nvenc.keys`, either globally in `/etc/xpra/` or per-user in `~/.xpra/`.

Or you can also use the environment variable:

XPRA_NVENC_CLIENT_KEY="0A1B2C3D-4E5F-6071-8293-A4B5C6D7E8F9" xpra ...

Newer SDK versions may not support keys, or just not the same set of keys, in which case the number of sessions will be limited when using consumer cards unless you patch the library.

* download and install the [CUDA SDK](https://developer.nvidia.com/cuda-downloads) * install [PyCuda](http://wiki.tiker.net/PyCuda/Installation/Linux) - it is included in the [official repositories](https://github.com/Xpra-org/xpra/wiki/Download) for Fedora and RHEL * download the [NVENC SDK](https://developer.nvidia.com/nvidia-video-codec-sdk), aka "NVIDIA VIDEO CODEC SDK" and install it somewhere (ie: just unzip into `/opt/`) * create a `pkgconfig` file matching your SDK version and location, you can use [nvenc.pc](https://github.com/Xpra-org/xpra/blob/master/fs/lib/pkgconfig/nvenc.pc) as template. * when building xpra, nvenc support should be auto-detected, but you can try forcing it to verify, ie: ```shell ./setup.py build --with-nvenc ``` * you may need to adjust some paths * if CUDA refuses to build and complains about `Installation Failed. Using unsupported Compiler` run the CUDA installer with `--override` * there are undocumented incompatibilities between kernel versions, nvidia driver versions and nvenc SDK versions. If possible, install the driver version bundled with the nvenc SDK - these may manifest itself as undecipherable errors at runtime (`incompatible structure version errors`, etc) * to adapt to new versions of the SDK and new architectures, one must add compile options to the build file - see [Matching SM architectures (CUDA arch and CUDA gencode) for various NVIDIA cards](https://arnon.dk/matching-sm-architectures-arch-and-gencode-for-various-nvidia-cards/)