@nonstrict/recordkit 0.57.0 → 0.59.0
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/bin/README.md +1 -1
- package/bin/recordkit-rpc +0 -0
- package/out/Recorder.d.ts +3 -0
- package/package.json +1 -1
- package/src/Recorder.ts +3 -0
package/bin/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# recordkit-rpc 0.
|
|
1
|
+
# recordkit-rpc 0.59.0
|
package/bin/recordkit-rpc
CHANGED
|
Binary file
|
package/out/Recorder.d.ts
CHANGED
|
@@ -37,6 +37,9 @@ export interface WebcamSchema {
|
|
|
37
37
|
filename?: string;
|
|
38
38
|
camera: Camera | string;
|
|
39
39
|
microphone: Microphone | string;
|
|
40
|
+
preserveActiveCameraConfiguration?: boolean;
|
|
41
|
+
leftAudioChannelOnly?: boolean;
|
|
42
|
+
audioDelay?: number;
|
|
40
43
|
}
|
|
41
44
|
/**
|
|
42
45
|
* Creates a recorder item for recording a single display. Output is stored in a RecordKit bundle.
|
package/package.json
CHANGED
package/src/Recorder.ts
CHANGED