85453da49f
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
Docs / Validate docs (push) Waiting to run
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Sync skills to ClawHub / Publish changed skills (push) Waiting to run
regression / regression-shards (style-16-prod style-9-prod style-17-prod iframe-render-compat variables-prod mp4-h265-sdr, shard-4) (push) Has been cancelled
regression / regression-shards (style-4-prod style-11-prod style-2-prod animejs-adapter typegpu-adapter parallel-capture-regression, shard-5) (push) Has been cancelled
regression / regression-shards (style-7-prod style-8-prod style-10-prod css-spinner-render-compat webm-transparency mp4-h264-sdr webm-vp9, shard-3) (push) Has been cancelled
regression / regression-shards (sub-composition-video style-18-prod raf-ball-render-compat font-variant-numeric sub-comp-t0 sub-comp-id-selector, shard-7) (push) Has been cancelled
Windows render verification / Detect changes (push) Has been cancelled
Windows render verification / Preflight (lint + format) (push) Has been cancelled
Windows render verification / Render on windows-latest (push) Has been cancelled
Windows render verification / Tests on windows-latest (push) Has been cancelled
CI / Detect changes (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Fallow audit (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Producer: integration tests (push) Has been cancelled
CI / Producer: unit tests (push) Has been cancelled
CI / File size check (push) Has been cancelled
CI / Test: skills (push) Has been cancelled
CI / Skills: manifest in sync (push) Has been cancelled
CI / CLI: npx shim (macos-latest) (push) Has been cancelled
CI / CLI: npx shim (ubuntu-latest) (push) Has been cancelled
CI / CLI: npx shim (windows-latest) (push) Has been cancelled
CI / SDK: unit + contract + smoke (push) Has been cancelled
CI / Test: runtime contract (push) Has been cancelled
CI / Studio: load smoke (push) Has been cancelled
CI / Smoke: global install (push) Has been cancelled
CI / CLI smoke (required) (push) Has been cancelled
CI / Semantic PR title (push) Has been cancelled
Player perf / Detect changes (push) Has been cancelled
Player perf / Preflight (lint + format) (push) Has been cancelled
Player perf / player-perf (push) Has been cancelled
Player perf / Perf: drift (push) Has been cancelled
Player perf / Perf: fps (push) Has been cancelled
Player perf / Perf: parity (push) Has been cancelled
Player perf / Perf: scrub (push) Has been cancelled
Player perf / Perf: load (push) Has been cancelled
preview-regression / Detect changes (push) Has been cancelled
preview-regression / Preflight (lint + format) (push) Has been cancelled
preview-regression / Preview parity (push) Has been cancelled
preview-regression / preview-regression (push) Has been cancelled
regression / regression (push) Has been cancelled
regression / Detect changes (push) Has been cancelled
regression / Preflight (lint + format) (push) Has been cancelled
regression / regression-shards (hdr-regression style-5-prod style-3-prod mov-prores, shard-1) (push) Has been cancelled
regression / regression-shards (overlay-montage-prod style-12-prod chat missing-host-comp-id png-sequence portrait-edge-bleed, shard-6) (push) Has been cancelled
regression / regression-shards (style-13-prod style-6-prod vignelli-stacking gsap-letters-render-compat audio-mux-parity, shard-8) (push) Has been cancelled
regression / regression-shards (style-15-prod hdr-hlg-regression style-1-prod many-cuts vfr-screen-recording render-symlinked-assets, shard-2) (push) Has been cancelled
203 lines
7.4 KiB
TypeScript
203 lines
7.4 KiB
TypeScript
// Shared Puppeteer browser management and thumbnail generation for Studio dev server.
|
|
|
|
import { existsSync } from "node:fs";
|
|
import { createHash } from "node:crypto";
|
|
import {
|
|
createStudioDevRenderBodyScripts,
|
|
readStudioDevManualEditManifestContent,
|
|
readStudioDevMotionManifestContent,
|
|
} from "./vite.studioMotion";
|
|
import { seekThumbnailPreview } from "./vite.thumbnail";
|
|
|
|
// ── Shared Puppeteer browser ─────────────────────────────────────────────────
|
|
|
|
let _browser: import("puppeteer-core").Browser | null = null;
|
|
let _browserLaunchPromise: Promise<import("puppeteer-core").Browser> | null = null;
|
|
|
|
const CHROME_PATHS = [
|
|
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
|
|
"/usr/bin/google-chrome",
|
|
"/usr/bin/chromium-browser",
|
|
];
|
|
|
|
async function getSharedBrowser(): Promise<import("puppeteer-core").Browser | null> {
|
|
if (_browser?.connected) return _browser;
|
|
if (_browserLaunchPromise) return _browserLaunchPromise;
|
|
_browserLaunchPromise = (async () => {
|
|
const puppeteer = await import("puppeteer-core");
|
|
const executablePath = CHROME_PATHS.find((p) => existsSync(p));
|
|
if (!executablePath) return null;
|
|
_browser = await puppeteer.default.launch({
|
|
headless: true,
|
|
executablePath,
|
|
args: [
|
|
"--no-sandbox",
|
|
"--disable-dev-shm-usage",
|
|
"--enable-webgl",
|
|
"--ignore-gpu-blocklist",
|
|
"--use-gl=angle",
|
|
"--use-angle=swiftshader",
|
|
"--enable-unsafe-swiftshader",
|
|
],
|
|
});
|
|
_browserLaunchPromise = null;
|
|
return _browser;
|
|
})();
|
|
return _browserLaunchPromise;
|
|
}
|
|
|
|
/** The system Chrome executable path (undefined if not found). */
|
|
export function findSystemChrome(): string | undefined {
|
|
return CHROME_PATHS.find((p) => existsSync(p));
|
|
}
|
|
|
|
// In-flight thumbnail dedup
|
|
const _thumbnailInflight = new Map<string, Promise<Buffer>>();
|
|
const THUMBNAIL_CACHE_VERSION = "v4";
|
|
|
|
interface ScreenshotClip {
|
|
x: number;
|
|
y: number;
|
|
width: number;
|
|
height: number;
|
|
}
|
|
|
|
async function applyStudioRenderBodyScriptsToThumbnailPage(
|
|
page: import("puppeteer-core").Page,
|
|
projectDir: string,
|
|
activeCompositionPath: string,
|
|
): Promise<void> {
|
|
const scripts = createStudioDevRenderBodyScripts(projectDir, {
|
|
activeCompositionPath,
|
|
});
|
|
for (const script of scripts) {
|
|
await page.addScriptTag({ content: script });
|
|
}
|
|
}
|
|
|
|
async function reapplyStudioRenderBodyScriptsToThumbnailPage(
|
|
page: import("puppeteer-core").Page,
|
|
): Promise<void> {
|
|
await page.evaluate(() => {
|
|
const runtimeWindow = window as Window & {
|
|
__hfStudioManualEditsApply?: () => number;
|
|
__hfStudioMotionApply?: () => number;
|
|
};
|
|
if (typeof runtimeWindow.__hfStudioManualEditsApply === "function") {
|
|
runtimeWindow.__hfStudioManualEditsApply();
|
|
}
|
|
if (typeof runtimeWindow.__hfStudioMotionApply === "function") {
|
|
runtimeWindow.__hfStudioMotionApply();
|
|
}
|
|
});
|
|
}
|
|
|
|
export interface GenerateThumbnailOptions {
|
|
project: { dir: string };
|
|
compPath: string;
|
|
seekTime: number;
|
|
previewUrl: string;
|
|
width: number;
|
|
height: number;
|
|
format: "jpeg" | "png";
|
|
selector?: string;
|
|
selectorIndex?: number;
|
|
}
|
|
|
|
export async function generateThumbnail(opts: GenerateThumbnailOptions): Promise<Buffer | null> {
|
|
const selectorKey = opts.selector
|
|
? `_${opts.selector.replace(/[^a-zA-Z0-9_-]+/g, "_").slice(0, 80)}_${opts.selectorIndex ?? 0}`
|
|
: "";
|
|
const manualManifestContent = readStudioDevManualEditManifestContent(opts.project.dir);
|
|
const manualManifestKey = manualManifestContent.trim()
|
|
? `_${createHash("sha1").update(manualManifestContent).digest("hex").slice(0, 16)}`
|
|
: "";
|
|
const motionManifestContent = readStudioDevMotionManifestContent(opts.project.dir);
|
|
const motionManifestKey = motionManifestContent.trim()
|
|
? `_${createHash("sha1").update(motionManifestContent).digest("hex").slice(0, 16)}`
|
|
: "";
|
|
const cacheKey = `${THUMBNAIL_CACHE_VERSION}${manualManifestKey}${motionManifestKey}_${opts.compPath.replace(/\//g, "_")}_${opts.seekTime.toFixed(2)}${selectorKey}.${opts.format === "png" ? "png" : "jpg"}`;
|
|
|
|
let bufferPromise = _thumbnailInflight.get(cacheKey);
|
|
if (!bufferPromise) {
|
|
bufferPromise = (async () => {
|
|
const browser = await getSharedBrowser();
|
|
if (!browser) return null;
|
|
let page: Awaited<ReturnType<typeof browser.newPage>> | null = null;
|
|
try {
|
|
page = await browser.newPage();
|
|
await page.setViewport({
|
|
width: opts.width,
|
|
height: opts.height,
|
|
deviceScaleFactor: opts.format === "png" ? 1 : 0.5,
|
|
});
|
|
await page.goto(opts.previewUrl, { waitUntil: "domcontentloaded", timeout: 10000 });
|
|
await page.evaluate(() => {
|
|
document.documentElement.style.background = "#1c2028";
|
|
document.body.style.background = "#1c2028";
|
|
document.body.style.margin = "0";
|
|
document.body.style.overflow = "hidden";
|
|
});
|
|
await page
|
|
.waitForFunction(`!!(window.__timelines && Object.keys(window.__timelines).length > 0)`, {
|
|
timeout: 5000,
|
|
})
|
|
.catch(() => {});
|
|
await seekThumbnailPreview(page, opts.seekTime);
|
|
await applyStudioRenderBodyScriptsToThumbnailPage(page, opts.project.dir, opts.compPath);
|
|
await page.evaluate("document.fonts?.ready");
|
|
await new Promise((r) => setTimeout(r, 200));
|
|
await reapplyStudioRenderBodyScriptsToThumbnailPage(page);
|
|
let clip: ScreenshotClip | undefined;
|
|
if (opts.selector) {
|
|
clip = await page.evaluate(
|
|
(selector: string, selectorIndex: number | undefined) => {
|
|
const matches = Array.from(document.querySelectorAll(selector)).filter(
|
|
(el): el is HTMLElement => el instanceof HTMLElement,
|
|
);
|
|
const safeIndex = Math.max(
|
|
0,
|
|
Math.min(matches.length - 1, Math.floor(selectorIndex ?? 0)),
|
|
);
|
|
const el = matches[safeIndex] ?? null;
|
|
if (!(el instanceof HTMLElement)) return undefined;
|
|
const rect = el.getBoundingClientRect();
|
|
if (rect.width < 4 || rect.height < 4) return undefined;
|
|
const pad = 8;
|
|
const x = Math.max(0, rect.left - pad);
|
|
const y = Math.max(0, rect.top - pad);
|
|
const maxWidth = window.innerWidth - x;
|
|
const maxHeight = window.innerHeight - y;
|
|
return {
|
|
x,
|
|
y,
|
|
width: Math.max(1, Math.min(rect.width + pad * 2, maxWidth)),
|
|
height: Math.max(1, Math.min(rect.height + pad * 2, maxHeight)),
|
|
};
|
|
},
|
|
opts.selector,
|
|
opts.selectorIndex,
|
|
);
|
|
}
|
|
const buf = await page.screenshot(
|
|
opts.format === "png"
|
|
? { type: "png", ...(clip ? { clip } : {}) }
|
|
: { type: "jpeg", quality: 75, ...(clip ? { clip } : {}) },
|
|
);
|
|
await page.close();
|
|
return buf as Buffer;
|
|
} catch (err) {
|
|
if (page) await page.close().catch(() => {});
|
|
console.warn(
|
|
"[Studio] Thumbnail generation failed:",
|
|
err instanceof Error ? err.message : err,
|
|
);
|
|
return null;
|
|
}
|
|
})();
|
|
_thumbnailInflight.set(cacheKey, bufferPromise);
|
|
bufferPromise.finally(() => _thumbnailInflight.delete(cacheKey));
|
|
}
|
|
return bufferPromise;
|
|
}
|