The GUI moment
import { Video } from "@/components/tool-ui/video";export function Example() { return ( <Video id="video-example" assetId="sample-video" src="https://samplelib.com/lib/preview/mp4/sample-5s.mp4" poster="https://images.unsplash.com/photo-1518770660439-4636190af475" title="The GUI moment" description="From command lines to windows, icons, menus, and pointers." ratio="16:9" durationMs={128000} /> );}Plays automatically (muted) for seamless previews
Display a thumbnail before video plays
Full browser video controls for playback
Copy components/tool-ui/video and the shared directory into your project.
pnpm dlx shadcn@latest add badge button card tooltipProp
Type
pnpm dlx shadcn@latest add badge button card tooltipimport { Video } from "@/components/tool-ui/video";
export function Example() {
return (
<Video
id="video-example"
assetId="sample-video"
src="https://samplelib.com/lib/preview/mp4/sample-5s.mp4"
poster="https://images.unsplash.com/photo-1518770660439-4636190af475"
title="The GUI moment"
description="From command lines to windows, icons, menus, and pointers."
ratio="16:9"
durationMs={128000}
/>
);
}