Chapter 569: colorCorrection()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Preview
- Example
- Operation order
- API
- exposure?
- contrast?
- pivot?
- shadows?
Code Examples
export const MyComp: React.FC = () => {
return (
<Video
src="https://remotion.media/video.mp4"
effects={[
colorCorrection({
exposure: 0.25,
contrast: 1.1,
shadows: 0.2,
highlights: -0.15,
temperature: 0.1,
vibrance: 0.2,
}),
]}
/>
);
};
- What it demonstrates: Usage pattern for colorCorrection() from the official docs.
Key Takeaways
- Understand preview when working with colorCorrection().
- Understand example when working with colorCorrection().
- Understand operation order when working with colorCorrection().
- Understand api when working with colorCorrection().
- Understand exposure? when working with colorCorrection().
Connects To
- Animated Emoji: related page in the Effects Library section.
- get Available Emoji: related page in the Effects Library section.
- api: related page in the Effects Library section.