@camstack/addon-pipeline 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/addon.cjs +3 -4
- package/dist/addon.cjs.map +1 -1
- package/dist/addon.js +2 -3
- package/dist/addon.js.map +1 -1
- package/dist/index.cjs +3 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
package/dist/addon.cjs
CHANGED
|
@@ -79,19 +79,18 @@ function buildFfmpegOutputArgs(config) {
|
|
|
79
79
|
if (config.outputArgs?.length) args.push(...config.outputArgs);
|
|
80
80
|
return args;
|
|
81
81
|
}
|
|
82
|
-
async function resolveFfmpegBinary(configPath,
|
|
82
|
+
async function resolveFfmpegBinary(configPath, deps) {
|
|
83
83
|
if (configPath && configPath !== "ffmpeg") {
|
|
84
84
|
return configPath;
|
|
85
85
|
}
|
|
86
|
-
return
|
|
86
|
+
return deps.ensureFfmpeg();
|
|
87
87
|
}
|
|
88
|
-
var import_node_child_process3, os
|
|
88
|
+
var import_node_child_process3, os;
|
|
89
89
|
var init_ffmpeg_config = __esm({
|
|
90
90
|
"src/recording/ffmpeg-config.ts"() {
|
|
91
91
|
"use strict";
|
|
92
92
|
import_node_child_process3 = require("child_process");
|
|
93
93
|
os = __toESM(require("os"), 1);
|
|
94
|
-
import_core = require("@camstack/core");
|
|
95
94
|
}
|
|
96
95
|
});
|
|
97
96
|
|