Loading...
Loading...
Compare original and translation side by side
WARNING: Do NOT skip this step. Skipping will result in missing rich expression opportunities.
/remotion-best-practices警告:请勿跳过此步骤。跳过将导致无法使用丰富的动态效果。
/remotion-best-practicesAskUserQuestionAskUserQuestionNote: Screenshots for scenes using rich expressions (Step 1) are not needed.
public/| File | Purpose | Required |
|---|---|---|
| Main product screenshot (Mockups scene) | Yes |
| Feature 1 screenshot | Yes |
| Feature 2 screenshot | Optional |
| Feature 3 screenshot | Optional |
注意:使用步骤1中动态效果的场景无需提供截图。
public/| 文件 | 用途 | 是否必需 |
|---|---|---|
| 产品主截图(样机场景) | 是 |
| 功能1截图 | 是 |
| 功能2截图 | 可选 |
| 功能3截图 | 可选 |
ls public/*.pngls public/*.pngsrc/remotion/[ProductName]/[ProductName]Intro.tsxsrc/remotion/[ProductName]/[ProductName]Intro.tsxRoot.tsxdurationInFramesdurationInFrames = Sum of scene durations - (transition duration × number of transitions)Root.tsxdurationInFramesdurationInFrames = 各场景时长总和 -(转场时长 × 转场次数)pnpm run devbun run remotionpnpm run devbun run remotion┌─────────────────────────────────────────────────────────────┐
│ 1. REVEAL 2. CONCEPT 3. MOCKUPS │
│ (2-3s) (3-4s) (3-4s) │
│ Logo/Name Value prop Product preview │
├─────────────────────────────────────────────────────────────┤
│ 4. FEATURE 1 5. FEATURE 2 6. FEATURE 3 │
│ (3-4s each) (optional) (optional) │
│ Screenshot + Screenshot + Screenshot + │
│ Title/Desc Title/Desc Title/Desc │
├─────────────────────────────────────────────────────────────┤
│ 7. OUTRO 8. CTA │
│ (2-3s) (3-4s) │
│ Summary URL + Action │
└─────────────────────────────────────────────────────────────┘┌─────────────────────────────────────────────────────────────┐
│ 1. 开场展示 2. 核心概念 3. 产品样机 │
│ (2-3秒) (3-4秒) (3-4秒) │
│ Logo/产品名称 价值主张 产品预览 │
├─────────────────────────────────────────────────────────────┤
│ 4. 功能1展示 5. 功能2展示 6. 功能3展示 │
│ (每个3-4秒) (可选) (可选) │
│ 截图 + 标题/描述 截图 + 标题/描述 截图 + 标题/描述 │
├─────────────────────────────────────────────────────────────┤
│ 7. 结尾总结 8. 行动号召 │
│ (2-3秒) (3-4秒) │
│ 产品名称 + 总结 网址 + 行动指令 │
└─────────────────────────────────────────────────────────────┘| Scene | Duration | Content | Asset |
|---|---|---|---|
| 1. Reveal | 2-3s | Product name, minimal animation | - |
| 2. Concept | 3-4s | Tagline, value proposition | - |
| 3. Mockups | 3-4s | Device mockup with main screenshot | |
| 4. Feature 1 | 3-4s | Feature title + screenshot | |
| 5. Feature 2 | 3-4s | Feature title + screenshot | |
| 6. Feature 3 | 3-4s | Feature title + screenshot | |
| 7. Outro | 2-3s | Product name + summary | - |
| 8. CTA | 3-4s | URL, call to action | - |
| 场景 | 时长 | 内容 | 资源 |
|---|---|---|---|
| 1. 开场展示 | 2-3秒 | 产品名称、简约动画 | - |
| 2. 核心概念 | 3-4秒 | 标语、价值主张 | - |
| 3. 产品样机 | 3-4秒 | 设备样机+主截图 | |
| 4. 功能1展示 | 3-4秒 | 功能标题+截图 | |
| 5. 功能2展示 | 3-4秒 | 功能标题+截图 | |
| 6. 功能3展示 | 3-4秒 | 功能标题+截图 | |
| 7. 结尾总结 | 2-3秒 | 产品名称+总结 | - |
| 8. 行动号召 | 3-4秒 | 网址、行动指令 | - |
| Element | Do | Don't |
|---|---|---|
| Background | Solid dark | Gradients |
| Typography | Single font (Inter/Noto Sans JP) | Multiple fonts |
| Animation | Subtle fade/slide | Bouncy/flashy |
| Mockups | Real screenshots or rich expressions | Placeholder graphics |
| Text | Minimal, clear | Long paragraphs |
| 元素 | 建议 | 禁忌 |
|---|---|---|
| 背景 | 纯深色 | 渐变背景 |
| 字体 | 单一字体(Inter/Noto Sans JP) | 多种字体混用 |
| 动画 | 淡入/滑入等柔和动画 | 弹跳/闪烁类夸张动画 |
| 样机 | 真实截图或动态效果 | 占位图 |
| 文字 | 简洁明了 | 大段文字 |
// Scene order
<TransitionSeries>
<RevealScene /> {/* 1. Logo/Name */}
<ConceptScene /> {/* 2. Value proposition */}
<MockupsScene /> {/* 3. Main product mockup */}
<FeatureScene n={1} /> {/* 4. Feature 1 */}
<FeatureScene n={2} /> {/* 5. Feature 2 (if provided) */}
<FeatureScene n={3} /> {/* 6. Feature 3 (if provided) */}
<OutroScene /> {/* 7. Summary */}
<CTAScene /> {/* 8. Call to action */}
</TransitionSeries>// 场景顺序
<TransitionSeries>
<RevealScene /> {/* 1. Logo/产品名称 */}
<ConceptScene /> {/* 2. 价值主张 */}
<MockupsScene /> {/* 3. 主产品样机 */}
<FeatureScene n={1} /> {/* 4. 功能1 */}
<FeatureScene n={2} /> {/* 5. 功能2(若提供) */}
<FeatureScene n={3} /> {/* 6. 功能3(若提供) */}
<OutroScene /> {/* 7. 总结 */}
<CTAScene /> {/* 8. 行动号召 */}
</TransitionSeries>/remotion-best-practices/remotion-best-practices