CoolFace
Apppublic

shreyask/Gemma-4-WebGPU

sourceHugging Faceupdated 6mo agoView on Hugging Face
3likes
argo.config.mjs34 linesDownload Raw Back to root
1import { defineConfig } from "@argo-video/cli";2 3export default defineConfig({4  baseURL: "http://localhost:5173",5  demosDir: "demos",6  outputDir: "videos",7  tts: { defaultVoice: "af_heart", defaultSpeed: 0.92 },8  video: {9    width: 1920,10    height: 1080,11    fps: 30,12    browser: "chromium",13    deviceScaleFactor: 1,14    launchOptions: {15      channel: "chrome",16      args: [17        "--enable-unsafe-webgpu",18        "--enable-features=Vulkan,WebGPU",19        "--use-angle=metal",20      ],21    },22  },23  export: {24    preset: "slow",25    crf: 18,26    // transition: { type: "fade-through-black", durationMs: 1500 },27    audio: { loudnorm: true },28    sharpen: true,29  },30  overlays: {31    autoBackground: true,32  },33});34