@camera.ui/sdk 0.0.16 → 0.0.18
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/dist/index.d.ts +6 -0
- package/dist/internal/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -110,6 +110,8 @@ interface CameraInputSettings {
|
|
|
110
110
|
hotMode: boolean;
|
|
111
111
|
/** Preload stream on startup */
|
|
112
112
|
preload: boolean;
|
|
113
|
+
/** Strip the audio track from this source (defaults to false) */
|
|
114
|
+
muted?: boolean;
|
|
113
115
|
/** User-provided stream URLs */
|
|
114
116
|
urls: string[];
|
|
115
117
|
/** Child source ID (for snapshot fallback) */
|
|
@@ -3820,6 +3822,8 @@ interface Fmp4SessionOptions {
|
|
|
3820
3822
|
width?: number;
|
|
3821
3823
|
/** Output height */
|
|
3822
3824
|
height?: number;
|
|
3825
|
+
/** Maximum video bitrate in bits per second (VBV cap, applied on transcode only) */
|
|
3826
|
+
bitrate?: number;
|
|
3823
3827
|
/** Additional encoder options */
|
|
3824
3828
|
encoderOptions?: Record<string, string | number | boolean | undefined | null>;
|
|
3825
3829
|
};
|
|
@@ -3876,6 +3880,8 @@ interface CameraInput {
|
|
|
3876
3880
|
hotMode: boolean;
|
|
3877
3881
|
/** Preload stream on startup */
|
|
3878
3882
|
preload: boolean;
|
|
3883
|
+
/** Strip the audio track from this source (defaults to false) */
|
|
3884
|
+
muted?: boolean;
|
|
3879
3885
|
/** Generated streaming URLs */
|
|
3880
3886
|
urls: StreamUrls;
|
|
3881
3887
|
/** Child source ID (for snapshot fallback) */
|
package/dist/internal/index.d.ts
CHANGED
|
@@ -608,6 +608,8 @@ interface CameraInputSettings {
|
|
|
608
608
|
hotMode: boolean;
|
|
609
609
|
/** Preload stream on startup */
|
|
610
610
|
preload: boolean;
|
|
611
|
+
/** Strip the audio track from this source (defaults to false) */
|
|
612
|
+
muted?: boolean;
|
|
611
613
|
/** User-provided stream URLs */
|
|
612
614
|
urls: string[];
|
|
613
615
|
/** Child source ID (for snapshot fallback) */
|