Mbonea commited on
Commit
308f422
·
1 Parent(s): db1d101

image stream rollbacl

Browse files
Remotion-app/src/HelloWorld/ImageStream.jsx CHANGED
@@ -14,19 +14,13 @@ export default function ImageStream() {
14
  >
15
  {imageSequences.map((entry, index) => {
16
  return (
17
- <>
18
- <TransitionSeries.Sequence
19
- key={index}
20
- from={fps * entry.start}
21
- durationInFrames={fps * (entry.end - entry.start)}
22
- >
23
- <Img src={staticFile(entry.name)} />
24
- </TransitionSeries.Sequence>
25
- <TransitionSeries.Transition
26
- presentation={slide()}
27
- timing={linearTiming({durationInFrames: 1})}
28
- />
29
- </>
30
  );
31
  })}
32
  </TransitionSeries>
 
14
  >
15
  {imageSequences.map((entry, index) => {
16
  return (
17
+ <TransitionSeries.Sequence
18
+ key={index}
19
+ from={fps * entry.start}
20
+ durationInFrames={fps * (entry.end - entry.start)}
21
+ >
22
+ <Img src={staticFile(entry.name)} />
23
+ </TransitionSeries.Sequence>
 
 
 
 
 
 
24
  );
25
  })}
26
  </TransitionSeries>