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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
罗磊的独立博客
量子位
Jina AI
Jina AI
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
S
SegmentFault 最新的问题
小众软件
小众软件
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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: route openai video edits to edits endpoint · opencla...
shakkernerd · 2026-05-23 · via Recent Commits to openclaw:main

@@ -39,6 +39,13 @@ type OpenAIVideoRequestPolicy = {

39394040

type OpenAIVideoStatus = "queued" | "in_progress" | "completed" | "failed";

414142+

type OpenAIReferenceAsset = {

43+

kind: "image" | "video";

44+

file: File;

45+

buffer: Buffer;

46+

mimeType: string;

47+

};

48+4249

type OpenAIVideoResponse = {

4350

id?: string;

4451

model?: string;

@@ -99,7 +106,7 @@ function resolveSize(params: {

99106

return undefined;

100107

}

101108102-

function resolveReferenceAsset(req: VideoGenerationRequest) {

109+

function resolveReferenceAsset(req: VideoGenerationRequest): OpenAIReferenceAsset | null {

103110

const allAssets = [...(req.inputImages ?? []), ...(req.inputVideos ?? [])];

104111

if (allAssets.length === 0) {

105112

return null;

@@ -113,15 +120,20 @@ function resolveReferenceAsset(req: VideoGenerationRequest) {

113120

"OpenAI video generation currently requires local image/video uploads for reference assets.",

114121

);

115122

}

123+

const kind = (req.inputVideos?.length ?? 0) > 0 ? "video" : "image";

116124

const mimeType =

117-

normalizeOptionalString(asset.mimeType) ||

118-

((req.inputVideos?.length ?? 0) > 0 ? "video/mp4" : "image/png");

125+

normalizeOptionalString(asset.mimeType) || (kind === "video" ? "video/mp4" : "image/png");

119126

const extension =

120127

extensionForMime(mimeType)?.slice(1) ?? (mimeType.startsWith("video/") ? "mp4" : "png");

121128

const fileName =

122129

normalizeOptionalString(asset.fileName) ||

123-

`${(req.inputVideos?.length ?? 0) > 0 ? "reference-video" : "reference-image"}.${extension}`;

124-

return new File([toBlobBytes(asset.buffer)], fileName, { type: mimeType });

130+

`${kind === "video" ? "reference-video" : "reference-image"}.${extension}`;

131+

return {

132+

kind,

133+

file: new File([toBlobBytes(asset.buffer)], fileName, { type: mimeType }),

134+

buffer: asset.buffer,

135+

mimeType,

136+

};

125137

}

126138127139

async function pollOpenAIVideo(

@@ -285,10 +297,6 @@ export function buildOpenAIVideoGenerationProvider(): VideoGenerationProvider {

285297

enabled: true,

286298

maxVideos: 1,

287299

maxInputVideos: 1,

288-

maxDurationSeconds: 12,

289-

supportedDurationSeconds: OPENAI_VIDEO_SECONDS,

290-

supportsSize: true,

291-

sizes: OPENAI_VIDEO_SIZES,

292300

},

293301

},

294302

async generateVideo(req) {

@@ -328,27 +336,22 @@ export function buildOpenAIVideoGenerationProvider(): VideoGenerationProvider {

328336

aspectRatio: req.aspectRatio,

329337

resolution: req.resolution,

330338

});

331-

const inputImage = req.inputImages?.[0];

332339

const referenceAsset = resolveReferenceAsset(req);

333-

const requestUrl = `${baseUrl}/videos`;

334340

const requestResult = referenceAsset

335-

? inputImage?.buffer

341+

? referenceAsset.kind === "image"

336342

? await (() => {

337343

const jsonHeaders = new Headers(headers);

338344

jsonHeaders.set("Content-Type", "application/json");

339345

return postJsonRequest({

340-

url: requestUrl,

346+

url: `${baseUrl}/videos`,

341347

headers: jsonHeaders,

342348

body: {

343349

prompt: req.prompt,

344350

model,

345351

...(seconds ? { seconds } : {}),

346352

...(size ? { size } : {}),

347353

input_reference: {

348-

image_url: toOpenAIDataUrl(

349-

inputImage.buffer,

350-

normalizeOptionalString(inputImage.mimeType) ?? "image/png",

351-

),

354+

image_url: toOpenAIDataUrl(referenceAsset.buffer, referenceAsset.mimeType),

352355

},

353356

},

354357

timeoutMs: resolveProviderOperationTimeoutMs({

@@ -364,17 +367,11 @@ export function buildOpenAIVideoGenerationProvider(): VideoGenerationProvider {

364367

const form = new FormData();

365368

form.set("prompt", req.prompt);

366369

form.set("model", model);

367-

if (seconds) {

368-

form.set("seconds", seconds);

369-

}

370-

if (size) {

371-

form.set("size", size);

372-

}

373-

form.set("input_reference", referenceAsset);

370+

form.set("video", referenceAsset.file);

374371

const multipartHeaders = new Headers(headers);

375372

multipartHeaders.delete("Content-Type");

376373

return postMultipartRequest({

377-

url: requestUrl,

374+

url: `${baseUrl}/videos/edits`,

378375

headers: multipartHeaders,

379376

body: form,

380377

timeoutMs: resolveProviderOperationTimeoutMs({

@@ -390,7 +387,7 @@ export function buildOpenAIVideoGenerationProvider(): VideoGenerationProvider {

390387

const jsonHeaders = new Headers(headers);

391388

jsonHeaders.set("Content-Type", "application/json");

392389

return postJsonRequest({

393-

url: requestUrl,

390+

url: `${baseUrl}/videos`,

394391

headers: jsonHeaders,

395392

body: {

396393

prompt: req.prompt,