Skip to content

Commit 6c0fc64

Browse files
committed
Adjust clips configuration for reproduction
- Set CLIPS to 40 and minClipDuration to 3 - This configuration reliably reproduces the freeze after ~4 seconds of playback
1 parent f2e194d commit 6c0fc64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playground/composition.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ export async function main(composition: core.Composition) {
1010

1111
const videoSource = await core.Source.from<core.VideoSource>('/bbb_1080p_30fps.mp4');
1212

13-
const CLIPS = 50;
13+
const CLIPS = 40;
1414
const videoDuration = 20;
15-
const minClipDuration = 4;
15+
const minClipDuration = 3;
1616
const slideStep = videoDuration / CLIPS;
1717

1818
const videoLayer = new core.Layer({ mode: 'SEQUENTIAL' });

0 commit comments

Comments
 (0)