Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Apply best practices for creating programmatic videos with Remotion and React
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/sfx.md
1---2name: sfx3description: Including sound effects4metadata:5tags: sfx, sound, effect, audio6---78To include a sound effect, use the `<Audio>` tag:910```tsx11import { Audio } from "@remotion/sfx";1213<Audio src={"https://remotion.media/whoosh.wav"} />;14```1516The following sound effects are available:1718- `https://remotion.media/whoosh.wav`19- `https://remotion.media/whip.wav`20- `https://remotion.media/page-turn.wav`21- `https://remotion.media/switch.wav`22- `https://remotion.media/mouse-click.wav`23- `https://remotion.media/shutter-modern.wav`24- `https://remotion.media/shutter-old.wav`25- `https://remotion.media/ding.wav`26- `https://remotion.media/bruh.wav`27- `https://remotion.media/vine-boom.wav`28- `https://remotion.media/windows-xp-error.wav`2930For more sound effects, search the internet. A good resource is https://github.com/kapishdima/soundcn/tree/main/assets.31