Information about text detected in a video. Incudes the detected text, the time in milliseconds from the start of the video that the text was detected, and where it was detected on the screen.

interface TextDetectionResult {
    TextDetection?: TextDetection;
    Timestamp?: number;
}

Properties

TextDetection?: TextDetection

Details about text detected in a video.

Timestamp?: number

The time, in milliseconds from the start of the video, that the text was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the text first appears.