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

changeChannel

Channel change during Video Recording.

Details

Emitted when the recording channel changes during the process.

Event: changeChannel

Type: FacephiVideoProviderCustomEvent<any> | CustomEvent<any>

Syntax

video.addEventListener('changeChannel', onChangeChannel);

Received object

detail: any

Description

Notifies the video channel used by the recording service.


Example

<facephi-video-provider
    onChangeChannel={(event) => console.log(event.detail)}
/>

Last updated