将视频制作工作流拆分为独立子步骤:分镜 → 图片提示词 → 生图 → 视频提示词 → 生视频 → 成片,每步由子Agent独立执行。引入prompts/目录统一管理提示词模板(分镜.md、图片提示词.md、视频提示词.md),通过account.json的storyboardPrompt/imageStylePrompt/videoStylePrompt字段引用。 变更内容: - 新增confirmed机制和pipeline.js confirm命令,生图后必须人工确认才能继续 - manifest schema改用shotDesc/narration/duration/directorRef替代旧字段 - 文件命名规则从keyword改为slug(从shotDesc/narration派生) - 删除旧的storyboard-rules.md和prompt-rules.md - pipeline.js脚本拆分为lib/目录下的独立模块(cmd-init/cmd-confirm/cmd-validate/phase-*) - 新增cmd-create-account支持一键创建带prompts目录的账号 - capcut_assemble支持narration字段替代text作为字幕源 - 新增.gitclaude/settings.json权限配置
47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
/**
|
||
* Phase: upload — OSS 上传
|
||
*
|
||
* 将生成的图片(含首尾帧)上传到 OSS,回写 url
|
||
*/
|
||
|
||
const path = require('path')
|
||
const { saveManifest, log, getManifestDir } = require('./pipeline-utils')
|
||
|
||
async function phaseUpload(manifest, manifestPath) {
|
||
const dir = getManifestDir(manifestPath)
|
||
const { uploadFile } = require('../oss-upload')
|
||
|
||
const items = manifest.items.filter(it =>
|
||
it.status === 'done' && it.file && !it.url
|
||
)
|
||
if (items.length === 0) { log('upload', '无待上传 item,跳过'); return }
|
||
|
||
log('upload', `共 ${items.length} 个文件`)
|
||
|
||
for (let i = 0; i < items.length; i++) {
|
||
const item = items[i]
|
||
const filePath = path.resolve(dir, item.file)
|
||
try {
|
||
const { url } = await uploadFile(filePath)
|
||
item.url = url
|
||
log('upload', `[${i + 1}/${items.length}] ${item.file} → ${url.substring(0, 60)}...`)
|
||
} catch (err) {
|
||
item.error = `上传失败: ${err.message}`
|
||
log('upload', `[${i + 1}/${items.length}] 失败: ${err.message}`)
|
||
}
|
||
if (item.url && item.lastFrame && !item.lastFrameUrl) {
|
||
const lastPath = path.resolve(dir, item.lastFrame)
|
||
try {
|
||
const { url } = await uploadFile(lastPath)
|
||
item.lastFrameUrl = url
|
||
log('upload', `[${i + 1}/${items.length}] lastFrame → OK`)
|
||
} catch (err) {
|
||
log('upload', `[${i + 1}/${items.length}] lastFrame 上传失败: ${err.message}`)
|
||
}
|
||
}
|
||
saveManifest(manifestPath, manifest)
|
||
}
|
||
}
|
||
|
||
module.exports = { phaseUpload }
|