FFmpeg: Difference between revisions
Tags: Mobile edit Mobile web edit |
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 | 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; })) | ||
]; | ]; | ||