Hey all. Love this thing. I render my YouTube outros using this, works great. However: after 250 frames, I get horrible distortion. Here's a sequence rendered with remotion render OutroBasics out/BASICS/ --sequence --image-format=png --frames=0-449
If I instead render < 250 frames at a time, it works fine, using remotion render OutroBasics out/BASICS/ --sequence --image-format=png --frames=250-449 to fill in the gaps.
This is also remedied entierly by using h264 videos instead of h265. Maybe I'm rendering something weird that's upsetting remotion
The distortion appears in
const frame = useCurrentFrame();
const backgroundBloom = interpolate(
frame,
[0, 291, 301, 331, 336, 370, 449],
[1, 1, 3, 1, 1, 2.2, 1],
);
...
<OffthreadVideo
src={staticFile("Particles-190.mp4")}
style={{
position: "absolute",
zIndex: 0,
top: 0,
left: 0,
width: 2560,
height: 1440,
filter: `saturate(${backgroundBloom})`,
opacity: backgroundFade,
}}
/>
This only seems to happen with h265 videos.
I've attached both the h264 and h265 versions labelled accordingly