Delaying Audio
Use a <Sequence>
with a positive from
value to delay the audio from playing.
In the following example, the audio will start playing after 100 frames.
tsx
import {AbsoluteFill ,Audio ,Sequence ,staticFile } from 'remotion';export constMyComposition = () => {return (<AbsoluteFill ><Sequence from ={100}><Audio src ={staticFile ('audio.mp3')} /></Sequence ></AbsoluteFill >);};