用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dlazy-ai/ecommerce-skills --skill main-image-video命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
多商品批量生图流水线。商品清单 CSV → 整批统一视觉的商拍图,带并发、重试、断点续跑、成本熔断与挑图联系表。当用户说「批量生图」「一批商品」「跑整个 SKU 表」「几百个商品出图」时使用。
店铺品牌视觉锁定。一份 brand.yaml 定义模特、色温、构图、留白与文案语气,所有生图技能读它,保证跨 SKU 视觉统一。当用户说「统一风格」「同一个模特」「店铺调性」「品牌规范」「几百个 SKU 看起来像一家店」时使用。
服装工艺细节放大图。服装图 → 面料纹理、走线、织法的微距特写。当用户说「细节图」「特写」「面料放大」「工艺展示」「近景细节」时使用。
正在显示 SKILL.md
| name | main-image-video |
| description | 静态主图转主图视频。一张商品图 → 3–5 秒可上架的主图短视频。当用户说「主图视频」「图转视频」「让图动起来」「加个视频」时使用。 |
主图坑位旁边那个视频位,大多数店铺是空的。它不需要重新拍, 一张已有的主图就能生成。
| 能做 | 说明 |
|---|---|
| 图生视频 | 一张商品图 → 3–5 秒运动镜头 |
| 运镜控制 | 推、拉、环绕、俯仰、微距扫过 |
| 材质动态 | 面料飘动、金属反光扫过、液体晃动 |
| 批量 | 配合 batch-image 整批出 |
| 不能做 | 说明 |
|---|---|
| 长视频 | 超过 8 秒请用 product-video-ad 分镜串联 |
| 口播 | 用 ugc-testimonial |
| 改商品 | 视频模型会放大原图的瑕疵,先用 item-repair 修好 |
视频模型 ID 因后端而异,必须显式指定,脚本不会替你猜:
export DLAZY_VIDEO_MODEL=<你账号里可用的视频模型 ID>
拼接与字幕需要 ffmpeg(本技能的单镜模式用不到,分镜才需要)。
完整说明见 references/video-backends.md。
node scripts/video.mjs --mode clip --task main-image-video \
--image docs/flat-lay/example-output.jpg \
--prompt 'Slow push-in on the model. The cable-knit sweater fibers catch the light softly. Subtle natural body sway. Camera stays level, no cuts.' \
--seconds 3 \
--save out/sku001-main.mp4
# 先看会发什么,不计费
node scripts/video.mjs --mode clip --task main-image-video --image x.jpg \
--prompt '...' --dry-run
参数约定
| 参数 | 取值 | 理由 |
|---|---|---|
--image | 一张主图 | 竖版 3:4 或方图,分辨率越高越好 |
--seconds | 3 ~ 5 | 主图位视频普遍偏短,超过 5 秒完播率掉得快 |
--brand | brand.yaml | 让运镜与色调跟全店一致 |
结构:运镜 + 主体动态 + 环境动态 + 约束
<Camera move>. <What the product does>. <What the environment does>.
Keep the product identical to the reference image — same shape, color, texture, logo placement.
No cuts, no text overlay, no watermark. Photorealistic.
运镜词表
| 目标 | 英文 |
|---|---|
| 缓推 | slow push-in |
| 缓拉 | slow pull-back reveal |
| 环绕 | smooth 30-degree orbit around the product |
| 俯冲 | gentle top-down tilt |
| 微距扫过 | macro pan across the surface texture |
材质动态词表
| 品类 | 英文 |
|---|---|
| 针织 / 毛呢 | fibers catch the light, fabric breathes subtly |
| 真丝 / 雪纺 | fabric ripples in a gentle draft |
| 金属 / 珠宝 | specular highlight sweeps across the metal |
| 玻璃 / 液体 | liquid settles, light refracts through the glass |
| 皮革 | soft sheen shifts across the grain |
DLAZY_VIDEO_MODEL 没设就先问用户用哪个模型。| 现象 | 原因 | 怎么办 |
|---|---|---|
| 商品在动的过程中变形 | 运动幅度给太大 | 换成 slow / subtle 系的词,缩短时长 |
| 画面糊 | 原图分辨率不够 | 先用 material-enhancement 提清晰度 |
| 模特脸在动的时候崩 | 人脸是视频模型的重灾区 | 改用不露脸的景别,或改成商品特写 |
| 时长对不上 | 多数模型的时长是档位不是连续值 | 按模型支持的档位取,别硬凑 |
| 报错说没指定模型 | DLAZY_VIDEO_MODEL 没设 | 见「先配后端」 |