Capítulo 937 de 988
Use the colorKey() effect from @remotion/effects to remove the green background of a video.
export const Greenscreen: React.FC = () => {
return (
<AbsoluteFill>
<Video
src="https://remotion.media/greenscreen.mp4"
effects={[
colorKey({
similarity: 0.45,
}),
]}
/>
</AbsoluteFill>
);
};