Capítulo 582 de 988

Chapter 582: glow()

Core Idea

_Part of the @remotion/effects package.

Key Concepts

  • Preview
  • Example
  • API
  • radius?
  • intensity?
  • threshold?
  • color?
  • disabled?

Code Examples

export const MyComp: React.FC = () => {
  return (
    <AbsoluteFill>
      <Video
        src="https://remotion.media/video.mp4"
        effects={[
          glow({
            radius: 24,
            intensity: 1.5,
            threshold: 0.35,
            color: '#00d8ff',
          }),
        ]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for glow() from the official docs.

Key Takeaways

  1. Understand preview when working with glow().
  2. Understand example when working with glow().
  3. Understand api when working with glow().
  4. Understand radius? when working with glow().
  5. Understand intensity? when working with glow().

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.