No clamp
Browse files
Remotion-app/src/HelloWorld/ImageStream.jsx
CHANGED
@@ -24,11 +24,15 @@ export default function ImageStream() {
|
|
24 |
}}
|
25 |
>
|
26 |
{imageSequences.map((entry, index) => {
|
27 |
-
|
28 |
|
29 |
const zoom = interpolate(
|
30 |
frame,
|
31 |
-
[
|
|
|
|
|
|
|
|
|
32 |
[1, 1.2, 1],
|
33 |
{
|
34 |
easing: Easing.bezier(0.8, 0.22, 0.96, 0.65),
|
|
|
24 |
}}
|
25 |
>
|
26 |
{imageSequences.map((entry, index) => {
|
27 |
+
const durationInFrames = (entry.end - entry.start) * fps;
|
28 |
|
29 |
const zoom = interpolate(
|
30 |
frame,
|
31 |
+
[
|
32 |
+
fps * entry.start,
|
33 |
+
fps * entry.start + 2 * (durationInFrames / 4),
|
34 |
+
fps * entry.end,
|
35 |
+
],
|
36 |
[1, 1.2, 1],
|
37 |
{
|
38 |
easing: Easing.bezier(0.8, 0.22, 0.96, 0.65),
|