"use client"; import { useEffect, useRef } from "react"; import Hls from "hls.js"; interface VideoPlayerProps { src: string; poster?: string; } export function VideoPlayer({ src, poster }: VideoPlayerProps) { const videoRef = useRef(null); const hlsRef = useRef(null); useEffect(() => { const video = videoRef.current; if (!video) return; const isHLS = src.endsWith(".m3u8"); if (isHLS) { if (Hls.isSupported()) { const hls = new Hls(); hlsRef.current = hls; hls.loadSource(src); hls.attachMedia(video); } else if (video.canPlayType("application/vnd.apple.mpegurl")) { // Native HLS support (Safari) video.src = src; } } else { video.src = src; } return () => { if (hlsRef.current) { hlsRef.current.destroy(); hlsRef.current = null; } }; }, [src]); return (