makefx 1.6.1 → 1.6.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/README.md +1 -1
- package/makefx.mjs +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/makefx.mjs
CHANGED
|
@@ -4438,7 +4438,7 @@ require_websocket_server();
|
|
|
4438
4438
|
var wrapper_default = import_websocket.default;
|
|
4439
4439
|
//#endregion
|
|
4440
4440
|
//#region src/cli/version.ts
|
|
4441
|
-
var CLI_VERSION = "1.6.
|
|
4441
|
+
var CLI_VERSION = "1.6.2+1c90176554ef";
|
|
4442
4442
|
var CLI_VERSION_HEADER = "X-MakeFX-CLI-Version";
|
|
4443
4443
|
function cliVersionHeaders() {
|
|
4444
4444
|
return {
|
|
@@ -7067,7 +7067,6 @@ async function preflightLocalSeedanceReferences(options, deps, state) {
|
|
|
7067
7067
|
if (videoBytes >= 50 * 1024 * 1024) throw new Error("Seedance reference videos must total under 50 MB");
|
|
7068
7068
|
const hasCompleteVideoDurations = inspections.video.every((item) => item.durationMs !== void 0);
|
|
7069
7069
|
if (inspections.video.length > 0 && hasCompleteVideoDurations && (videoDurationMs < 2e3 || videoDurationMs > 15e3)) throw new Error("Seedance reference videos must total 2 to 15 seconds");
|
|
7070
|
-
if (inspections.audio.reduce((total, item) => total + (item.durationMs ?? 0), 0) > 15e3) throw new Error("Seedance reference audio must total at most 15 seconds");
|
|
7071
7070
|
}
|
|
7072
7071
|
async function resolveReferenceVariantIds(refs, ctx, deps, variants = [], mediaKind = CLI_GENERATION_MEDIA_KIND, assets = [], expectedReferenceMediaKind) {
|
|
7073
7072
|
const variantIds = [];
|