惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(cli): forward video generation options · openclaw/ope...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -61,6 +61,7 @@ import {

6161

textToSpeech,

6262

} from "../tts/tts.js";

6363

import { generateVideo, listRuntimeVideoGenerationProviders } from "../video-generation/runtime.js";

64+

import type { VideoGenerationResolution } from "../video-generation/types.js";

6465

import {

6566

isWebFetchProviderConfigured,

6667

resolveWebFetchDefinition,

@@ -267,7 +268,19 @@ const CAPABILITY_METADATA: CapabilityMetadata[] = [

267268

id: "video.generate",

268269

description: "Generate video files with configured video providers.",

269270

transports: ["local"],

270-

flags: ["--prompt", "--model", "--output", "--json"],

271+

flags: [

272+

"--prompt",

273+

"--model",

274+

"--size",

275+

"--aspect-ratio",

276+

"--resolution",

277+

"--duration",

278+

"--audio",

279+

"--watermark",

280+

"--timeout-ms",

281+

"--output",

282+

"--json",

283+

],

271284

resultShape: "saved video files plus attempts",

272285

},

273286

{

@@ -822,14 +835,62 @@ async function runAudioTranscribe(params: {

822835

} satisfies CapabilityEnvelope;

823836

}

824837825-

async function runVideoGenerate(params: { prompt: string; model?: string; output?: string }) {

838+

function parseOptionalFiniteNumber(

839+

raw: string | number | undefined,

840+

label: string,

841+

): number | undefined {

842+

if (raw === undefined || (typeof raw === "string" && raw.trim() === "")) {

843+

return undefined;

844+

}

845+

const value = Number(raw);

846+

if (!Number.isFinite(value)) {

847+

throw new Error(`${label} must be a finite number`);

848+

}

849+

return value;

850+

}

851+852+

function normalizeVideoResolution(raw: string | undefined): VideoGenerationResolution | undefined {

853+

const normalized = raw?.trim().toUpperCase();

854+

if (!normalized) {

855+

return undefined;

856+

}

857+

if (

858+

normalized === "480P" ||

859+

normalized === "720P" ||

860+

normalized === "768P" ||

861+

normalized === "1080P"

862+

) {

863+

return normalized;

864+

}

865+

throw new Error("video resolution must be one of 480P, 720P, 768P, or 1080P");

866+

}

867+868+

async function runVideoGenerate(params: {

869+

prompt: string;

870+

model?: string;

871+

output?: string;

872+

size?: string;

873+

aspectRatio?: string;

874+

resolution?: VideoGenerationResolution;

875+

durationSeconds?: number;

876+

audio?: boolean;

877+

watermark?: boolean;

878+

timeoutMs?: number;

879+

}) {

826880

const cfg = loadConfig();

827881

const agentDir = resolveAgentDir(cfg, resolveDefaultAgentId(cfg));

828882

const result = await generateVideo({

829883

cfg,

830884

agentDir,

831885

prompt: params.prompt,

832886

modelOverride: params.model,

887+

size: params.size,

888+

aspectRatio: params.aspectRatio,

889+

resolution: params.resolution,

890+

durationSeconds: params.durationSeconds,

891+

audio: params.audio,

892+

watermark: params.watermark,

893+

timeoutMs: params.timeoutMs,

833894

});

834895

const outputs = await Promise.all(

835896

result.videos.map(async (video, index) => {

@@ -1680,6 +1741,13 @@ export function registerCapabilityCli(program: Command) {

16801741

.description("Generate video")

16811742

.requiredOption("--prompt <text>", "Prompt text")

16821743

.option("--model <provider/model>", "Model override")

1744+

.option("--size <size>", "Size hint like 1280x720")

1745+

.option("--aspect-ratio <ratio>", "Aspect ratio hint like 16:9")

1746+

.option("--resolution <value>", "Resolution hint: 480P, 720P, 768P, or 1080P")

1747+

.option("--duration <seconds>", "Target duration in seconds")

1748+

.option("--audio", "Enable generated audio when supported")

1749+

.option("--watermark", "Request provider watermark when supported")

1750+

.option("--timeout-ms <ms>", "Provider request timeout in milliseconds")

16831751

.option("--output <path>", "Output path")

16841752

.option("--json", "Output JSON", false)

16851753

.action(async (opts) => {

@@ -1688,6 +1756,13 @@ export function registerCapabilityCli(program: Command) {

16881756

prompt: String(opts.prompt),

16891757

model: opts.model as string | undefined,

16901758

output: opts.output as string | undefined,

1759+

size: opts.size as string | undefined,

1760+

aspectRatio: opts.aspectRatio as string | undefined,

1761+

resolution: normalizeVideoResolution(opts.resolution as string | undefined),

1762+

durationSeconds: parseOptionalFiniteNumber(opts.duration, "--duration"),

1763+

audio: opts.audio === true ? true : undefined,

1764+

watermark: opts.watermark === true ? true : undefined,

1765+

timeoutMs: parseOptionalFiniteNumber(opts.timeoutMs, "--timeout-ms"),

16911766

});

16921767

emitJsonOrText(defaultRuntime, Boolean(opts.json), result, formatEnvelopeForText);

16931768

});