FFmpeg: Difference between revisions

M3vtfbp (talk | contribs)
Tags: Mobile edit Mobile web edit
M3vtfbp (talk | contribs)
Tags: Mobile edit Mobile web edit
Line 32: Line 32:
=== Speeding up install ===
=== Speeding up install ===


It's possible to speed up the install. After compiling is finished, a series of generic checks are run. To skip these checks, we need to set doChecks to false. Here is an example of adding FDK AAC support, and skipping post build checks.
It's possible to speed up the install. After compiling is finished, a series of generic checks are run. To skip these checks, we need to set doCheck to false. Here is an example of adding FDK AAC support, and skipping post build checks.


   environment.systemPackages = [
   environment.systemPackages = [
     ((pkgs.ffmpeg-full.override { withUnfree = true; }).overrideAttrs (_: { doCheck = false; }))
     ((pkgs.ffmpeg-full.override { withUnfree = true; }).overrideAttrs (_: { doCheck = false; }))
   ];
   ];