Chapter 631: whiteNoise()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Difference from noise()
- Preview
- Example
- API
- amount?
- seed?
- disabled?
- Requirements
Code Examples
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<Solid
width={1280}
height={720}
color="black"
effects={[
whiteNoise({
amount: 1,
seed: 7,
}),
]}
/>
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for whiteNoise() from the official docs.
Key Takeaways
- Understand difference from noise() when working with whiteNoise().
- Understand preview when working with whiteNoise().
- Understand example when working with whiteNoise().
- Understand api when working with whiteNoise().
- Understand amount? when working with whiteNoise().
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.