tencentcloud-sdk-nodejs-intl-en 3.0.1041 → 3.0.1042
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/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1042";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -1348,6 +1348,18 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
1348
1348
|
*/
|
|
1349
1349
|
this.VideoEnhanceSettings = null;
|
|
1350
1350
|
|
|
1351
|
+
/**
|
|
1352
|
+
* Key frame interval, 300-10000, optional.
|
|
1353
|
+
* @type {number || null}
|
|
1354
|
+
*/
|
|
1355
|
+
this.GopSize = null;
|
|
1356
|
+
|
|
1357
|
+
/**
|
|
1358
|
+
* Keyframe units, only support MILLISECONDS (milliseconds).
|
|
1359
|
+
* @type {string || null}
|
|
1360
|
+
*/
|
|
1361
|
+
this.GopSizeUnits = null;
|
|
1362
|
+
|
|
1351
1363
|
}
|
|
1352
1364
|
|
|
1353
1365
|
/**
|
|
@@ -1425,6 +1437,8 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
1425
1437
|
this.VideoEnhanceSettings.push(obj);
|
|
1426
1438
|
}
|
|
1427
1439
|
}
|
|
1440
|
+
this.GopSize = 'GopSize' in params ? params.GopSize : null;
|
|
1441
|
+
this.GopSizeUnits = 'GopSizeUnits' in params ? params.GopSizeUnits : null;
|
|
1428
1442
|
|
|
1429
1443
|
}
|
|
1430
1444
|
}
|
|
@@ -6400,14 +6414,17 @@ class StreamLiveOutputGroupsInfo extends AbstractModel {
|
|
|
6400
6414
|
|
|
6401
6415
|
/**
|
|
6402
6416
|
* Output protocol
|
|
6403
|
-
Valid values: `HLS`, `DASH`, `HLS_ARCHIVE`,
|
|
6417
|
+
Valid values: `HLS`, `DASH`, `HLS_ARCHIVE`,
|
|
6418
|
+
`DASH_ARCHIVE`, `HLS_STREAM_PACKAGE`,
|
|
6419
|
+
`DASH_STREAM_PACKAGE`,
|
|
6420
|
+
`FRAME_CAPTURE`, `RTP`, `RTMP`, `M2TS`.
|
|
6404
6421
|
* @type {string || null}
|
|
6405
6422
|
*/
|
|
6406
6423
|
this.Type = null;
|
|
6407
6424
|
|
|
6408
6425
|
/**
|
|
6409
6426
|
* Output information
|
|
6410
|
-
If the type is RTMP or
|
|
6427
|
+
If the type is RTMP, RTP or FRAME_CAPTURE, only one output is allowed; if it is HLS or DASH, 1-10 outputs are allowed.
|
|
6411
6428
|
* @type {Array.<OutputInfo> || null}
|
|
6412
6429
|
*/
|
|
6413
6430
|
this.Outputs = null;
|