Chapter 611: saturation()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Preview
- Example
- API
- amount?
- disabled?
- Difference to tint()
- See also
Code Examples
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<Video
src="https://remotion.media/video.mp4"
effects={[saturation({amount: 1.5})]}
/>
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for saturation() from the official docs.
Key Takeaways
- Understand preview when working with saturation().
- Understand example when working with saturation().
- Understand api when working with saturation().
- Understand amount? when working with saturation().
- Understand disabled? when working with saturation().
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.