Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions packages/producer/src/services/render/stages/audioStage.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/**
* audioStage — mix the composition's audio tracks into `workDir/audio.aac`.
*
* Trivial wrapper around `processCompositionAudio`. The stage is skipped
* (no ffmpeg invocation) when the composition has no audio elements; the
* timer is still set so the perf summary stays consistent across renders.
*
* Hard constraints preserved verbatim:
* - `audioOutputPath` is always `join(workDir, "audio.aac")`, regardless
* of whether any audio was actually produced.
* - `hasAudio` reflects `audioResult.success` from
* `processCompositionAudio`; it is `false` when there are no audio
* elements (skips the call entirely) and also when the call returns
* `success: false`.
* - `perfStages.audioProcessMs` is set whether or not the call ran.
*/

import { join } from "node:path";
import { processCompositionAudio } from "@hyperframes/engine";
import type { RenderJob } from "../../renderOrchestrator.js";
import type { CompositionMetadata } from "../shared.js";

export interface AudioStageInput {
projectDir: string;
workDir: string;
/** `join(workDir, "compiled")`; passed through to the audio mixer for asset resolution. */
compiledDir: string;
job: RenderJob;
/** Composition duration (post-probe). Must be > 0 — probeStage guarantees this. */
duration: number;
/** Read-only view of `composition.audios`. */
audios: CompositionMetadata["audios"];
abortSignal: AbortSignal | undefined;
assertNotAborted: () => void;
}

export interface AudioStageResult {
/** Always `join(workDir, "audio.aac")`. */
audioOutputPath: string;
/** True iff the audio mix actually produced a file. False when there are no audio elements. */
hasAudio: boolean;
/** Wall-clock ms for the audio mix phase. Zero-elements path is near-zero but always set. */
audioProcessMs: number;
}

export async function runAudioStage(input: AudioStageInput): Promise<AudioStageResult> {
const { projectDir, workDir, compiledDir, duration, audios, abortSignal, assertNotAborted } =
input;

const stage3Start = Date.now();
const audioOutputPath = join(workDir, "audio.aac");
let hasAudio = false;

if (audios.length > 0) {
const audioResult = await processCompositionAudio(
audios,
projectDir,
join(workDir, "audio-work"),
audioOutputPath,
duration,
abortSignal,
undefined,
compiledDir,
);
assertNotAborted();

hasAudio = audioResult.success;
}
const audioProcessMs = Date.now() - stage3Start;

return { audioOutputPath, hasAudio, audioProcessMs };
}
36 changes: 13 additions & 23 deletions packages/producer/src/services/renderOrchestrator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ import {
muxVideoWithAudio,
applyFaststart,
getEncoderPreset,
processCompositionAudio,
calculateOptimalWorkers,
distributeFrames,
executeParallelCapture,
Expand Down Expand Up @@ -101,6 +100,7 @@ import {
import { runCompileStage } from "./render/stages/compileStage.js";
import { runProbeStage } from "./render/stages/probeStage.js";
import { runExtractVideosStage } from "./render/stages/extractVideosStage.js";
import { runAudioStage } from "./render/stages/audioStage.js";

/**
* Wrap a cleanup operation so it never throws, but logs any failure.
Expand Down Expand Up @@ -2076,30 +2076,20 @@ export async function executeRenderJob(
}

// ── Stage 3: Audio processing ───────────────────────────────────────
const stage3Start = Date.now();
updateJobStatus(job, "preprocessing", "Processing audio tracks", 20, onProgress);

const audioOutputPath = join(workDir, "audio.aac");
let hasAudio = false;

if (composition.audios.length > 0) {
const audioResult = await processCompositionAudio(
composition.audios,
projectDir,
join(workDir, "audio-work"),
audioOutputPath,
job.duration,
abortSignal,
undefined,
compiledDir,
);
assertNotAborted();

hasAudio = audioResult.success;
perfStages.audioProcessMs = Date.now() - stage3Start;
} else {
perfStages.audioProcessMs = Date.now() - stage3Start;
}
const audioResult = await runAudioStage({
projectDir,
workDir,
compiledDir,
job,
duration: job.duration,
audios: composition.audios,
abortSignal,
assertNotAborted,
});
const { audioOutputPath, hasAudio } = audioResult;
perfStages.audioProcessMs = audioResult.audioProcessMs;

// ── Stage 4: Frame capture ──────────────────────────────────────────
const stage4Start = Date.now();
Expand Down
Loading