Capítulo 595 de 988

Chapter 595: linearProgressivePixelate()

Core Idea

_Part of the @remotion/effects package.

Key Concepts

  • Preview
  • Example
  • API
  • start?
  • end?
  • startBlockSize?
  • endBlockSize?
  • disabled?

Code Examples

export const MyComp: React.FC = () => {
  return (
    <AbsoluteFill>
      <Video
        src="https://remotion.media/video.mp4"
        effects={[
          linearProgressivePixelate({
            start: [0, 0.5],
            end: [1, 0.5],
            startBlockSize: 1,
            endBlockSize: 40,
          }),
        ]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for linearProgressivePixelate() from the official docs.

Key Takeaways

  1. Understand preview when working with linearProgressivePixelate().
  2. Understand example when working with linearProgressivePixelate().
  3. Understand api when working with linearProgressivePixelate().
  4. Understand start? when working with linearProgressivePixelate().
  5. Understand end? when working with linearProgressivePixelate().

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.