DaVinci Resolve: Difference between revisions

From NixOS Wiki
(Beginning sentence and Category:Applications)
(imported from old wiki)
Line 31: Line 31:
=== Resolve crashes/fails to start ===
=== Resolve crashes/fails to start ===
If it doesn't launch, and crashes when running <code>davinci-resolve</code>, then try running it as root.
If it doesn't launch, and crashes when running <code>davinci-resolve</code>, then try running it as root.
If it didn't help, you can view the error log at <code>~/.local/share/DaVinciResolve/logs/ResolveDebug.txt</code> to pinpoint the issue.
If you can spot a line similar to <code>Cannot mix incompatible Qt library (5.15.12) with this library (5.15.2)</code>, and have configured QT options in your NixOS configuration (<code>qt.enable = true;</code>), try disabling them.


=== Cannot import video file ===
=== Cannot import video file ===

Revision as of 05:09, 9 June 2024

DaVinci Resolve color grading, color correction, visual effects, and audio post-production video editing application. It is unfree and multi-plattform.

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

Resolve crashes/fails to start

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

If it didn't help, you can view the error log at ~/.local/share/DaVinciResolve/logs/ResolveDebug.txt to pinpoint the issue.

If you can spot a line similar to Cannot mix incompatible Qt library (5.15.12) with this library (5.15.2), and have configured QT options in your NixOS configuration (qt.enable = true;), try disabling them.

Cannot import video file

DaVinci Resolve's free edition does not come with H264/H265 support. You need to convert your video to a supported video format, like DNxHD/DNxHR and Cineform. you can do this with ffmpeg. With FFmpeg installed, assuming your video is called video.mp4, you can use the following command to convert:

ffmpeg -i video.mp4 -c:v dnxhd -profile:v dnxhr_hq -c:a pcm_s16le -pix_fmt yuv422p output.mov

This command will convert your video to a DNxHR video and your audio to uncompressed 16bit PCM. For 24bit PCM, use -c:a pcm_s24le instead.

You can know more about DNxHD/HR profiles with the command ffmpeg -h encoder=dnxhd

Resolve also supports Cineform and a few other formats. For Cineform encoding, use the cfhd encoder.