Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

video-color-grading视频色彩分级

Agent Skill

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

总安装

4,045

周安装

172

GitHub Stars

12

下载量

1,417
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:video-color-grading(视频色彩分级)
来源仓库:https://github.com/eachlabs/skills
仓库路径:skills/video-color-grading
安装命令:
npx skills add https://github.com/eachlabs/skills --skill video-color-grading
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill video-color-grading

简介

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。

  • 适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。
  • 使用时需要确认分辨率、时长、素材路径和导出格式。
  • 涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。
  • video-color-grading 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Video Color Grading

Apply professional color grading and color correction to videos using each::sense. This skill enables cinematic looks, film stock emulations, mood-based color treatments, and technical color corrections.

Features

  • Cinematic Grades: Hollywood-style color treatments for narrative content
  • Film Emulation: Kodak, Fuji, and other classic film stock looks
  • Look Development: Orange & teal, moody dark, bright & airy styles
  • Color Correction: Fix white balance, exposure, and color cast issues
  • Vintage/Retro: 80s, 90s, VHS, and nostalgic color treatments
  • Black & White: Cinematic monochrome conversions with tone control
  • HDR Enhancement: Dynamic range expansion and tone mapping
  • Color Matching: Match color grades between different clips

Quick Start

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply a cinematic color grade to this video with teal shadows and warm highlights"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/my-video.mp4"]
  }'

Color Grading Styles

StyleDescriptionBest For
CinematicCrushed blacks, color contrast, film-likeNarrative, drama
Orange & TealWarm skin tones, cool backgroundsAction, blockbuster
Film EmulationKodak/Fuji film stock characteristicsIndie, music videos
Moody DarkLow-key, desaturated, atmosphericThriller, horror
Bright & AiryLifted shadows, soft pastelsWeddings, lifestyle
Vintage/RetroFaded, warm, nostalgicMusic videos, commercials
Black & WhiteCinematic monochromeArt films, dramatic
HDR EnhancedExtended dynamic range, vividNature, travel

Use Case Examples

1. Cinematic Color Grade

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply a cinematic color grade to this video. I want crushed blacks, slightly desaturated midtones, and a subtle teal push in the shadows with warm highlights. Make it look like a modern Hollywood film."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/raw-footage.mp4"]
  }'

2. Film Emulation (Kodak Vision3)

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Color grade this video to look like it was shot on Kodak Vision3 500T film stock. I want that classic film look with natural skin tones, rich shadows, and subtle grain. Tungsten balanced with warm color science."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/digital-footage.mp4"]
  }'

3. Orange and Teal Look

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply the classic orange and teal color grade to this video. Push warm orange tones into the skin and highlights, and cool teal into the shadows and backgrounds. Make it punchy like a Michael Bay film but not over the top."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/action-scene.mp4"]
  }'

4. Vintage/Retro Color Grade

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Give this video a vintage 1980s look. Faded blacks, warm color cast, reduced saturation with boosted reds and yellows. Add subtle softness and that nostalgic analog feel. Think retro music video aesthetic."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/modern-footage.mp4"]
  }'

5. Black and White Conversion

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Convert this video to cinematic black and white. I want high contrast with deep blacks and bright highlights. Focus on dramatic tonal separation. Think classic film noir or modern prestige drama. Rich monochrome, not flat."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/color-footage.mp4"]
  }'

6. Color Correction (Fix White Balance)

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "This video was shot with incorrect white balance - it has a strong orange/yellow color cast from tungsten lighting. Please correct the white balance to neutral, fix the skin tones to look natural, and balance the overall exposure. Keep it looking natural, just properly corrected."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/bad-white-balance.mp4"]
  }'

7. Match Color Between Clips

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "I have two video clips that need to match. The first video is my reference with the color grade I like. Please apply the same color grade to the second video so they look consistent when edited together. Match the contrast, saturation, color temperature, and overall tone."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": [
      "https://example.com/reference-clip.mp4",
      "https://example.com/clip-to-match.mp4"
    ]
  }'

8. Moody Dark Grade

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply a moody, dark color grade to this video. I want crushed shadows, desaturated colors with selective color pops, and a cold blue-green tint. Think David Fincher or Denis Villeneuve - atmospheric and brooding. Low-key lighting feel even if the original is brighter."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/scene-footage.mp4"]
  }'

9. Bright and Airy Grade

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Give this video a bright and airy look perfect for wedding or lifestyle content. Lift the shadows, add soft pastel tones, slightly warm skin tones, and reduce contrast for that dreamy quality. Clean, fresh, and romantic feeling. Keep it natural but elevated."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/wedding-footage.mp4"]
  }'

10. HDR Enhancement

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Enhance this video with HDR-style color grading. Expand the dynamic range, bring out detail in both shadows and highlights, boost color vibrancy without oversaturation. Make skies more dramatic, colors more vivid, and overall image more impactful. Great for landscape and travel footage."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "video_urls": ["https://example.com/landscape-video.mp4"]
  }'

Best Practices

Color Grading Tips

  • Reference Images: Describe a specific film or visual reference for consistent results
  • Be Specific: Mention shadow color, highlight warmth, contrast level, saturation
  • Skin Tones: Always mention if preserving natural skin tones is important
  • Mood First: Start with the emotion/mood you want, then technical details

Technical Considerations

  • Source Quality: Better source footage yields better grading results
  • Consistency: Use session_id to grade multiple clips with the same look
  • Preview First: Use eco mode for quick previews, max for final output

Common Terminology

TermDescription
LiftAdjusts shadow brightness
GammaAdjusts midtone brightness
GainAdjusts highlight brightness
CrushDeepening blacks beyond pure black
PushAdding color tint to a tonal range
Color CastUnwanted color tint across image

Mode Selection

Ask your users before generating:

"Do you want fast & cheap, or high quality?"

ModeBest ForSpeedQuality
maxFinal deliverables, client workSlowerHighest
ecoQuick previews, look exploration, draftsFasterGood

Multi-Turn Creative Iteration

Use session_id to iterate on color grades:

# Initial grade
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply a cinematic teal and orange grade to this video"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "color-grade-project-001",
    "video_urls": ["https://example.com/my-video.mp4"]
  }'

# Refine the grade
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "The teal is too strong in the shadows. Can you reduce it and add more warmth to the skin tones?"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "color-grade-project-001"
  }'

# Apply to additional clips
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply the same grade we developed to this new clip"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "color-grade-project-001",
    "video_urls": ["https://example.com/second-clip.mp4"]
  }'

Batch Color Grading

Grade multiple clips with the same look:

# Grade first clip and establish look
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply a moody cinematic grade to this video - this will be my hero look for the project"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "music-video-grade",
    "video_urls": ["https://example.com/clip-01.mp4"]
  }'

# Apply same look to remaining clips
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply the same color grade to these additional clips for consistency"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "music-video-grade",
    "video_urls": [
      "https://example.com/clip-02.mp4",
      "https://example.com/clip-03.mp4",
      "https://example.com/clip-04.mp4"
    ]
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentEnsure video complies with content policies
TimeoutComplex video processingSet client timeout to minimum 10 minutes
Video too longExceeds processing limitsSplit video into shorter segments

Prompt Tips for Color Grading

When requesting color grades, include these details:

  1. Reference: Film, director, or visual style reference
  2. Mood: The emotional tone (moody, bright, dramatic, soft)
  3. Shadow Treatment: Color and depth (crushed, lifted, tinted)
  4. Highlight Treatment: Warmth, rolloff, color
  5. Saturation: Overall and selective color intensity
  6. Contrast: High, low, or specific curve shape
  7. Skin Tones: Natural, warm, or stylized

Example Prompt Structure

"Apply a [style] color grade to this video.
I want [shadow description] shadows and [highlight description] highlights.
The mood should be [mood/emotion].
Reference: [film or visual reference].
[Specific requirements like skin tones, saturation, etc.]"

Related Skills

  • each-sense - Core API documentation
  • video-generation - Generate videos from scratch
  • video-editing - Edit and modify video content
  • image-color-grading - Color grade still images

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.72%
按下载量换算478

Claude

29.35%
按下载量换算416

Cursor

19.65%
按下载量换算278

Gemini CLI

8.58%
按下载量换算122

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills