• It recognizes the frames of a video file using OCR.

    Parameters

    • fpath: string

      The input video file path.

    • recover: boolean = false

      If missing frames should be recovered.

    • debug: boolean = false

      Enable debug logging.

    Returns Promise<{
        frameRate: number;
        frames: Map<number, number>;
        height: number;
        participantDisplayName: string;
        width: number;
    }>