2026-08-11 16:16:52 +07:00
|
|
|
/**
|
|
|
|
|
* Lightweight demuxer — replaces node-av's LibavDemuxer for GoLive.
|
|
|
|
|
*
|
|
|
|
|
* Spawns ffmpeg to remux input into H264 AnnexB on stdout (video only —
|
|
|
|
|
* screen share doesn't need to mux audio into the demuxer; audio goes
|
|
|
|
|
* separately). This replaces the 114MB node-av binary with a plain ffmpeg
|
|
|
|
|
* spawn.
|
|
|
|
|
*
|
|
|
|
|
* Each video "frame" emitted is a complete NAL sequence terminated by a
|
|
|
|
|
* keyframe boundary (IDR). Audio is not extracted here — for GoLive with
|
|
|
|
|
* audio, the NUT mux + full demuxer would be needed; screen share audio is
|
|
|
|
|
* handled via a separate ffmpeg instance (see getDirectScreenInput).
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { spawn } from "node:child_process";
|
|
|
|
|
import { randomUUID } from "node:crypto";
|
2026-08-11 17:38:06 +07:00
|
|
|
import { createWriteStream, existsSync, readdirSync } from "node:fs";
|
|
|
|
|
import { tmpdir } from "node:os";
|
|
|
|
|
import { join } from "node:path";
|
2026-08-11 16:16:52 +07:00
|
|
|
import { PassThrough } from "node:stream";
|
|
|
|
|
|
2026-08-11 17:38:06 +07:00
|
|
|
/**
|
|
|
|
|
* Resolve ffmpeg/ffprobe binary. Prefers explicit env override, then PATH,
|
|
|
|
|
* then a Nix-store ffmpeg-headless (the GMW flake provides it in the service
|
|
|
|
|
* profile, but dev shells / tests may not have it on PATH).
|
|
|
|
|
*/
|
|
|
|
|
function resolveBin(name: "ffmpeg"): string {
|
|
|
|
|
const override = process.env.FFMPEG_PATH;
|
|
|
|
|
if (override && existsSync(override)) return override;
|
|
|
|
|
// Nix store scan: <store>/<hash>-ffmpeg-headless-*/bin/<name>
|
|
|
|
|
const store = "/nix/store";
|
|
|
|
|
if (existsSync(store)) {
|
|
|
|
|
const entries = readdirSync(store);
|
|
|
|
|
for (const entry of entries) {
|
|
|
|
|
if (!entry.includes("ffmpeg-headless-")) continue;
|
|
|
|
|
const candidate = join(store, entry, "bin", name);
|
|
|
|
|
if (existsSync(candidate)) return candidate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return name; // fall back to PATH
|
2026-08-11 16:16:52 +07:00
|
|
|
}
|
|
|
|
|
|
2026-08-11 17:38:06 +07:00
|
|
|
const FFMPEG = resolveBin("ffmpeg");
|
|
|
|
|
|
|
|
|
|
export const AVCodecID = {
|
|
|
|
|
AV_CODEC_ID_H264: 27,
|
|
|
|
|
AV_CODEC_ID_HEVC: 173,
|
|
|
|
|
AV_CODEC_ID_VP8: 139,
|
|
|
|
|
AV_CODEC_ID_VP9: 167,
|
|
|
|
|
AV_CODEC_ID_AV1: 225,
|
|
|
|
|
AV_CODEC_ID_OPUS: 86019,
|
|
|
|
|
} as const;
|
|
|
|
|
export type AVCodecID = (typeof AVCodecID)[keyof typeof AVCodecID];
|
|
|
|
|
|
2026-08-11 16:16:52 +07:00
|
|
|
export const AV_PKT_FLAG_KEY = 1;
|
|
|
|
|
|
|
|
|
|
export interface Frame {
|
|
|
|
|
data: Buffer | null;
|
|
|
|
|
pts: number;
|
|
|
|
|
duration: number;
|
|
|
|
|
timeBase: { num: number; den: number };
|
|
|
|
|
flags: number;
|
|
|
|
|
streamIndex: number;
|
|
|
|
|
free(): void;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface DemuxedStream {
|
|
|
|
|
codec: number;
|
|
|
|
|
codecName: string;
|
|
|
|
|
width: number;
|
|
|
|
|
height: number;
|
|
|
|
|
framerate_num: number;
|
|
|
|
|
framerate_den: number;
|
|
|
|
|
sample_rate: number;
|
|
|
|
|
stream: PassThrough;
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-11 17:38:06 +07:00
|
|
|
/**
|
|
|
|
|
* Probe a media file for stream info using ffmpeg's stderr (the
|
|
|
|
|
* ffmpeg-headless Nix package ships ffmpeg but not ffprobe). Returns
|
|
|
|
|
* stream descriptors in the same shape ffprobe -show_streams would.
|
|
|
|
|
*/
|
2026-08-11 16:16:52 +07:00
|
|
|
export async function probeStreams(
|
|
|
|
|
url: string,
|
|
|
|
|
): Promise<Array<Record<string, unknown>>> {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
2026-08-11 17:38:06 +07:00
|
|
|
const proc = spawn(FFMPEG, [
|
2026-08-11 16:16:52 +07:00
|
|
|
"-hide_banner",
|
|
|
|
|
"-loglevel",
|
2026-08-11 17:38:06 +07:00
|
|
|
"info",
|
2026-08-11 16:16:52 +07:00
|
|
|
"-i",
|
|
|
|
|
url,
|
2026-08-11 17:38:06 +07:00
|
|
|
"-f",
|
|
|
|
|
"null",
|
|
|
|
|
"-",
|
2026-08-11 16:16:52 +07:00
|
|
|
]);
|
|
|
|
|
let stderr = "";
|
|
|
|
|
proc.stderr.on("data", (d: Buffer) => (stderr += d.toString()));
|
2026-08-11 17:38:06 +07:00
|
|
|
proc.on("close", () => {
|
|
|
|
|
// Parse "Stream #0:0: Video: h264 (High), yuv420p, 640x360, 30 fps"
|
|
|
|
|
const streams: Array<Record<string, unknown>> = [];
|
|
|
|
|
const re = /Stream #0:(\d+): (Video|Audio): ([^,]+)/g;
|
|
|
|
|
let m: RegExpExecArray | null;
|
|
|
|
|
// biome-ignore lint/suspicious/noAssignInExpressions: regex loop idiom
|
|
|
|
|
while ((m = re.exec(stderr)) !== null) {
|
|
|
|
|
const [full, idx, kind, codecRaw] = m;
|
|
|
|
|
void full;
|
|
|
|
|
const codecName = codecRaw.split(" ")[0].toLowerCase();
|
|
|
|
|
const stream: Record<string, unknown> = {
|
|
|
|
|
index: Number(idx),
|
|
|
|
|
codec_type: kind.toLowerCase(),
|
|
|
|
|
codec_name: codecName,
|
|
|
|
|
width: 0,
|
|
|
|
|
height: 0,
|
|
|
|
|
r_frame_rate: "0/1",
|
|
|
|
|
sample_rate: 0,
|
|
|
|
|
};
|
|
|
|
|
// dimensions: "640x360"
|
|
|
|
|
const dim = /(\d{2,5})x(\d{2,5})/.exec(stderr.slice(m.index));
|
|
|
|
|
if (dim) {
|
|
|
|
|
stream.width = Number(dim[1]);
|
|
|
|
|
stream.height = Number(dim[2]);
|
2026-08-11 16:16:52 +07:00
|
|
|
}
|
2026-08-11 17:38:06 +07:00
|
|
|
// fps: "30 fps" or "29.97 fps"
|
|
|
|
|
const fps = /(\d+(?:\.\d+)?) fps/.exec(stderr.slice(m.index));
|
|
|
|
|
if (fps) {
|
|
|
|
|
const v = Number(fps[1]);
|
|
|
|
|
stream.r_frame_rate = `${Math.round(v * 1000)}/1000`;
|
|
|
|
|
}
|
|
|
|
|
// sample rate for audio: "48000 Hz"
|
|
|
|
|
const sr = /(\d+) Hz/.exec(stderr.slice(m.index));
|
|
|
|
|
if (sr) stream.sample_rate = Number(sr[1]);
|
|
|
|
|
streams.push(stream);
|
2026-08-11 16:16:52 +07:00
|
|
|
}
|
2026-08-11 17:38:06 +07:00
|
|
|
resolve(streams);
|
2026-08-11 16:16:52 +07:00
|
|
|
});
|
2026-08-11 17:38:06 +07:00
|
|
|
proc.on("error", (err) => reject(err));
|
2026-08-11 16:16:52 +07:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Demux input (URL string or readable stream) into video frames on a
|
|
|
|
|
* PassThrough. Uses ffmpeg -f h264 -c copy for video-only AnnexB output.
|
|
|
|
|
* Returns stream info + the video pipe. Audio is not extracted (GoLive
|
|
|
|
|
* screen share sends silence / uses Discord's mixed audio).
|
|
|
|
|
*/
|
|
|
|
|
export async function demux(
|
|
|
|
|
input: string | PassThrough,
|
|
|
|
|
_opts: { format: string },
|
|
|
|
|
): Promise<{
|
|
|
|
|
video: DemuxedStream | undefined;
|
|
|
|
|
audio: DemuxedStream | undefined;
|
|
|
|
|
close: () => void;
|
|
|
|
|
}> {
|
|
|
|
|
const _label = randomUUID();
|
|
|
|
|
const vPipe = new PassThrough({ objectMode: true, highWaterMark: 128 });
|
|
|
|
|
const aPipe = new PassThrough({ objectMode: true, highWaterMark: 128 });
|
|
|
|
|
|
2026-08-11 17:38:06 +07:00
|
|
|
// For stream input, spool to a temp file first so ffprobe can inspect it
|
|
|
|
|
// (ffprobe needs a seekable file; pipes can't be re-read). The stream is
|
|
|
|
|
// fully consumed before ffmpeg starts — acceptable for screen-share
|
|
|
|
|
// sources which are already fully buffered by yt-dlp in practice.
|
|
|
|
|
let spoolPath: string | null = null;
|
|
|
|
|
const cleanupSpool = () => {
|
|
|
|
|
if (spoolPath) {
|
|
|
|
|
import("node:fs").then(({ unlink }) => unlink(spoolPath!, () => {}));
|
|
|
|
|
spoolPath = null;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let effectiveInput: string;
|
|
|
|
|
if (typeof input === "string") {
|
|
|
|
|
effectiveInput = input;
|
|
|
|
|
} else {
|
|
|
|
|
spoolPath = join(tmpdir(), `golive-demux-${_label}.h264`);
|
|
|
|
|
const ws = createWriteStream(spoolPath);
|
|
|
|
|
await new Promise<void>((resolve, reject) => {
|
|
|
|
|
input.pipe(ws);
|
|
|
|
|
input.on("error", reject);
|
|
|
|
|
ws.on("finish", resolve);
|
|
|
|
|
ws.on("error", reject);
|
|
|
|
|
});
|
|
|
|
|
effectiveInput = spoolPath;
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-11 16:16:52 +07:00
|
|
|
// Probe for codec + dimensions
|
|
|
|
|
let streams: Array<Record<string, unknown>> = [];
|
2026-08-11 17:38:06 +07:00
|
|
|
try {
|
|
|
|
|
streams = await probeStreams(effectiveInput);
|
|
|
|
|
} catch (_e) {
|
|
|
|
|
// probe failed (e.g. raw h264 without container) — infer h264 default
|
|
|
|
|
streams = [];
|
2026-08-11 16:16:52 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const v = streams.find((s) => s.codec_type === "video");
|
|
|
|
|
const a = streams.find((s) => s.codec_type === "audio");
|
|
|
|
|
let vInfo: DemuxedStream | undefined;
|
|
|
|
|
let aInfo: DemuxedStream | undefined;
|
|
|
|
|
|
|
|
|
|
if (v) {
|
|
|
|
|
const codecName = (v.codec_name as string) ?? "h264";
|
|
|
|
|
const rFrame = (v.r_frame_rate as string) ?? "0/1";
|
|
|
|
|
const [num, den] = rFrame.split("/").map((n) => Number(n));
|
|
|
|
|
vInfo = {
|
|
|
|
|
codec:
|
|
|
|
|
AVCodecID[
|
|
|
|
|
(codecName.toUpperCase() as keyof typeof AVCodecID) ??
|
|
|
|
|
"AV_CODEC_ID_H264"
|
2026-08-11 17:38:06 +07:00
|
|
|
] ?? AVCodecID.AV_CODEC_ID_H264,
|
2026-08-11 16:16:52 +07:00
|
|
|
codecName,
|
|
|
|
|
width: (v.width as number) ?? 0,
|
|
|
|
|
height: (v.height as number) ?? 0,
|
|
|
|
|
framerate_num: num ?? 0,
|
|
|
|
|
framerate_den: den ?? 1,
|
|
|
|
|
sample_rate: 0,
|
|
|
|
|
stream: vPipe,
|
|
|
|
|
};
|
2026-08-11 17:38:06 +07:00
|
|
|
} else {
|
|
|
|
|
// Probe failed (e.g. raw AnnexB h264 input) — still emit frames on the
|
|
|
|
|
// video pipe; playStream infers dimensions from the first frame.
|
|
|
|
|
vInfo = {
|
|
|
|
|
codec: AVCodecID.AV_CODEC_ID_H264,
|
|
|
|
|
codecName: "h264",
|
|
|
|
|
width: 0,
|
|
|
|
|
height: 0,
|
|
|
|
|
framerate_num: 0,
|
|
|
|
|
framerate_den: 1,
|
|
|
|
|
sample_rate: 0,
|
|
|
|
|
stream: vPipe,
|
|
|
|
|
};
|
2026-08-11 16:16:52 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (a) {
|
|
|
|
|
const codecName = (a.codec_name as string) ?? "opus";
|
|
|
|
|
aInfo = {
|
|
|
|
|
codec:
|
|
|
|
|
AVCodecID[
|
|
|
|
|
(codecName.toUpperCase() as keyof typeof AVCodecID) ??
|
|
|
|
|
"AV_CODEC_ID_OPUS"
|
|
|
|
|
],
|
|
|
|
|
codecName,
|
|
|
|
|
width: 0,
|
|
|
|
|
height: 0,
|
|
|
|
|
framerate_num: 0,
|
|
|
|
|
framerate_den: 0,
|
|
|
|
|
sample_rate: Number(a.sample_rate) ?? 0,
|
|
|
|
|
stream: aPipe,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Spawn ffmpeg — extract raw video (AnnexB for H264) to stdout
|
|
|
|
|
const args: string[] = [
|
|
|
|
|
"-hide_banner",
|
|
|
|
|
"-loglevel",
|
|
|
|
|
"error",
|
2026-08-11 17:38:06 +07:00
|
|
|
"-i",
|
|
|
|
|
effectiveInput,
|
2026-08-11 16:16:52 +07:00
|
|
|
"-c:v",
|
|
|
|
|
"copy",
|
|
|
|
|
"-an", // no audio in this minimal demuxer
|
|
|
|
|
"-f",
|
|
|
|
|
"h264",
|
|
|
|
|
"pipe:1",
|
|
|
|
|
];
|
|
|
|
|
|
2026-08-11 17:38:06 +07:00
|
|
|
const proc = spawn(FFMPEG, args, { stdio: ["ignore", "pipe", "pipe"] });
|
2026-08-11 16:16:52 +07:00
|
|
|
|
|
|
|
|
// Scan stdout for NAL units. Each NAL unit (between start codes) is one frame
|
|
|
|
|
// payload. We emit them individually; the packetizer chain handles FU-A.
|
|
|
|
|
let videoBuf = Buffer.alloc(0);
|
|
|
|
|
let frameCount = 0;
|
|
|
|
|
|
|
|
|
|
const emitFrame = (nal: Uint8Array, isKeyFrame: boolean) => {
|
|
|
|
|
vPipe.write({
|
|
|
|
|
data: Buffer.from(nal),
|
|
|
|
|
pts: frameCount,
|
|
|
|
|
duration: 1,
|
|
|
|
|
timeBase: { num: 1, den: 90000 },
|
|
|
|
|
flags: isKeyFrame ? AV_PKT_FLAG_KEY : 0,
|
|
|
|
|
streamIndex: 0,
|
|
|
|
|
free: () => {},
|
|
|
|
|
});
|
|
|
|
|
frameCount++;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (proc.stdout) {
|
|
|
|
|
proc.stdout.on("data", (chunk: Buffer) => {
|
|
|
|
|
videoBuf = Buffer.concat([videoBuf, chunk]);
|
|
|
|
|
// Find start codes (00 00 01 or 00 00 00 01) and split NALs
|
|
|
|
|
let start = 0;
|
|
|
|
|
// If buffer starts with zeros, that's the first start code — emit from there
|
|
|
|
|
while (start < videoBuf.length) {
|
|
|
|
|
let scPos = -1;
|
|
|
|
|
for (let i = start + 1; i < videoBuf.length - 2; i++) {
|
|
|
|
|
if (
|
|
|
|
|
videoBuf[i] === 0 &&
|
|
|
|
|
videoBuf[i + 1] === 0 &&
|
|
|
|
|
videoBuf[i + 2] === 1
|
|
|
|
|
) {
|
|
|
|
|
scPos = i + 3;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (scPos === -1) break;
|
|
|
|
|
// Emit the NAL from `start` to `scPos` (but skip the start code bytes at `start`)
|
|
|
|
|
if (start < scPos) {
|
|
|
|
|
let nalStart = start;
|
|
|
|
|
// Skip start code bytes for the NAL itself (00 00 01)
|
|
|
|
|
if (
|
|
|
|
|
videoBuf[nalStart] === 0 &&
|
|
|
|
|
videoBuf[nalStart + 1] === 0 &&
|
|
|
|
|
videoBuf[nalStart + 2] === 1
|
|
|
|
|
) {
|
|
|
|
|
nalStart += 3;
|
|
|
|
|
} else if (
|
|
|
|
|
nalStart + 3 < scPos &&
|
|
|
|
|
videoBuf[nalStart] === 0 &&
|
|
|
|
|
videoBuf[nalStart + 1] === 0 &&
|
|
|
|
|
videoBuf[nalStart + 2] === 0 &&
|
|
|
|
|
videoBuf[nalStart + 3] === 1
|
|
|
|
|
) {
|
|
|
|
|
nalStart += 4;
|
|
|
|
|
}
|
|
|
|
|
const nal = videoBuf.subarray(nalStart, scPos);
|
|
|
|
|
// Trim trailing zero bytes (from start code overlap)
|
|
|
|
|
let end = nal.length;
|
|
|
|
|
while (end > 0 && nal[end - 1] === 0) end--;
|
|
|
|
|
if (end > 0) {
|
|
|
|
|
const nalTrimmed = nal.subarray(0, end);
|
|
|
|
|
const isIdr = (nalTrimmed[0] & 0x1f) === 5; // IDR
|
|
|
|
|
emitFrame(nalTrimmed, isIdr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Skip the 00 00 01 at scPos-3 to find next
|
|
|
|
|
start = scPos;
|
|
|
|
|
// But the next start code needs at least 3 bytes
|
|
|
|
|
if (start > videoBuf.length - 3) break;
|
|
|
|
|
}
|
|
|
|
|
// Keep remaining bytes (potential partial NAL or start code)
|
|
|
|
|
if (start > 0 && start < videoBuf.length) {
|
|
|
|
|
videoBuf = videoBuf.subarray(start);
|
|
|
|
|
} else if (videoBuf.length > 4) {
|
|
|
|
|
// No full NAL found, but avoid unbounded growth
|
|
|
|
|
// Keep a sliding window
|
|
|
|
|
videoBuf = videoBuf.subarray(videoBuf.length - 3);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
proc.stdout.on("end", () => {
|
|
|
|
|
if (videoBuf.length > 0) {
|
|
|
|
|
let end = videoBuf.length;
|
|
|
|
|
while (end > 0 && videoBuf[end - 1] === 0) end--;
|
|
|
|
|
if (end > 0) emitFrame(videoBuf.subarray(0, end), false);
|
|
|
|
|
}
|
|
|
|
|
vPipe.end();
|
|
|
|
|
aPipe.end();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (proc.stderr) {
|
|
|
|
|
proc.stderr.on("data", () => {
|
|
|
|
|
/* errors swallowed */
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
proc.on("close", () => {
|
|
|
|
|
vPipe.end();
|
|
|
|
|
aPipe.end();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const close = () => {
|
|
|
|
|
proc.kill("SIGTERM");
|
|
|
|
|
vPipe.end();
|
|
|
|
|
aPipe.end();
|
2026-08-11 17:38:06 +07:00
|
|
|
cleanupSpool();
|
2026-08-11 16:16:52 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return { video: vInfo, audio: aInfo, close };
|
|
|
|
|
}
|