reelforge 1.19.0 → 1.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/create.js +3 -0
- package/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -228,6 +228,8 @@ function optsToBody(opts) {
|
|
|
228
228
|
cover.subtitle = opts.coverSubtitle;
|
|
229
229
|
if (opts.coverBadge !== undefined)
|
|
230
230
|
cover.badge = opts.coverBadge;
|
|
231
|
+
if (opts.coverBase !== undefined)
|
|
232
|
+
cover.base = opts.coverBase;
|
|
231
233
|
if (Object.keys(cover).length > 0)
|
|
232
234
|
out.cover = cover;
|
|
233
235
|
if (opts.segmentMinChars !== undefined)
|
|
@@ -307,6 +309,7 @@ export function registerCreate(program) {
|
|
|
307
309
|
.option("--cover-title <text>", "封面大标题(短句更佳,12 字内最稳)。不指定则用 --title 或 AI 自动生成的视频标题")
|
|
308
310
|
.option("--cover-subtitle <text>", "副标题/一句话标语。不是所有模板都显示 — 看 `rf cover templates --id <id>` 的 supports.subtitle 字段确认 (= true 才会渲染,否则静默忽略)")
|
|
309
311
|
.option("--cover-badge <text>", "角标/期号/紧急标,如 'EP.012' / '突发' / 'FLASH'。同样看 `rf cover templates --id <id>` 的 supports.badge 字段确认")
|
|
312
|
+
.option("--cover-base <path|url>", "封面底图(模板在其上绘制 title/纸带)。覆盖默认行为——默认按分镜1 自动取底图(AI图→该图 / 用户素材→图或视频首帧 / 组件→组件定格帧)。注意:这是底图,不是成品封面;想直接用一张成品封面请改用 `rf cover prepend`")
|
|
310
313
|
.option("--brand-handle <text>", "creator handle shown in corner, e.g. '@大灰狼'")
|
|
311
314
|
.option("--brand-slogan <text>", "creator slogan/tagline shown under handle")
|
|
312
315
|
.option("--brand-logo <urlOrPath>", "logo/avatar URL or local file path (PNG/JPG/WebP)")
|