mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-28 10:22:32 +00:00
* infra: trust system binary roots * infra: isolate windows install root overrides * infra: narrow windows reg lookup * browser: restore windows executable comments --------- Co-authored-by: Jacob Tomlinson <jtomlinson@nvidia.com>
80 lines
2.3 KiB
TypeScript
80 lines
2.3 KiB
TypeScript
import { execFile, type ExecFileOptions } from "node:child_process";
|
|
import { promisify } from "node:util";
|
|
import { resolveSystemBin } from "../infra/resolve-system-bin.js";
|
|
import {
|
|
MEDIA_FFMPEG_MAX_BUFFER_BYTES,
|
|
MEDIA_FFMPEG_TIMEOUT_MS,
|
|
MEDIA_FFPROBE_TIMEOUT_MS,
|
|
} from "./ffmpeg-limits.js";
|
|
|
|
const execFileAsync = promisify(execFile);
|
|
|
|
export type MediaExecOptions = {
|
|
timeoutMs?: number;
|
|
maxBufferBytes?: number;
|
|
};
|
|
|
|
function resolveExecOptions(
|
|
defaultTimeoutMs: number,
|
|
options: MediaExecOptions | undefined,
|
|
): ExecFileOptions {
|
|
return {
|
|
timeout: options?.timeoutMs ?? defaultTimeoutMs,
|
|
maxBuffer: options?.maxBufferBytes ?? MEDIA_FFMPEG_MAX_BUFFER_BYTES,
|
|
};
|
|
}
|
|
|
|
function requireSystemBin(name: string): string {
|
|
const resolved = resolveSystemBin(name, { trust: "standard" });
|
|
if (!resolved) {
|
|
const hint =
|
|
process.platform === "darwin"
|
|
? "e.g. brew install ffmpeg"
|
|
: "e.g. apt install ffmpeg / dnf install ffmpeg";
|
|
throw new Error(
|
|
`${name} not found in trusted system directories. ` +
|
|
`Install it via your system package manager (${hint}).`,
|
|
);
|
|
}
|
|
return resolved;
|
|
}
|
|
|
|
export async function runFfprobe(args: string[], options?: MediaExecOptions): Promise<string> {
|
|
const { stdout } = await execFileAsync(
|
|
requireSystemBin("ffprobe"),
|
|
args,
|
|
resolveExecOptions(MEDIA_FFPROBE_TIMEOUT_MS, options),
|
|
);
|
|
return stdout.toString();
|
|
}
|
|
|
|
export async function runFfmpeg(args: string[], options?: MediaExecOptions): Promise<string> {
|
|
const { stdout } = await execFileAsync(
|
|
requireSystemBin("ffmpeg"),
|
|
args,
|
|
resolveExecOptions(MEDIA_FFMPEG_TIMEOUT_MS, options),
|
|
);
|
|
return stdout.toString();
|
|
}
|
|
|
|
export function parseFfprobeCsvFields(stdout: string, maxFields: number): string[] {
|
|
return stdout
|
|
.trim()
|
|
.toLowerCase()
|
|
.split(/[,\r\n]+/, maxFields)
|
|
.map((field) => field.trim());
|
|
}
|
|
|
|
export function parseFfprobeCodecAndSampleRate(stdout: string): {
|
|
codec: string | null;
|
|
sampleRateHz: number | null;
|
|
} {
|
|
const [codecRaw, sampleRateRaw] = parseFfprobeCsvFields(stdout, 2);
|
|
const codec = codecRaw ? codecRaw : null;
|
|
const sampleRate = sampleRateRaw ? Number.parseInt(sampleRateRaw, 10) : Number.NaN;
|
|
return {
|
|
codec,
|
|
sampleRateHz: Number.isFinite(sampleRate) ? sampleRate : null,
|
|
};
|
|
}
|