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
- Understand preview when working with glow().
- Understand example when working with glow().
- Understand api when working with glow().
- Understand radius? when working with glow().
- 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.