@pexip/media-processor 20.3.4 → 20.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/api-docs/README.mdx +411 -0
- package/api-docs/enumerations/AbortReason.mdx +5 -0
- package/api-docs/functions/avg.mdx +15 -0
- package/api-docs/functions/calculateDistance.mdx +18 -0
- package/api-docs/functions/closedCurve.mdx +27 -0
- package/api-docs/functions/copyByteBufferToFloatBuffer.mdx +16 -0
- package/api-docs/functions/createAnalyzerGraphNode.mdx +19 -0
- package/api-docs/functions/createAnalyzerSubscribableGraphNode.mdx +15 -0
- package/api-docs/functions/createAsyncCallbackLoop.mdx +35 -0
- package/api-docs/functions/createAudioContext.mdx +22 -0
- package/api-docs/functions/createAudioDestinationGraphNode.mdx +9 -0
- package/api-docs/functions/createAudioGraph.mdx +28 -0
- package/api-docs/functions/createAudioGraphProxy.mdx +14 -0
- package/api-docs/functions/createAudioSignalDetector.mdx +51 -0
- package/api-docs/functions/createAudioStats.mdx +19 -0
- package/api-docs/functions/createBenchmark.mdx +14 -0
- package/api-docs/functions/createCanvas.mdx +16 -0
- package/api-docs/functions/createCanvasTransform.mdx +14 -0
- package/api-docs/functions/createChannelMergerGraphNode.mdx +19 -0
- package/api-docs/functions/createChannelSplitterGraphNode.mdx +19 -0
- package/api-docs/functions/createDelayGraphNode.mdx +19 -0
- package/api-docs/functions/createDenoiseWorkletGraphNode.mdx +16 -0
- package/api-docs/functions/createFrameCallbackRequest.mdx +29 -0
- package/api-docs/functions/createGainGraphNode.mdx +15 -0
- package/api-docs/functions/createMediaElementSourceGraphNode.mdx +15 -0
- package/api-docs/functions/createSegmenter.mdx +14 -0
- package/api-docs/functions/createStreamDestinationGraphNode.mdx +15 -0
- package/api-docs/functions/createStreamSourceGraphNode.mdx +16 -0
- package/api-docs/functions/createVADetector.mdx +54 -0
- package/api-docs/functions/createVideoProcessor.mdx +14 -0
- package/api-docs/functions/createVideoTrackProcessor.mdx +9 -0
- package/api-docs/functions/createVideoTrackProcessorWithFallback.mdx +15 -0
- package/api-docs/functions/createVoiceDetectorFromProbability.mdx +15 -0
- package/api-docs/functions/createVoiceDetectorFromTimeData.mdx +19 -0
- package/api-docs/functions/curve.mdx +15 -0
- package/api-docs/functions/fromByteToFloat.mdx +27 -0
- package/api-docs/functions/fromFloatToByte.mdx +27 -0
- package/api-docs/functions/getAudioStats.mdx +19 -0
- package/api-docs/functions/getBezierCurveControlPoints.mdx +26 -0
- package/api-docs/functions/isAnalyzerNodeInit.mdx +13 -0
- package/api-docs/functions/isAudioNode.mdx +13 -0
- package/api-docs/functions/isAudioNodeInit.mdx +13 -0
- package/api-docs/functions/isAudioParam.mdx +13 -0
- package/api-docs/functions/isClipping.mdx +18 -0
- package/api-docs/functions/isEqualSize.mdx +22 -0
- package/api-docs/functions/isLowVolume.mdx +19 -0
- package/api-docs/functions/isMono.mdx +22 -0
- package/api-docs/functions/isRenderEffects.mdx +13 -0
- package/api-docs/functions/isSilent.mdx +22 -0
- package/api-docs/functions/isVoiceActivity.mdx +29 -0
- package/api-docs/functions/line.mdx +15 -0
- package/api-docs/functions/loadScript.mdx +14 -0
- package/api-docs/functions/loadWasms.mdx +13 -0
- package/api-docs/functions/pow.mdx +29 -0
- package/api-docs/functions/processAverageVolume.mdx +15 -0
- package/api-docs/functions/resumeAudioOnInterruption.mdx +23 -0
- package/api-docs/functions/resumeAudioOnUnmute.mdx +27 -0
- package/api-docs/functions/rms.mdx +15 -0
- package/api-docs/functions/round.mdx +23 -0
- package/api-docs/functions/subscribeTimeoutAnalyzerNode.mdx +22 -0
- package/api-docs/functions/subscribeWorkletNode.mdx +28 -0
- package/api-docs/functions/sum.mdx +15 -0
- package/api-docs/functions/toDecibel.mdx +18 -0
- package/api-docs/interfaces/Analyzer.mdx +368 -0
- package/api-docs/interfaces/AnalyzerSubscribableOptions.mdx +11 -0
- package/api-docs/interfaces/AsyncAssets.mdx +7 -0
- package/api-docs/interfaces/AudioGraph.mdx +92 -0
- package/api-docs/interfaces/AudioGraphOptions.mdx +6 -0
- package/api-docs/interfaces/AudioNodeInit.mdx +127 -0
- package/api-docs/interfaces/AudioNodeProps.mdx +15 -0
- package/api-docs/interfaces/AudioStats.mdx +16 -0
- package/api-docs/interfaces/BackgroundImage.mdx +6 -0
- package/api-docs/interfaces/Benchmark.mdx +35 -0
- package/api-docs/interfaces/Clock.mdx +11 -0
- package/api-docs/interfaces/Denoise.mdx +50 -0
- package/api-docs/interfaces/Detector.mdx +81 -0
- package/api-docs/interfaces/Frame.mdx +11 -0
- package/api-docs/interfaces/Gain.mdx +227 -0
- package/api-docs/interfaces/ImageRecord.mdx +6 -0
- package/api-docs/interfaces/ImageSegmenterOptions.mdx +8 -0
- package/api-docs/interfaces/MPMask.mdx +145 -0
- package/api-docs/interfaces/Point.mdx +10 -0
- package/api-docs/interfaces/Process.mdx +46 -0
- package/api-docs/interfaces/ProcessEventClose.mdx +7 -0
- package/api-docs/interfaces/ProcessEventDebug.mdx +14 -0
- package/api-docs/interfaces/ProcessEventDestroy.mdx +7 -0
- package/api-docs/interfaces/ProcessEventOpen.mdx +14 -0
- package/api-docs/interfaces/ProcessEventProcess.mdx +14 -0
- package/api-docs/interfaces/ProcessEventUpdate.mdx +14 -0
- package/api-docs/interfaces/ProcessWorkerDebugMessage.mdx +6 -0
- package/api-docs/interfaces/ProcessWorkerEvent.mdx +12 -0
- package/api-docs/interfaces/ProcessWorkerEventDebug.mdx +12 -0
- package/api-docs/interfaces/ProcessWorkerEventOpened.mdx +5 -0
- package/api-docs/interfaces/ProcessWorkerEventProcessed.mdx +12 -0
- package/api-docs/interfaces/ProcessWorkerEventUpdated.mdx +5 -0
- package/api-docs/interfaces/ProcessorEvent.mdx +7 -0
- package/api-docs/interfaces/ProcessorOptions.mdx +16 -0
- package/api-docs/interfaces/ProcessorProcessOptions.mdx +6 -0
- package/api-docs/interfaces/Rect.mdx +8 -0
- package/api-docs/interfaces/RenderEventHandlers.mdx +7 -0
- package/api-docs/interfaces/Renderer.mdx +64 -0
- package/api-docs/interfaces/RendererOptions.mdx +15 -0
- package/api-docs/interfaces/Runner.mdx +41 -0
- package/api-docs/interfaces/Segmentation.mdx +5 -0
- package/api-docs/interfaces/SegmentationModelAsset.mdx +8 -0
- package/api-docs/interfaces/SegmentationParams.mdx +18 -0
- package/api-docs/interfaces/SegmentationSmoothingConfig.mdx +5 -0
- package/api-docs/interfaces/Segmenter.mdx +121 -0
- package/api-docs/interfaces/SegmenterOptions.mdx +13 -0
- package/api-docs/interfaces/Size.mdx +10 -0
- package/api-docs/interfaces/StatsOptions.mdx +10 -0
- package/api-docs/interfaces/SubscribableOptions.mdx +9 -0
- package/api-docs/interfaces/ThrottleOptions.mdx +8 -0
- package/api-docs/interfaces/Transform.mdx +62 -0
- package/api-docs/interfaces/VideoFrameLike.mdx +8 -0
- package/api-docs/interfaces/VideoProcessor.mdx +38 -0
- package/api-docs/interfaces/WorkletMessagePortOptions.mdx +16 -0
- package/api-docs/interfaces/WorkletModule.mdx +6 -0
- package/api-docs/type-aliases/AnalyzerNodeInit.mdx +3 -0
- package/api-docs/type-aliases/AsyncCallback.mdx +7 -0
- package/api-docs/type-aliases/AudioBufferBytes.mdx +5 -0
- package/api-docs/type-aliases/AudioBufferFloats.mdx +6 -0
- package/api-docs/type-aliases/AudioDestinationNodeInit.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeConnectParam.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeInitConnectParam.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeInitConnection.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeInitConnections.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeParam.mdx +3 -0
- package/api-docs/type-aliases/AudioSamples.mdx +17 -0
- package/api-docs/type-aliases/BaseAudioNode.mdx +3 -0
- package/api-docs/type-aliases/Callback.mdx +20 -0
- package/api-docs/type-aliases/Canvas.mdx +3 -0
- package/api-docs/type-aliases/CanvasContext.mdx +3 -0
- package/api-docs/type-aliases/ChannelSplitterNodeInit.mdx +3 -0
- package/api-docs/type-aliases/Color.mdx +12 -0
- package/api-docs/type-aliases/ConnectInitParamBaseType.mdx +3 -0
- package/api-docs/type-aliases/ConnectInitParamType.mdx +3 -0
- package/api-docs/type-aliases/ConnectParamBase.mdx +11 -0
- package/api-docs/type-aliases/ConnectParamBaseType.mdx +3 -0
- package/api-docs/type-aliases/ConnectParamType.mdx +3 -0
- package/api-docs/type-aliases/DelayNodeInit.mdx +3 -0
- package/api-docs/type-aliases/Delegate.mdx +3 -0
- package/api-docs/type-aliases/DenoiseWorkletNodeInit.mdx +3 -0
- package/api-docs/type-aliases/ExtractMessageEventType.mdx +9 -0
- package/api-docs/type-aliases/GainNodeInit.mdx +3 -0
- package/api-docs/type-aliases/ImageMapIterable.mdx +3 -0
- package/api-docs/type-aliases/ImageType.mdx +6 -0
- package/api-docs/type-aliases/IncludeMessageEventDataType.mdx +10 -0
- package/api-docs/type-aliases/InputFrame.mdx +3 -0
- package/api-docs/type-aliases/IsVoice.mdx +19 -0
- package/api-docs/type-aliases/MediaElementAudioSourceNodeInit.mdx +3 -0
- package/api-docs/type-aliases/MediaStreamAudioDestinationNodeInit.mdx +3 -0
- package/api-docs/type-aliases/MediaStreamAudioSourceNodeInit.mdx +3 -0
- package/api-docs/type-aliases/Node.mdx +3 -0
- package/api-docs/type-aliases/NodeConnectionAction.mdx +3 -0
- package/api-docs/type-aliases/Nodes.mdx +3 -0
- package/api-docs/type-aliases/ProcessEvents.mdx +17 -0
- package/api-docs/type-aliases/ProcessInputType.mdx +3 -0
- package/api-docs/type-aliases/ProcessStatus.mdx +3 -0
- package/api-docs/type-aliases/ProcessVideoTrack.mdx +15 -0
- package/api-docs/type-aliases/ProcessWorkerEvents.mdx +18 -0
- package/api-docs/type-aliases/ProcessorEvents.mdx +3 -0
- package/api-docs/type-aliases/ProcessorWorkerEvents.mdx +3 -0
- package/api-docs/type-aliases/RenderBackend.mdx +3 -0
- package/api-docs/type-aliases/RenderEffects.mdx +3 -0
- package/api-docs/type-aliases/RenderingEvents.mdx +3 -0
- package/api-docs/type-aliases/RunnerCreator.mdx +21 -0
- package/api-docs/type-aliases/SegmentationModel.mdx +3 -0
- package/api-docs/type-aliases/SegmentationTransform.mdx +3 -0
- package/api-docs/type-aliases/TupleOf.mdx +12 -0
- package/api-docs/type-aliases/UniversalAudioContextState.mdx +6 -0
- package/api-docs/type-aliases/Unsubscribe.mdx +9 -0
- package/api-docs/type-aliases/WasmPaths.mdx +3 -0
- package/api-docs/variables/BACKGROUND_BLUR_AMOUNT.mdx +3 -0
- package/api-docs/variables/CLIP_COUNT_THRESHOLD.mdx +6 -0
- package/api-docs/variables/CLIP_THRESHOLD.mdx +5 -0
- package/api-docs/variables/EDGE_BLUR_AMOUNT.mdx +3 -0
- package/api-docs/variables/FOREGROUND_THRESHOLD.mdx +3 -0
- package/api-docs/variables/FRAME_RATE.mdx +3 -0
- package/api-docs/variables/LOW_VOLUME_THRESHOLD.mdx +5 -0
- package/api-docs/variables/MASK_COMBINE_RATIO.mdx +3 -0
- package/api-docs/variables/MONO_THRESHOLD.mdx +6 -0
- package/api-docs/variables/PLAY_VIDEO_TIMEOUT.mdx +3 -0
- package/api-docs/variables/PROCESSING_HEIGHT.mdx +3 -0
- package/api-docs/variables/PROCESSING_WIDTH.mdx +3 -0
- package/api-docs/variables/PROCESS_STATUS.mdx +22 -0
- package/api-docs/variables/RENDERING_EVENTS.mdx +14 -0
- package/api-docs/variables/RENDER_BACKEND.mdx +10 -0
- package/api-docs/variables/RENDER_EFFECT.mdx +11 -0
- package/api-docs/variables/SEGMENTATION_MODELS.mdx +10 -0
- package/api-docs/variables/SILENT_THRESHOLD.mdx +6 -0
- package/api-docs/variables/VOICE_PROBABILITY_THRESHOLD.mdx +5 -0
- package/api-docs/variables/calculateMaxBlurPass.mdx +13 -0
- package/api-docs/variables/clamping.mdx +26 -0
- package/api-docs/variables/createLazyProps.mdx +19 -0
- package/api-docs/variables/createObjectUpdater.mdx +31 -0
- package/api-docs/variables/createRemoteImageBitmap.mdx +21 -0
- package/api-docs/variables/getErrorMessage.mdx +13 -0
- package/api-docs/variables/handleWebGLContextLoss.mdx +21 -0
- package/api-docs/variables/isRenderingEvents.mdx +13 -0
- package/api-docs/variables/isSegmentationModel.mdx +13 -0
- package/api-docs/variables/resize.mdx +30 -0
- package/api-docs/variables/toRenderingEvents.mdx +13 -0
- package/api-docs/variables/urls.mdx +10 -0
- package/package.json +14 -9
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
## Properties
|
|
2
|
+
|
|
3
|
+
| Property | Type |
|
|
4
|
+
| ------ | ------ |
|
|
5
|
+
| <a id="type"></a> `type` | \| `"Error"` \| `"ContextCreationError"` \| `"ContextLost"` \| `"ContextRestored"` \| `"ProcessorRestarted"` \| `"SamplingError"` |
|
|
6
|
+
| <a id="message"></a> `message?` | `string` |
|
|
7
|
+
| <a id="frame"></a> `frame?` | [`VideoFrameLike`](VideoFrameLike.mdx) |
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## Extends
|
|
2
|
+
|
|
3
|
+
- [`SegmenterOptions`](SegmenterOptions.mdx)
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
| Property | Type | Inherited from |
|
|
8
|
+
| ------ | ------ | ------ |
|
|
9
|
+
| <a id="renderoptions"></a> `renderOptions?` | [`RendererOptions`](RendererOptions.mdx) | - |
|
|
10
|
+
| <a id="backgroundimage"></a> `backgroundImage?` | [`ImageRecord`](ImageRecord.mdx) | - |
|
|
11
|
+
| <a id="restart"></a> `restart?` | `boolean` | - |
|
|
12
|
+
| <a id="basepath"></a> `basePath?` | `string` | [`SegmenterOptions`](SegmenterOptions.mdx).[`basePath`](SegmenterOptions.mdx#basepath) |
|
|
13
|
+
| <a id="output"></a> `output?` | `OffscreenCanvas` \| `null` | [`SegmenterOptions`](SegmenterOptions.mdx).[`output`](SegmenterOptions.mdx#output) |
|
|
14
|
+
| <a id="processingwidth"></a> `processingWidth?` | `number` | [`SegmenterOptions`](SegmenterOptions.mdx).[`processingWidth`](SegmenterOptions.mdx#processingwidth) |
|
|
15
|
+
| <a id="processingheight"></a> `processingHeight?` | `number` | [`SegmenterOptions`](SegmenterOptions.mdx).[`processingHeight`](SegmenterOptions.mdx#processingheight) |
|
|
16
|
+
| <a id="imagesegmenteroptions"></a> `imageSegmenterOptions?` | [`ImageSegmenterOptions`](ImageSegmenterOptions.mdx) | [`SegmenterOptions`](SegmenterOptions.mdx).[`imageSegmenterOptions`](SegmenterOptions.mdx#imagesegmenteroptions) |
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
## Properties
|
|
2
|
+
|
|
3
|
+
| Property | Type |
|
|
4
|
+
| ------ | ------ |
|
|
5
|
+
| <a id="contextlost"></a> `contextLost` | (`message`) => `void` |
|
|
6
|
+
| <a id="contextrestored"></a> `contextRestored` | (`message`) => `void` |
|
|
7
|
+
| <a id="contextcreationerror"></a> `contextCreationError` | (`message`) => `void` |
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
## Methods
|
|
2
|
+
|
|
3
|
+
### init()
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
init(options?): void | Promise<void>;
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
#### Parameters
|
|
10
|
+
|
|
11
|
+
| Parameter | Type |
|
|
12
|
+
| ------ | ------ |
|
|
13
|
+
| `options?` | `Options` |
|
|
14
|
+
|
|
15
|
+
#### Returns
|
|
16
|
+
|
|
17
|
+
`void` \| `Promise`\<`void`\>
|
|
18
|
+
|
|
19
|
+
***
|
|
20
|
+
|
|
21
|
+
### render()
|
|
22
|
+
|
|
23
|
+
```ts
|
|
24
|
+
render(
|
|
25
|
+
mask,
|
|
26
|
+
frame,
|
|
27
|
+
options): void;
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
#### Parameters
|
|
31
|
+
|
|
32
|
+
| Parameter | Type |
|
|
33
|
+
| ------ | ------ |
|
|
34
|
+
| `mask` | `ImageBitmap` |
|
|
35
|
+
| `frame` | [`VideoFrameLike`](VideoFrameLike.mdx) |
|
|
36
|
+
| `options` | `Options` |
|
|
37
|
+
|
|
38
|
+
#### Returns
|
|
39
|
+
|
|
40
|
+
`void`
|
|
41
|
+
|
|
42
|
+
***
|
|
43
|
+
|
|
44
|
+
### isContextLost()
|
|
45
|
+
|
|
46
|
+
```ts
|
|
47
|
+
isContextLost(): boolean;
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
#### Returns
|
|
51
|
+
|
|
52
|
+
`boolean`
|
|
53
|
+
|
|
54
|
+
***
|
|
55
|
+
|
|
56
|
+
### release()
|
|
57
|
+
|
|
58
|
+
```ts
|
|
59
|
+
release(): void;
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
#### Returns
|
|
63
|
+
|
|
64
|
+
`void`
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
## Extended by
|
|
2
|
+
|
|
3
|
+
- [`SegmentationParams`](SegmentationParams.mdx)
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
| Property | Type | Default value | Description |
|
|
8
|
+
| ------ | ------ | ------ | ------ |
|
|
9
|
+
| <a id="backgroundimageurl"></a> `backgroundImageUrl` | `string` | `undefined` | - |
|
|
10
|
+
| <a id="foregroundthreshold"></a> `foregroundThreshold` | `number` | `undefined` | Confident score threshold to be considered as the foreground between 0 and 1 |
|
|
11
|
+
| <a id="backgroundbluramount"></a> `backgroundBlurAmount` | `number` | `undefined` | Between 0 and 10 |
|
|
12
|
+
| <a id="edgebluramount"></a> `edgeBlurAmount` | `number` | `3` | Range in between 0 and 20 |
|
|
13
|
+
| <a id="maskcombineratio"></a> `maskCombineRatio` | `number` | `undefined` | The ratio used for smoothing the mask between 0 and 1 |
|
|
14
|
+
| <a id="effects"></a> `effects` | `"blur"` \| `"none"` \| `"overlay"` | `undefined` | Effects |
|
|
15
|
+
| <a id="backend"></a> `backend` | `"webgl"` \| `"webgpu"` | `undefined` | Backend to render background effects |
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
## Type Parameters
|
|
2
|
+
|
|
3
|
+
| Type Parameter |
|
|
4
|
+
| ------ |
|
|
5
|
+
| `P` *extends* `unknown`[] |
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
| Property | Type |
|
|
10
|
+
| ------ | ------ |
|
|
11
|
+
| <a id="framerate"></a> `frameRate` | `number` |
|
|
12
|
+
|
|
13
|
+
## Methods
|
|
14
|
+
|
|
15
|
+
### start()
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
start(...params): Promise<void>;
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
#### Parameters
|
|
22
|
+
|
|
23
|
+
| Parameter | Type |
|
|
24
|
+
| ------ | ------ |
|
|
25
|
+
| ...`params` | `P` |
|
|
26
|
+
|
|
27
|
+
#### Returns
|
|
28
|
+
|
|
29
|
+
`Promise`\<`void`\>
|
|
30
|
+
|
|
31
|
+
***
|
|
32
|
+
|
|
33
|
+
### stop()
|
|
34
|
+
|
|
35
|
+
```ts
|
|
36
|
+
stop(): void;
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
#### Returns
|
|
40
|
+
|
|
41
|
+
`void`
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Segmentation model asset that can be used to load a segmentation model.
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Property | Type |
|
|
6
|
+
| ------ | ------ |
|
|
7
|
+
| <a id="path"></a> `path` | `string` |
|
|
8
|
+
| <a id="modelname"></a> `modelName` | [`SegmentationModel`](../type-aliases/SegmentationModel.mdx) |
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
## Extends
|
|
2
|
+
|
|
3
|
+
- [`RendererOptions`](RendererOptions.mdx)
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
| Property | Type | Default value | Description | Inherited from |
|
|
8
|
+
| ------ | ------ | ------ | ------ | ------ |
|
|
9
|
+
| <a id="backgroundimageurl"></a> `backgroundImageUrl` | `string` | `undefined` | - | [`RendererOptions`](RendererOptions.mdx).[`backgroundImageUrl`](RendererOptions.mdx#backgroundimageurl) |
|
|
10
|
+
| <a id="foregroundthreshold"></a> `foregroundThreshold` | `number` | `undefined` | Confident score threshold to be considered as the foreground between 0 and 1 | [`RendererOptions`](RendererOptions.mdx).[`foregroundThreshold`](RendererOptions.mdx#foregroundthreshold) |
|
|
11
|
+
| <a id="backgroundbluramount"></a> `backgroundBlurAmount` | `number` | `undefined` | Between 0 and 10 | [`RendererOptions`](RendererOptions.mdx).[`backgroundBlurAmount`](RendererOptions.mdx#backgroundbluramount) |
|
|
12
|
+
| <a id="edgebluramount"></a> `edgeBlurAmount` | `number` | `3` | Range in between 0 and 20 | [`RendererOptions`](RendererOptions.mdx).[`edgeBlurAmount`](RendererOptions.mdx#edgebluramount) |
|
|
13
|
+
| <a id="maskcombineratio"></a> `maskCombineRatio` | `number` | `undefined` | The ratio used for smoothing the mask between 0 and 1 | [`RendererOptions`](RendererOptions.mdx).[`maskCombineRatio`](RendererOptions.mdx#maskcombineratio) |
|
|
14
|
+
| <a id="effects"></a> `effects` | `"blur"` \| `"none"` \| `"overlay"` | `undefined` | Effects | [`RendererOptions`](RendererOptions.mdx).[`effects`](RendererOptions.mdx#effects) |
|
|
15
|
+
| <a id="backend"></a> `backend` | `"webgl"` \| `"webgpu"` | `undefined` | Backend to render background effects | [`RendererOptions`](RendererOptions.mdx).[`backend`](RendererOptions.mdx#backend) |
|
|
16
|
+
| <a id="segmenter"></a> `segmenter` | [`Segmenter`](Segmenter.mdx) | `undefined` | - | - |
|
|
17
|
+
| <a id="width"></a> `width` | `number` | `undefined` | - | - |
|
|
18
|
+
| <a id="height"></a> `height` | `number` | `undefined` | - | - |
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
## Extends
|
|
2
|
+
|
|
3
|
+
- [`Process`](Process.mdx)
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
| Property | Type | Inherited from |
|
|
8
|
+
| ------ | ------ | ------ |
|
|
9
|
+
| <a id="status"></a> `status` | \| `"closed"` \| `"closing"` \| `"Error"` \| `"destroyed"` \| `"destroying"` \| `"idle"` \| `"new"` \| `"opened"` \| `"opening"` \| `"processing"` \| `"updated"` \| `"updating"` | [`Process`](Process.mdx).[`status`](Process.mdx#status) |
|
|
10
|
+
| <a id="modelasset"></a> `modelAsset` | [`SegmentationModelAsset`](SegmentationModelAsset.mdx) | - |
|
|
11
|
+
| <a id="backgroundimage"></a> `backgroundImage?` | [`BackgroundImage`](BackgroundImage.mdx) | - |
|
|
12
|
+
|
|
13
|
+
## Methods
|
|
14
|
+
|
|
15
|
+
### close()
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
close(): void;
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
#### Returns
|
|
22
|
+
|
|
23
|
+
`void`
|
|
24
|
+
|
|
25
|
+
#### Inherited from
|
|
26
|
+
|
|
27
|
+
[`Process`](Process.mdx).[`close`](Process.mdx#close)
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### destroy()
|
|
32
|
+
|
|
33
|
+
```ts
|
|
34
|
+
destroy(): Promise<void>;
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
#### Returns
|
|
38
|
+
|
|
39
|
+
`Promise`\<`void`\>
|
|
40
|
+
|
|
41
|
+
#### Inherited from
|
|
42
|
+
|
|
43
|
+
[`Process`](Process.mdx).[`destroy`](Process.mdx#destroy)
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
### open()
|
|
48
|
+
|
|
49
|
+
```ts
|
|
50
|
+
open(options?): Promise<void>;
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
#### Parameters
|
|
54
|
+
|
|
55
|
+
| Parameter | Type |
|
|
56
|
+
| ------ | ------ |
|
|
57
|
+
| `options?` | [`ProcessorOptions`](ProcessorOptions.mdx) |
|
|
58
|
+
|
|
59
|
+
#### Returns
|
|
60
|
+
|
|
61
|
+
`Promise`\<`void`\>
|
|
62
|
+
|
|
63
|
+
#### Overrides
|
|
64
|
+
|
|
65
|
+
[`Process`](Process.mdx).[`open`](Process.mdx#open)
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### update()
|
|
70
|
+
|
|
71
|
+
```ts
|
|
72
|
+
update(options): Promise<void>;
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
#### Parameters
|
|
76
|
+
|
|
77
|
+
| Parameter | Type |
|
|
78
|
+
| ------ | ------ |
|
|
79
|
+
| `options` | [`ProcessorOptions`](ProcessorOptions.mdx) |
|
|
80
|
+
|
|
81
|
+
#### Returns
|
|
82
|
+
|
|
83
|
+
`Promise`\<`void`\>
|
|
84
|
+
|
|
85
|
+
***
|
|
86
|
+
|
|
87
|
+
### process()
|
|
88
|
+
|
|
89
|
+
```ts
|
|
90
|
+
process(input, options?): Promise<VideoFrameLike | undefined>;
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
#### Parameters
|
|
94
|
+
|
|
95
|
+
| Parameter | Type |
|
|
96
|
+
| ------ | ------ |
|
|
97
|
+
| `input` | [`VideoFrameLike`](VideoFrameLike.mdx) |
|
|
98
|
+
| `options?` | [`RendererOptions`](RendererOptions.mdx) |
|
|
99
|
+
|
|
100
|
+
#### Returns
|
|
101
|
+
|
|
102
|
+
`Promise`\<[`VideoFrameLike`](VideoFrameLike.mdx) \| `undefined`\>
|
|
103
|
+
|
|
104
|
+
***
|
|
105
|
+
|
|
106
|
+
### subscribe()
|
|
107
|
+
|
|
108
|
+
```ts
|
|
109
|
+
subscribe(event, callback): Unsubscribe;
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
#### Parameters
|
|
113
|
+
|
|
114
|
+
| Parameter | Type |
|
|
115
|
+
| ------ | ------ |
|
|
116
|
+
| `event` | \| `"Error"` \| `"ContextCreationError"` \| `"ContextLost"` \| `"ContextRestored"` \| `"ProcessorRestarted"` \| `"SamplingError"` |
|
|
117
|
+
| `callback` | `Callback`\<`void`\> |
|
|
118
|
+
|
|
119
|
+
#### Returns
|
|
120
|
+
|
|
121
|
+
`Unsubscribe`
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
## Extended by
|
|
2
|
+
|
|
3
|
+
- [`ProcessorOptions`](ProcessorOptions.mdx)
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
| Property | Type |
|
|
8
|
+
| ------ | ------ |
|
|
9
|
+
| <a id="basepath"></a> `basePath?` | `string` |
|
|
10
|
+
| <a id="output"></a> `output?` | `OffscreenCanvas` \| `null` |
|
|
11
|
+
| <a id="processingwidth"></a> `processingWidth?` | `number` |
|
|
12
|
+
| <a id="processingheight"></a> `processingHeight?` | `number` |
|
|
13
|
+
| <a id="imagesegmenteroptions"></a> `imageSegmenterOptions?` | [`ImageSegmenterOptions`](ImageSegmenterOptions.mdx) |
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Stats options for calculating the audio stats
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Property | Type | Default value | Description |
|
|
6
|
+
| ------ | ------ | ------ | ------ |
|
|
7
|
+
| <a id="samples"></a> `samples` | [`AudioSamples`](../type-aliases/AudioSamples.mdx) | `undefined` | Used for the analysis |
|
|
8
|
+
| <a id="basestats"></a> `baseStats?` | [`AudioStats`](AudioStats.mdx) | `undefined` | this will be used for accumulation |
|
|
9
|
+
| <a id="clipthreshold"></a> `clipThreshold?` | `number` | `1.0` as assuming it is float value | Threshold for clipping |
|
|
10
|
+
| <a id="silentthreshold"></a> `silentThreshold?` | `number` | `1.0 / 32767` | Threshold for silent |
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
## Extends
|
|
2
|
+
|
|
3
|
+
- `Transformer`\<`I`, `O`\>
|
|
4
|
+
|
|
5
|
+
## Type Parameters
|
|
6
|
+
|
|
7
|
+
| Type Parameter |
|
|
8
|
+
| ------ |
|
|
9
|
+
| `I` |
|
|
10
|
+
| `O` |
|
|
11
|
+
|
|
12
|
+
## Properties
|
|
13
|
+
|
|
14
|
+
| Property | Type | Inherited from |
|
|
15
|
+
| ------ | ------ | ------ |
|
|
16
|
+
| <a id="flush"></a> `flush?` | `TransformerFlushCallback`\<`O`\> | `Transformer.flush` |
|
|
17
|
+
| <a id="readabletype"></a> `readableType?` | `undefined` | `Transformer.readableType` |
|
|
18
|
+
| <a id="start"></a> `start?` | `TransformerStartCallback`\<`O`\> | `Transformer.start` |
|
|
19
|
+
| <a id="transform"></a> `transform?` | `TransformerTransformCallback`\<`I`, `O`\> | `Transformer.transform` |
|
|
20
|
+
| <a id="writabletype"></a> `writableType?` | `undefined` | `Transformer.writableType` |
|
|
21
|
+
|
|
22
|
+
## Methods
|
|
23
|
+
|
|
24
|
+
### init()
|
|
25
|
+
|
|
26
|
+
```ts
|
|
27
|
+
init(options?): Promise<void>;
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
#### Parameters
|
|
31
|
+
|
|
32
|
+
| Parameter | Type |
|
|
33
|
+
| ------ | ------ |
|
|
34
|
+
| `options?` | [`ProcessorOptions`](ProcessorOptions.mdx) |
|
|
35
|
+
|
|
36
|
+
#### Returns
|
|
37
|
+
|
|
38
|
+
`Promise`\<`void`\>
|
|
39
|
+
|
|
40
|
+
***
|
|
41
|
+
|
|
42
|
+
### close()
|
|
43
|
+
|
|
44
|
+
```ts
|
|
45
|
+
close(): void;
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
#### Returns
|
|
49
|
+
|
|
50
|
+
`void`
|
|
51
|
+
|
|
52
|
+
***
|
|
53
|
+
|
|
54
|
+
### destroy()
|
|
55
|
+
|
|
56
|
+
```ts
|
|
57
|
+
destroy(): Promise<void>;
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
#### Returns
|
|
61
|
+
|
|
62
|
+
`Promise`\<`void`\>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
## Properties
|
|
2
|
+
|
|
3
|
+
| Property | Type |
|
|
4
|
+
| ------ | ------ |
|
|
5
|
+
| <a id="frame"></a> `frame` | `ImageBitmap` \| `VideoFrame` |
|
|
6
|
+
| <a id="timestamp"></a> `timestamp` | `number` |
|
|
7
|
+
| <a id="width"></a> `width` | `number` |
|
|
8
|
+
| <a id="height"></a> `height` | `number` |
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
## Properties
|
|
2
|
+
|
|
3
|
+
| Property | Type | Description |
|
|
4
|
+
| ------ | ------ | ------ |
|
|
5
|
+
| <a id="process"></a> `process` | (`source`) => `Promise`\<`MediaStream`\> | Process the video and return a MediaStream |
|
|
6
|
+
| <a id="destroy"></a> `destroy` | () => `Promise`\<`void`\> | Destroy the segmentation wasm instance |
|
|
7
|
+
|
|
8
|
+
## Methods
|
|
9
|
+
|
|
10
|
+
### open()
|
|
11
|
+
|
|
12
|
+
```ts
|
|
13
|
+
open(options?): Promise<void>;
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
#### Parameters
|
|
17
|
+
|
|
18
|
+
| Parameter | Type |
|
|
19
|
+
| ------ | ------ |
|
|
20
|
+
| `options?` | [`ProcessorOptions`](ProcessorOptions.mdx) |
|
|
21
|
+
|
|
22
|
+
#### Returns
|
|
23
|
+
|
|
24
|
+
`Promise`\<`void`\>
|
|
25
|
+
|
|
26
|
+
***
|
|
27
|
+
|
|
28
|
+
### close()
|
|
29
|
+
|
|
30
|
+
```ts
|
|
31
|
+
close(): void;
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Stop the process of video segmentation
|
|
35
|
+
|
|
36
|
+
#### Returns
|
|
37
|
+
|
|
38
|
+
`void`
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## Extended by
|
|
2
|
+
|
|
3
|
+
- [`AnalyzerSubscribableOptions`](AnalyzerSubscribableOptions.mdx)
|
|
4
|
+
|
|
5
|
+
## Type Parameters
|
|
6
|
+
|
|
7
|
+
| Type Parameter |
|
|
8
|
+
| ------ |
|
|
9
|
+
| `T` |
|
|
10
|
+
|
|
11
|
+
## Properties
|
|
12
|
+
|
|
13
|
+
| Property | Type |
|
|
14
|
+
| ------ | ------ |
|
|
15
|
+
| <a id="messagehandler"></a> `messageHandler` | (`message`) => `void` |
|
|
16
|
+
| <a id="errorhandler"></a> `errorHandler?` | (`event`) => `void` |
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
```ts
|
|
2
|
+
type AudioBufferFloats = Float32Array;
|
|
3
|
+
```
|
|
4
|
+
|
|
5
|
+
Same as [AudioBuffer](https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer)
|
|
6
|
+
Or the return from [AnalyserNode.getFloatFrequencyData()](https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatFrequencyData)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
```ts
|
|
2
|
+
type AudioSamples =
|
|
3
|
+
| number[]
|
|
4
|
+
| AudioBufferFloats
|
|
5
|
+
| AudioBufferBytes;
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
Audio samples from each channel, either in float or bytes form
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
| | | Sample Frame 1 | Sample Frame 2 | Sample Frame 3 |
|
|
14
|
+
| Input | Channel L: | sample 1 | sample 2 | sample 3 |
|
|
15
|
+
| | Channel R: | sample 1 | sample 2 | sample 3 |
|
|
16
|
+
```
|
|
17
|
+
We can get 2 `AudioSamples` from "Channel L" and "Channel R" from "Input"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
```ts
|
|
2
|
+
type Callback<R, T> = (...params) => R;
|
|
3
|
+
```
|
|
4
|
+
|
|
5
|
+
## Type Parameters
|
|
6
|
+
|
|
7
|
+
| Type Parameter |
|
|
8
|
+
| ------ |
|
|
9
|
+
| `R` |
|
|
10
|
+
| `T` *extends* `unknown`[] |
|
|
11
|
+
|
|
12
|
+
## Parameters
|
|
13
|
+
|
|
14
|
+
| Parameter | Type |
|
|
15
|
+
| ------ | ------ |
|
|
16
|
+
| ...`params` | `T` |
|
|
17
|
+
|
|
18
|
+
## Returns
|
|
19
|
+
|
|
20
|
+
`R`
|