cmd-control-client-lib 3.0.203 → 3.0.204
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.
|
@@ -8,18 +8,21 @@ export declare enum EnumStreamQuality {
|
|
|
8
8
|
BAD = "BAD"
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* Update
|
|
12
|
-
* Server inform you about the state of
|
|
11
|
+
* Update incoming stream state.
|
|
12
|
+
* Server inform you about the state of incoming video audio stream.
|
|
13
13
|
*/
|
|
14
14
|
export declare class CMDC_STREAMSTATE implements ICOMMAND {
|
|
15
15
|
action: ACTION;
|
|
16
16
|
params: {
|
|
17
|
-
|
|
17
|
+
startTime?: string;
|
|
18
|
+
bandWith?: string;
|
|
18
19
|
quality?: EnumStreamQuality;
|
|
19
20
|
videoWidth?: string;
|
|
20
|
-
|
|
21
|
+
videoHeight?: string;
|
|
21
22
|
videoFps?: string;
|
|
22
23
|
hasAudio?: EnumBooleanStringifiedExtended;
|
|
23
24
|
audioMuted?: EnumBooleanStringifiedExtended;
|
|
25
|
+
bandwith?: string;
|
|
26
|
+
videoHeigth?: string;
|
|
24
27
|
};
|
|
25
28
|
}
|