Capítulo 631 de 988

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

  1. Understand difference from noise() when working with whiteNoise().
  2. Understand preview when working with whiteNoise().
  3. Understand example when working with whiteNoise().
  4. Understand api when working with whiteNoise().
  5. 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.