For the complete documentation index, see llms.txt. This page is also available as Markdown.

extractionTimeout

The extraction timeout has been exceeded.

Details

The time limit for capture has been exceeded without the user having completed the process.

Event: extractionTimeout

Type: CustomEvent

Syntax

videoId.addEventListener('extractionTimeout', onExtractionTimeout);

Description

This event is emitted when the component has not performed the extraction because the user has taken too long to complete the capture.


Example

<facephi-video-id
    onExtractionTimeout={() => {
        console.log('The capture process has not been completed in time');
    }}
/>

Last updated