Liquid Contours
liquid-contours.tsximport {liquidContours } from '@remotion/effects/liquid-contours'; importReact from 'react'; import {interpolate ,Solid ,useCurrentFrame ,useVideoConfig } from 'remotion'; export constLiquidContours :React .FC = () => { constframe =useCurrentFrame (); const {height ,width } =useVideoConfig (); return ( <Solid width ={width }height ={height }effects ={[liquidContours ({phase :interpolate (frame , [0, 240], [3.23, 4.23]), }), ]} /> ); };