Capítulo 179 de 988
You may pass in the muted prop to <Audio>, <Video>, <OffthreadVideo>, <Html5Audio> and <Html5Video> and even change it over time.
<Audio>, <Video>, <OffthreadVideo>, <Html5Audio> and <Html5Video> and even change it over time..export const MyComposition = () => {
const frame = useCurrentFrame();
const {fps} = useVideoConfig();
return (
<AbsoluteFill>
<Audio src={staticFile('audio.mp3')} muted={frame >= 2 * fps && frame <= 4 * fps} />
</AbsoluteFill>
);
};