UNPKG

@werk1/w1-system-videoblock

Version:

Universal video player supporting YouTube, Vimeo, HLS, DASH with coordination and GSAP integration for W1 System

17 lines (16 loc) 619 B
import React from 'react'; import type { W1VideoPlayerProps } from '../../types'; /** * W1VideoPlayer - Pure video engine with modular hook architecture * * This component focuses solely on video playback functionality. * For complete video solutions with coordination, use W1VideoBlock. * * Features: * - Universal video format support (YouTube, Vimeo, HLS, DASH, MP4/WebM) * - Picture-in-Picture and fullscreen support * - Modular hook architecture for maintainability * - Pure video engine - no coordination concerns */ declare const W1VideoPlayer: React.FC<W1VideoPlayerProps>; export { W1VideoPlayer };