Accelerated Video Playback

From NixOS Wiki
Revision as of 07:43, 11 December 2018 by imported>Colemickens (Created page with "This page is meant to help with techniques for getting accelerated video playback working in NixOS. Sample configuration: { ... hardware.opengl = { enable =...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This page is meant to help with techniques for getting accelerated video playback working in NixOS.

Sample configuration:

 {
   ...
   hardware.opengl = {
     enable = true;
     extraPackages = with pkgs; [
       vaapiIntel
       vaapiVdpau
       libvdpau-va-gl
     ];
   };
   ...
 }