Overview
A camera shutter sound for photo-style scene cuts, screenshot moments, and snapshot aesthetics. Duration: 7.87s.
Installation
React / Web Audio
npx shadcn@latest add @elements/sfx-shutterVideo Production / Agents
curl -o public/sfx/shutter.mp3 https://tryelements.dev/sfx/shutter.mp3Usage
React Hook
import { useSound } from "@/hooks/use-sound";
import { shutterSound } from "@/sfx/shutter";
export function ScreenshotButton() {
const [play] = useSound(shutterSound, { volume: 0.5 });
return <button onClick={play}>Capture</button>;
}Remotion
import { Audio, staticFile } from "remotion";
export function PhotoCut() {
return <Audio src={staticFile("sfx/shutter.mp3")} volume={0.4} />;
}Timing
Play at the exact cut frame for a photo-style transition effect.
License
CC0 (public domain). No attribution required. Free for commercial use.