Chapter 607: radialProgressivePixelate()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Preview
- Example
- API
- center?
- width?
- height?
- rotation?
- start?
Code Examples
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<Video
src="https://remotion.media/video.mp4"
effects={[
radialProgressivePixelate({
center: [0.5, 0.5],
width: 1,
height: 1,
rotation: 0,
start: 0.4,
startBlockSize: 1,
endBlockSize: 40,
}),
]}
/>
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for radialProgressivePixelate() from the official docs.
Key Takeaways
- Understand preview when working with radialProgressivePixelate().
- Understand example when working with radialProgressivePixelate().
- Understand api when working with radialProgressivePixelate().
- Understand center? when working with radialProgressivePixelate().
- Understand width? when working with radialProgressivePixelate().
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.