mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 12:54:29 +00:00
Two independent post-release feedback reports of the same mechanism from two different skills (both delegate to this one shared engine): audio.mjs fired every line's Kokoro TTS + whisper-transcribe subprocess concurrently via a bare Promise.all with no cap. - One OOM'd 12/13 lines on a resource-constrained laptop (32GB total, ~7GB free), requiring a manual patch to a sequential for-loop. - The other saw 7/8 lines fail on first run, then pass on retry once the model was cached — concurrent cold-start model loads overwhelming the machine, not a real synthesis failure. Kokoro/Whisper each load their own local model per subprocess, so firing every line at once multiplies that cost by the line count. Extracted the concurrency cap into lib/concurrency.mjs (audio.mjs is a script — it runs CLI/exit side effects on import, so it can't be unit-tested directly; the cap is small enough to pull out and test in isolation). Default 4, overridable via HYPERFRAMES_TTS_CONCURRENCY, floored at 1 (matching one report's own manual workaround). hyperframes-media/scripts/audio.mjs is the single canonical engine per its own header comment; product-launch-video, faceless-explainer, and pr-to-video each carry a thin wrapper that spawns this file as a subprocess (confirmed via their DEFAULT_ENGINE path), so this one fix covers all four skills without touching the other three. Tests: 4 new cases for mapWithConcurrency (order preserved regardless of completion order, cap actually enforced, limit > item count doesn't hang, empty input). Full skills test suite (514 tests) shows no new failures — the 444 pre-existing failures are environment-dependent and reproduce identically on unmodified main.
42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
import { test } from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import { mapWithConcurrency } from "./concurrency.mjs";
|
|
|
|
// Regression: audio.mjs used a bare Promise.all(lines.map(synthLine)) to
|
|
// synthesize every TTS line at once, spawning one Kokoro/whisper model load
|
|
// per line concurrently. Two independent reports of this overwhelming a
|
|
// machine (OOM, and cold-start contention causing spurious failures).
|
|
// mapWithConcurrency is the extracted cap; test it in isolation since
|
|
// audio.mjs itself is a script (runs CLI/exit side effects on import).
|
|
test("processes every item and preserves input order regardless of completion order", async () => {
|
|
const order = [5, 1, 3, 2, 4];
|
|
const results = await mapWithConcurrency(order, 2, async (n) => {
|
|
await new Promise((r) => setTimeout(r, n));
|
|
return n * 10;
|
|
});
|
|
assert.deepEqual(results, [50, 10, 30, 20, 40]);
|
|
});
|
|
|
|
test("never runs more than `limit` at once", async () => {
|
|
let inFlight = 0;
|
|
let maxInFlight = 0;
|
|
const items = Array.from({ length: 10 }, (_, i) => i);
|
|
await mapWithConcurrency(items, 3, async () => {
|
|
inFlight++;
|
|
maxInFlight = Math.max(maxInFlight, inFlight);
|
|
await new Promise((r) => setTimeout(r, 5));
|
|
inFlight--;
|
|
});
|
|
assert.equal(maxInFlight, 3);
|
|
});
|
|
|
|
test("limit larger than the item count runs everything without hanging", async () => {
|
|
const results = await mapWithConcurrency([1, 2], 10, async (n) => n * 2);
|
|
assert.deepEqual(results, [2, 4]);
|
|
});
|
|
|
|
test("empty input resolves to an empty array", async () => {
|
|
const results = await mapWithConcurrency([], 4, async (n) => n);
|
|
assert.deepEqual(results, []);
|
|
});
|