packages/docs/docs/audio/sfx.mdx
You can add sound effects to your Remotion video using the <Audio> tag.
@remotion/sfxThe @remotion/sfx package provides a collection of ready-to-use sound effects:
import {whoosh, whip} from '@remotion/sfx';
import {Audio, Sequence} from 'remotion';
const MyVideo = () => {
return (
<>
<Sequence from={0} durationInFrames={30}>
<Audio src={whip} />
</Sequence>
<Sequence from={30} durationInFrames={30}>
<Audio src={whoosh} />
</Sequence>
</>
);
};
See the full list of available sounds.
You can also use the remotion.media CDN URLs directly without installing the package:
import {Audio} from 'remotion';
const MyVideo = () => {
return <Audio src="https://remotion.media/whoosh.wav" />;
};
The following sites are good resources for free sound effects:
Want to add a new sound effect? See the contributing guide.