Live video on the AT Protocol
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};