Components
Loading preview...
A modern, customizable video player component with full controls and keyboard shortcuts.
npx shadcn@latest add https://21st.dev/r/preetsuthar17/video-playerimport { VideoPlayer } from "@/components/ui/video-player";
export default function DemoOne() {
return (
<>
<VideoPlayer
src="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
poster="https://peach.blender.org/wp-content/uploads/bbb-splash.png"
size="default"
/>
</>
);
}