> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-web/componentes/videoid-identificacion-en-video/eventos/extractiontimeout.md).

# extractionTimeout

## Details

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

**Event:** `extractionTimeout`

**Type:** `CustomEvent`

### Syntax

```typescript
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

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