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
- Understand preview when working with pixelDissolve().
- Understand example when working with pixelDissolve().
- Understand api when working with pixelDissolve().
- Understand progress? when working with pixelDissolve().
- 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.