Capítulo 605 de 988

Chapter 605: pixelDissolve()

Core Idea

_Part of the @remotion/effects package.

Key Concepts

  • Preview
  • Example
  • API
  • progress?
  • columns?
  • rows?
  • seed?
  • feather?

Code Examples

export const MyComp: React.FC = () => {
  return (
    <AbsoluteFill>
      <Video
        src="https://remotion.media/video.mp4"
        effects={[
          pixelDissolve({
            progress: 0.45,
            columns: 10,
            rows: 10,
            seed: 0,
            feather: 0.15,
          }),
        ]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for pixelDissolve() from the official docs.

Key Takeaways

  1. Understand preview when working with pixelDissolve().
  2. Understand example when working with pixelDissolve().
  3. Understand api when working with pixelDissolve().
  4. Understand progress? when working with pixelDissolve().
  5. Understand columns? when working with pixelDissolve().

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.