Capítulo 914 de 988
:::info Deprecated @remotion/light-leaks is deprecated and will no longer be published starting with Remotion 5. 0.
export const MyComp: React.FC = () => {
const frame = useCurrentFrame();
const progress = interpolate(frame, [0, 30], [0, 1], {
extrapolateLeft: 'clamp',
extrapolateRight: 'clamp',
});
return (
<CanvasImage
src={staticFile('image.png')}
width={1280}
height={720}
fit="cover"
effects={[
lightLeak({
seed: 3,
hueShift: 30,
progress,
}),
]}
/>
);
};