Mbonea commited on
Commit
472c499
·
1 Parent(s): 5fa0fe3
Remotion-app/src/HelloWorld/VideoStream.jsx CHANGED
@@ -41,13 +41,7 @@ const VideoX = React.memo(({entry}) => {
41
 
42
  return (
43
  <>
44
- {entry?.loop ? (
45
- <Loop durationInFrames={fps * (entry.end - entry.start)}>
46
- <Video {...videoProps} />
47
- </Loop>
48
- ) : (
49
- <Video {...videoProps} />
50
- )}
51
  </>
52
  );
53
  });
 
41
 
42
  return (
43
  <>
44
+ {entry?.loop ? <Video loop {...videoProps} /> : <Video {...videoProps} />}
 
 
 
 
 
 
45
  </>
46
  );
47
  });