Live video on the AT Protocol
79
fork

Configure Feed

Select the types of activity you want to include in your feed.

at eli/dev-env 16 lines 384 B view raw
1export type PlayerProps = { 2 name: string; 3 playerId?: string; 4 src: string; 5 muted: boolean; 6 telemetry: boolean; 7 fullscreen: boolean; 8 setFullscreen: (isFullscreen: boolean) => void; 9 ingest?: boolean; 10 embedded?: boolean; 11 videoRef: 12 | React.MutableRefObject<HTMLVideoElement | null> 13 | ((instance: HTMLVideoElement | null) => void) 14 | null 15 | undefined; 16};