Capítulo 599 de 988

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

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