Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

remotion-render-configRemotion render 配置

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

2,056

周安装

84

GitHub Stars

18

下载量

665
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:remotion-render-config(Remotion render 配置)
来源仓库:https://github.com/ncklrs/startup-os-skills
仓库路径:skills/remotion-render-config
安装命令:
npx skills add https://github.com/ncklrs/startup-os-skills --skill remotion-render-config
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ncklrs/startup-os-skills --skill remotion-render-config

简介

用于管理和优化 Remotion 项目的渲染配置文件,提升构建稳定性。

  • 适合在视频生成、动画合成或持续集成流程中统一渲染参数。
  • 通过 GitHub 安装后,可在 Codex、Claude、Cursor 等宿主中应用配置模板。
  • 使用前应核对项目结构与依赖版本,避免配置冲突导致渲染失败。
  • 建议保留原始配置备份,以便回滚异常变更。

SKILL.md

Remotion Render Config

Generates render configuration documents that define video output settings, codec parameters, format options, and quality settings for Remotion video renders. This skill focuses exclusively on render/export configuration.

What This Skill Does

Generates render configurations for:

  1. Output format — MP4, WebM, ProRes, etc.
  2. Codec settings — H.264, H.265, VP9 parameters
  3. Quality settings — CRF, bitrate, compression level
  4. Resolution — Output dimensions and scaling
  5. Platform optimization — YouTube, Twitter, Instagram presets

Scope Boundaries

IN SCOPE:

  • Render command configuration
  • Codec and format selection
  • Quality and compression settings
  • Platform-specific optimizations
  • Output file parameters

OUT OF SCOPE:

  • Composition implementation (use /remotion-composition)
  • Scene logic (use /remotion-component-gen)
  • Animation parameters (use /remotion-animation)
  • Asset management (use /remotion-asset-coordinator)

Input/Output Formats

Input Format: Target Platform/Quality Requirements

Accepts render target specifications:

Natural Language:

Render for YouTube at high quality with H.264 codec

Structured Format:

## Render Requirements

**Target Platform:** YouTube
**Quality Level:** High
**Format:** MP4 (H.264)
**Resolution:** 1920x1080
**Frame Rate:** 30 fps
**Additional:** Upload-ready, optimized file size

Output Format: RENDER_CONFIG.md

Generates complete render configuration document:

# Render Configuration: ProductDemo

## Status
✅ Render settings defined
⏳ Ready for video render

## Render Command

npx remotion render \ src/index.tsx \ ProductDemo \ output.mp4 \ --codec=h264 \ --crf=18 \ --pixel-format=yuv420p \ --audio-codec=aac \ --audio-bitrate=320k


## Configuration Details

### Output Format

- **Container:** MP4
- **Video Codec:** H.264 (x264)
- **Audio Codec:** AAC
- **Pixel Format:** yuv420p (for maximum compatibility)

### Quality Settings

- **CRF:** 18 (high quality, ~15-20 MB/min)
- **Audio Bitrate:** 320 kbps (high quality)
- **Preset:** medium (balanced speed/quality)

### Resolution

- **Output:** 1920x1080 (16:9)
- **Frame Rate:** 30 fps
- **Duration:** 30 seconds (900 frames)

## Platform: YouTube

Optimized for YouTube upload:

- ✅ H.264 codec (widely supported)
- ✅ yuv420p pixel format (required)
- ✅ AAC audio (recommended)
- ✅ CRF 18 (high quality, good file size)
- ✅ Metadata compatible

**Estimated File Size:** ~45-60 MB

## Alternative Render Options

### Web Delivery (Smaller File)

npx remotion render \ src/index.tsx \ ProductDemo \ output.mp4 \ --codec=h264 \ --crf=23 \ --audio-bitrate=192k


File size: ~25-35 MB

### Maximum Quality (Archive)

npx remotion render \ src/index.tsx \ ProductDemo \ output.mp4 \ --codec=h264 \ --crf=15 \ --audio-bitrate=320k \ --preset=slower


File size: ~80-100 MB

### Fast Preview Render

npx remotion render \ src/index.tsx \ ProductDemo \ preview.mp4 \ --crf=28 \ --preset=ultrafast


File size: ~15-20 MB

## Render Workflow

1. **Test render** (first 3 seconds): `npx remotion render src/index.tsx ProductDemo test.mp4 --frames=0-90`
2. **Full render** with progress: `npx remotion render src/index.tsx ProductDemo output.mp4 --codec=h264 --crf=18`
3. **Verify output**:
  - Check file size
  - Play in video player
  - Verify audio sync
  - Check quality
4. **Upload to platform** (YouTube, etc.)

## Next Steps

1. **Run test render** to verify timing and quality
2. **Adjust CRF** if file size too large/small
3. **Full render** when ready
4. **Upload to target platform**

## Troubleshooting

**File too large:**

- Increase CRF (23-28 for web)
- Lower audio bitrate (192k or 128k)

**Quality issues:**

- Decrease CRF (15-17 for higher quality)
- Use slower preset (slow, slower)

**Rendering slow:**

- Use faster preset (fast, veryfast)
- Reduce resolution temporarily for testing

## Checklist

- Codec selected
- Quality settings defined
- Platform optimized
- Render command generated
- Test render completed
- Full render completed
- Output verified

Codec Reference

H.264 (Most Compatible)

Best for: YouTube, web delivery, social media

--codec=h264
--crf=18          # Quality (lower = better, 15-28 typical)
--pixel-format=yuv420p
--audio-codec=aac
--audio-bitrate=320k

Quality Levels:

  • CRF 15-17: Excellent (large files)
  • CRF 18-20: High (recommended)
  • CRF 21-23: Good (web delivery)
  • CRF 24-28: Acceptable (preview/draft)

H.265 (HEVC) - Better Compression

Best for: Modern platforms, smaller files, 4K video

--codec=h265
--crf=23
--pixel-format=yuv420p10le

Note: Not universally supported, but ~50% smaller files at same quality

VP9 (Open Source)

Best for: WebM format, web delivery, Chrome/Firefox

--codec=vp9
--crf=30
--pixel-format=yuv420p

ProRes (Professional)

Best for: Video editing, maximum quality, no compression

--codec=prores
--prores-profile=3  # HQ profile

Warning: Very large files (~1-2 GB/minute)

Quality vs File Size Reference

For 30-second 1080p video at 30fps:

CRFQualityFile SizeUse Case
15Excellent80-100 MBArchive, editing
18High45-60 MBYouTube, high quality
21Good30-40 MBWeb, social media
23Acceptable20-30 MBWeb delivery
28Preview10-15 MBDraft, testing

Platform-Specific Presets

YouTube

npx remotion render src/index.tsx VideoName output.mp4 \
  --codec=h264 \
  --crf=18 \
  --pixel-format=yuv420p \
  --audio-codec=aac \
  --audio-bitrate=320k

Specifications:

  • Resolution: 1920x1080 or higher
  • Frame rate: 24, 25, 30, 48, 50, or 60 fps
  • Codec: H.264 or H.265
  • Audio: AAC-LC, 320 kbps

Twitter/X

npx remotion render src/index.tsx VideoName output.mp4 \
  --codec=h264 \
  --crf=20 \
  --audio-bitrate=192k

Specifications:

  • Max duration: 2:20 (140 seconds)
  • Max file size: 512 MB
  • Resolution: Up to 1920x1200 or 1200x1920

Instagram Feed

npx remotion render src/index.tsx VideoName output.mp4 \
  --codec=h264 \
  --crf=20 \
  --audio-bitrate=192k

Specifications:

  • Max duration: 60 seconds
  • Resolution: 1080x1080 (1:1) or 1080x1350 (4:5)
  • Frame rate: 30 fps
  • Codec: H.264

Instagram Reels/Stories

npx remotion render src/index.tsx VideoName output.mp4 \
  --codec=h264 \
  --crf=20 \
  --audio-bitrate=192k

Specifications:

  • Resolution: 1080x1920 (9:16)
  • Max duration: 90 seconds (Reels), 15 seconds (Stories)
  • Frame rate: 30 fps

TikTok

npx remotion render src/index.tsx VideoName output.mp4 \
  --codec=h264 \
  --crf=20 \
  --audio-bitrate=192k

Specifications:

  • Resolution: 1080x1920 (9:16)
  • Max duration: 10 minutes
  • Max file size: 287.6 MB
  • Frame rate: 30 or 60 fps

LinkedIn

npx remotion render src/index.tsx VideoName output.mp4 \
  --codec=h264 \
  --crf=20 \
  --audio-bitrate=192k

Specifications:

  • Max file size: 5 GB
  • Resolution: 256x144 to 4096x2304
  • Frame rate: 10-60 fps

Advanced Render Options

Concurrency (Faster Renders)

--concurrency=8  # Use 8 CPU cores

Image Sequence (for Post-Processing)

--sequence
--image-format=png

Outputs PNG sequence for After Effects, Premiere, etc.

Specific Frame Range

--frames=30-90  # Render frames 30-90 only

Scale Output

--scale=0.5  # Render at 50% resolution (960x540)

Useful for quick previews.

Overwrite Existing File

--overwrite

Custom Output Name

npx remotion render src/index.tsx VideoName "output/final-video.mp4"

Environment Variables

# Number of CPU cores to use
export REMOTION_CONCURRENCY=8

# Disable browser sandbox (Docker)
export REMOTION_DISABLE_CHROMIUM_SANDBOX=true

# Set custom Chromium path
export REMOTION_CHROMIUM_PATH=/path/to/chromium

Render Configuration File

Create remotion.config.ts:

import { Config } from "@remotion/cli/config";

Config.setCodec("h264");
Config.setCrf(18);
Config.setPixelFormat("yuv420p");
Config.setAudioBitrate("320k");
Config.setAudioCodec("aac");
Config.setConcurrency(8);
Config.setOverwriteOutput(true);

Then render with:

npx remotion render

Render Scripts

Add to package.json:

{
  "scripts": {
    "render:preview": "remotion render src/index.tsx VideoName preview.mp4 --crf=28 --preset=ultrafast",
    "render:draft": "remotion render src/index.tsx VideoName draft.mp4 --crf=23",
    "render:final": "remotion render src/index.tsx VideoName output.mp4 --codec=h264 --crf=18",
    "render:youtube": "remotion render src/index.tsx VideoName youtube.mp4 --codec=h264 --crf=18 --audio-bitrate=320k"
  }
}

Usage:

npm run render:youtube

Render Performance Tips

  1. Use concurrency to utilize all CPU cores
  2. Close other applications during render
  3. Use SSD for faster file I/O
  4. Reduce composition complexity if render is too slow
  5. Test render small ranges before full render
  6. Use image-format prop if you need transparency

Quality Verification Checklist

After rendering:

  • File plays without errors
  • Audio is in sync with video
  • Visual quality meets expectations
  • File size is reasonable for platform
  • No encoding artifacts visible
  • Colors look correct
  • Text is readable
  • Animations are smooth

Integration Workflow

  1. Complete composition via other skills
  2. Generate render config using this skill → RENDER_CONFIG.md
  3. Run test render (first few seconds)
  4. Verify quality and timing
  5. Run full render
  6. Upload to target platform

Integration with Other Skills

This skill is the FINAL STEP in the pipeline:

remotion-render-config (this skill)
    ↓ outputs: RENDER_CONFIG.md
    ↓ used after: All implementation is complete
    ↓ produces: Final video file

Works with:

  • /remotion-scaffold — Render outputs completed project
  • /remotion-composition — Renders structured composition
  • /remotion-component-gen — Renders implemented scenes
  • /remotion-spec-translator — Orchestrates this as final step

This skill provides production-ready render configurations that ensure high-quality video output optimized for target platforms.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.38%
按下载量换算242

Claude

29.77%
按下载量换算198

Cursor

19.43%
按下载量换算129

Gemini CLI

9.47%
按下载量换算63

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills