Chapter 175: Delaying Audio
Core Idea
Use the from prop to delay the audio from playing.
Key Concepts
- Delaying Audio: Use the from prop to delay the audio from playing..
Code Examples
export const MyComposition = () => {
return (
<AbsoluteFill>
<Audio from={100} src={staticFile('audio.mp3')} />
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for Delaying Audio from the official docs.
Key Takeaways
- Understand delaying audio when working with Delaying Audio.
Connects To
- Animatedimage: related page in the Assets & Media section.
- Exporting: related page in the Assets & Media section.
- From Video: related page in the Assets & Media section.