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