Delaying Audio
Use the from prop to delay the audio from playing.
In the following example, the audio will start playing after 100 frames.
import {AbsoluteFill , staticFile } from 'remotion';
import {Audio } from '@remotion/media';
export const MyComposition = () => {
return (
<AbsoluteFill >
<Audio from ={100} src ={staticFile ('audio.mp3')} />
</AbsoluteFill >
);
};