DEV Community

Sam Jesso
Sam Jesso

Posted on

Using Nvidia drivers within a Docker container for Video

Here's a hint:

NVIDIA_DRIVER_CAPABILITIES=all
Enter fullscreen mode Exit fullscreen mode

is the same as:

NVIDIA_DRIVER_CAPABILITIES=utility,compute
Enter fullscreen mode Exit fullscreen mode

for video encoding/decoding, you need:

NVIDIA_DRIVER_CAPABILTITIES=video,utility,compute
Enter fullscreen mode Exit fullscreen mode

video is not included in all. 🤦‍♂️

Top comments (0)