octoprint: use headless ffmpeg by default (#499053)

This commit is contained in:
Gergő Gutyina
2026-04-08 08:39:21 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ let
baseConfig = lib.recursiveUpdate {
plugins.curalegacy.cura_engine = "${pkgs.curaengine_stable}/bin/CuraEngine";
server.port = cfg.port;
webcam.ffmpeg = "${pkgs.ffmpeg.bin}/bin/ffmpeg";
webcam.ffmpeg = "${pkgs.ffmpeg-headless.bin}/bin/ffmpeg";
} (lib.optionalAttrs (cfg.host != null) { server.host = cfg.host; });
fullConfig = lib.recursiveUpdate cfg.extraConfig baseConfig;
+1 -1
View File
@@ -172,7 +172,7 @@ let
# hardcore path to ffmpeg and hide related settings
(replaceVars ./ffmpeg-path.patch {
ffmpeg = "${pkgs.ffmpeg}/bin/ffmpeg";
ffmpeg = "${pkgs.ffmpeg-headless}/bin/ffmpeg";
})
];