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

Properties

Configuration properties of the Video Provider component.

The Video Provider component is configured through the following properties.

It is recommended to configure it using JavaScript, JSX or framework bindings. Avoid native HTML attributes (nombre-atributo="valor"), especially for settings, since the object format may be lost.

Constants

The configuration enums are imported from @facephi/sdk-web-wc:

import { VideoServiceType, CameraType, VideoQuality } from '@facephi/sdk-web-wc';

Configuration example

<facephi-video-provider
    id="facephiVideoProvider"
    settings={videoRecordingSettings}
></facephi-video-provider>

<script>
    //Stop recording (when the Flow ends)
    const facephiVideoProvider = document.getElementById("facephiVideoProvider");
    facephiVideoProvider.stopVideo();
</script>

Properties

Configuration

  • settings: Configuration object for Video Recording.

Development

  • showLog: Enables debug logs in the console.

Last updated