Capítulo 569 de 988

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

  1. Understand preview when working with colorCorrection().
  2. Understand example when working with colorCorrection().
  3. Understand operation order when working with colorCorrection().
  4. Understand api when working with colorCorrection().
  5. 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.