Chapter 177: Use Audio from video
Core Idea
Audio from <Video>, <Html5Video> and <OffthreadVideo> tags are also included in the output.
Key Concepts
- Use Audio from video: Audio from
<Video>, <Html5Video> and <OffthreadVideo> tags are also included in the output..
Code Examples
export const MyComposition = () => {
return (
<AbsoluteFill>
<Video src={staticFile('video.mp4')} playbackRate={2} volume={0.5} />
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for Use Audio from video from the official docs.
Key Takeaways
- Understand use audio from video when working with Use Audio from video.
Connects To
- Animatedimage: related page in the Assets & Media section.
- Delaying: related page in the Assets & Media section.
- Exporting: related page in the Assets & Media section.