Mbonea's picture
background separate stream
1234584
raw
history blame
552 Bytes
import {AbsoluteFill} from 'remotion';
import VideoStream from './VideoStream';
import {TextStream} from './TextStream';
import AudioStream from './AudioStream';
import ImageStream from './ImageStream';
import SfxStream from './SfxStream';
import BackgroundStream from './BackGroundStream';
export const HelloWorld = () => {
return (
<AbsoluteFill style={{position: 'relative', backgroundColor: 'black'}}>
<BackgroundStream />
<SfxStream />
<ImageStream />
<TextStream />
<VideoStream />
<AudioStream />
</AbsoluteFill>
);
};