DaVinci Resolve: Difference between revisions

From NixOS Wiki
imported>Klaymore
Basic troubleshooting/AMD driver information
 
imported>Spacebanana420
m Added intel driver section
Line 8: Line 8:


Contrary to the [https://wiki.archlinux.org/title/DaVinci_Resolve#Installation Arch Wiki], DaVinci Resolve seems to work (on an RX 570) without switching to proprietary GPU drivers.
Contrary to the [https://wiki.archlinux.org/title/DaVinci_Resolve#Installation Arch Wiki], DaVinci Resolve seems to work (on an RX 570) without switching to proprietary GPU drivers.
=== Intel ===
DaVinci Resolve has partial support for Intel GPUs on Linux. Audio playback works on the Fairlight page, but the video timeline does not work. To add Intel support, add the following setting to your <code>configuration.nix</code>:
<syntaxhighlight lang="nix">
hardware.opengl = {
    enable = true;
    driSupport32Bit = true;
    extraPackages = with pkgs; [
        intel-compute-runtime
    ];
  };
</syntaxhighlight>





Revision as of 19:44, 20 November 2023

Installation

Install the davinci-resolve package.


Drivers

AMD

Contrary to the Arch Wiki, DaVinci Resolve seems to work (on an RX 570) without switching to proprietary GPU drivers.

Intel

DaVinci Resolve has partial support for Intel GPUs on Linux. Audio playback works on the Fairlight page, but the video timeline does not work. To add Intel support, add the following setting to your configuration.nix:

 hardware.opengl = {
    enable = true;
    driSupport32Bit = true;
    extraPackages = with pkgs; [
        intel-compute-runtime
    ];
  };


Troubleshooting

If it doesn't launch, and crashes when running davinci-resolve, then try running it as root.