Leon4gr45's picture
Upload folder using huggingface_hub (part 11)
f2e9a59 verified
Raw
History Blame Contribute Delete
336 Bytes
'use client';
import { FC } from 'react';
export const VideoFrame: FC<{
url: string;
autoplay?: boolean;
}> = (props) => {
const { url } = props;
return (
<video
className="w-full h-full object-cover rounded-[4px]"
src={url + '#t=0.1'}
preload="metadata"
autoPlay={!!props?.autoplay}
/>
);
};