tencentcloud-sdk-nodejs-intl-en 3.0.1367 → 3.0.1369
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 +1 -1
- package/tencentcloud/cdb/v20170320/cdb_client.js +338 -138
- package/tencentcloud/cdb/v20170320/models.js +3697 -1474
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/cynosdb_client.js +853 -131
- package/tencentcloud/cynosdb/v20190107/models.js +20644 -11194
- package/tencentcloud/mdl/v20200326/mdl_client.js +3 -0
- package/tencentcloud/mdl/v20200326/models.js +416 -262
- package/tencentcloud/monitor/v20180724/models.js +199 -86
- package/tencentcloud/monitor/v20180724/monitor_client.js +4 -2
- package/tencentcloud/ocr/v20181119/models.js +234 -69
- package/tencentcloud/ocr/v20181119/ocr_client.js +17 -3
- package/tencentcloud/ssl/v20191205/ssl_client.js +1 -1
- package/tencentcloud/tdmq/v20200217/models.js +650 -181
- package/tencentcloud/tdmq/v20200217/tdmq_client.js +25 -8
|
@@ -45,7 +45,7 @@ class DeleteStreamLiveChannelResponse extends AbstractModel {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Video enhancement configuration
|
|
49
49
|
* @class
|
|
50
50
|
*/
|
|
51
51
|
class VideoEnhanceSetting extends AbstractModel {
|
|
@@ -53,7 +53,7 @@ class VideoEnhanceSetting extends AbstractModel {
|
|
|
53
53
|
super();
|
|
54
54
|
|
|
55
55
|
/**
|
|
56
|
-
* Video enhancement
|
|
56
|
+
* Video enhancement type. Option: "GameEnhance", "ColorEnhance", "Debur", "Comprehensive", "Denoising", "SR", "OutdoorSportsCompetitions", "IndoorSportsCompetitions", "ShowEnhance".
|
|
57
57
|
* @type {string || null}
|
|
58
58
|
*/
|
|
59
59
|
this.Type = null;
|
|
@@ -88,13 +88,13 @@ class AudioTrackInfo extends AbstractModel {
|
|
|
88
88
|
super();
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
* User input
|
|
91
|
+
* User input, limited to letters and digits, length not exceeding 20, non-repeating in the same channel.
|
|
92
92
|
* @type {string || null}
|
|
93
93
|
*/
|
|
94
94
|
this.TrackName = null;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
|
-
* Audio encoding format, only `AAC`
|
|
97
|
+
* Audio encoding format, can only be `AAC` or `PASSTHROUGH`. Default is AAC.
|
|
98
98
|
* @type {string || null}
|
|
99
99
|
*/
|
|
100
100
|
this.AudioCodec = null;
|
|
@@ -112,7 +112,7 @@ class AudioTrackInfo extends AbstractModel {
|
|
|
112
112
|
this.AudioSampleRate = null;
|
|
113
113
|
|
|
114
114
|
/**
|
|
115
|
-
* Only
|
|
115
|
+
* Input Only the value defined in AttachedInputs.$.AudioSelectors.$.audioPidSelection.pid.
|
|
116
116
|
* @type {string || null}
|
|
117
117
|
*/
|
|
118
118
|
this.AudioSelectorName = null;
|
|
@@ -124,7 +124,7 @@ class AudioTrackInfo extends AbstractModel {
|
|
|
124
124
|
this.AudioNormalization = null;
|
|
125
125
|
|
|
126
126
|
/**
|
|
127
|
-
*
|
|
127
|
+
* Additional audio mode and sound channel configuration.
|
|
128
128
|
* @type {AudioCodecDetail || null}
|
|
129
129
|
*/
|
|
130
130
|
this.AudioCodecDetails = null;
|
|
@@ -194,6 +194,72 @@ class CreateStreamLiveInputSecurityGroupResponse extends AbstractModel {
|
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @class
|
|
200
|
+
*/
|
|
201
|
+
class PipSetting extends AbstractModel {
|
|
202
|
+
constructor(){
|
|
203
|
+
super();
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @type {string || null}
|
|
208
|
+
*/
|
|
209
|
+
this.AudioSelection = null;
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @type {SourceLayout || null}
|
|
214
|
+
*/
|
|
215
|
+
this.LiveSourceLayout = null;
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
*
|
|
219
|
+
* @type {SourceLayout || null}
|
|
220
|
+
*/
|
|
221
|
+
this.AdSourceLayout = null;
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
*
|
|
225
|
+
* @type {string || null}
|
|
226
|
+
*/
|
|
227
|
+
this.BackgroundImgUrl = null;
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @type {string || null}
|
|
232
|
+
*/
|
|
233
|
+
this.AdSourceUrl = null;
|
|
234
|
+
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* @private
|
|
239
|
+
*/
|
|
240
|
+
deserialize(params) {
|
|
241
|
+
if (!params) {
|
|
242
|
+
return;
|
|
243
|
+
}
|
|
244
|
+
this.AudioSelection = 'AudioSelection' in params ? params.AudioSelection : null;
|
|
245
|
+
|
|
246
|
+
if (params.LiveSourceLayout) {
|
|
247
|
+
let obj = new SourceLayout();
|
|
248
|
+
obj.deserialize(params.LiveSourceLayout)
|
|
249
|
+
this.LiveSourceLayout = obj;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
if (params.AdSourceLayout) {
|
|
253
|
+
let obj = new SourceLayout();
|
|
254
|
+
obj.deserialize(params.AdSourceLayout)
|
|
255
|
+
this.AdSourceLayout = obj;
|
|
256
|
+
}
|
|
257
|
+
this.BackgroundImgUrl = 'BackgroundImgUrl' in params ? params.BackgroundImgUrl : null;
|
|
258
|
+
this.AdSourceUrl = 'AdSourceUrl' in params ? params.AdSourceUrl : null;
|
|
259
|
+
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
197
263
|
/**
|
|
198
264
|
* CreateWatermarkDetection request structure.
|
|
199
265
|
* @class
|
|
@@ -520,13 +586,13 @@ class AudioCodecDetail extends AbstractModel {
|
|
|
520
586
|
super();
|
|
521
587
|
|
|
522
588
|
/**
|
|
523
|
-
*
|
|
589
|
+
* Sound track configuration. Available values: MONO, STEREO, 5.1.
|
|
524
590
|
* @type {string || null}
|
|
525
591
|
*/
|
|
526
592
|
this.ChannelMode = null;
|
|
527
593
|
|
|
528
594
|
/**
|
|
529
|
-
* Level in aac
|
|
595
|
+
* Level in aac, available values: "LC", "HE-aac", "HE-AACV2".
|
|
530
596
|
* @type {string || null}
|
|
531
597
|
*/
|
|
532
598
|
this.Profile = null;
|
|
@@ -709,13 +775,13 @@ class SubtitleFontConf extends AbstractModel {
|
|
|
709
775
|
this.LineSpacing = null;
|
|
710
776
|
|
|
711
777
|
/**
|
|
712
|
-
*
|
|
778
|
+
* Margin.
|
|
713
779
|
* @type {number || null}
|
|
714
780
|
*/
|
|
715
781
|
this.Margins = null;
|
|
716
782
|
|
|
717
783
|
/**
|
|
718
|
-
*
|
|
784
|
+
* Number of rows.
|
|
719
785
|
* @type {number || null}
|
|
720
786
|
*/
|
|
721
787
|
this.Lines = null;
|
|
@@ -727,31 +793,31 @@ class SubtitleFontConf extends AbstractModel {
|
|
|
727
793
|
this.CharactersPerLine = null;
|
|
728
794
|
|
|
729
795
|
/**
|
|
730
|
-
* Original font
|
|
796
|
+
* Original font Heiti: simhei.ttf Song Typeface: simsun.ttc Huakang Diamond Black (Dynacw Diamond Black): hkjgh.ttf Helvetica: helvetica.ttf; Needs to be set in Source or Source+Target mode.
|
|
731
797
|
* @type {string || null}
|
|
732
798
|
*/
|
|
733
799
|
this.SourceTextFont = null;
|
|
734
800
|
|
|
735
801
|
/**
|
|
736
|
-
* Font color
|
|
802
|
+
* Font color, represented by 6 characters in hexadecimal RGB.
|
|
737
803
|
* @type {string || null}
|
|
738
804
|
*/
|
|
739
805
|
this.TextColor = null;
|
|
740
806
|
|
|
741
807
|
/**
|
|
742
|
-
*
|
|
808
|
+
* Background color, represented by 6 characters in hexadecimal RGB.
|
|
743
809
|
* @type {string || null}
|
|
744
810
|
*/
|
|
745
811
|
this.BackgroundColor = null;
|
|
746
812
|
|
|
747
813
|
/**
|
|
748
|
-
* Background
|
|
814
|
+
* Background opacity. A number from 0 to 100.
|
|
749
815
|
* @type {number || null}
|
|
750
816
|
*/
|
|
751
817
|
this.BackgroundAlpha = null;
|
|
752
818
|
|
|
753
819
|
/**
|
|
754
|
-
* Preview
|
|
820
|
+
* Preview the copywriting.
|
|
755
821
|
* @type {string || null}
|
|
756
822
|
*/
|
|
757
823
|
this.PreviewContent = null;
|
|
@@ -769,7 +835,7 @@ class SubtitleFontConf extends AbstractModel {
|
|
|
769
835
|
this.PreviewWindowWidth = null;
|
|
770
836
|
|
|
771
837
|
/**
|
|
772
|
-
*
|
|
838
|
+
* Font for the target language. The enumeration value is the same as SourceTextFont. Case-sensitive language support for fonts. TextColor needs to be set in Target or Source+Target mode.
|
|
773
839
|
* @type {string || null}
|
|
774
840
|
*/
|
|
775
841
|
this.TranslatedTextFont = null;
|
|
@@ -919,7 +985,7 @@ class InputStreamInfo extends AbstractModel {
|
|
|
919
985
|
}
|
|
920
986
|
|
|
921
987
|
/**
|
|
922
|
-
*
|
|
988
|
+
* Chart template.
|
|
923
989
|
* @class
|
|
924
990
|
*/
|
|
925
991
|
class FrameCaptureTemplate extends AbstractModel {
|
|
@@ -927,43 +993,43 @@ class FrameCaptureTemplate extends AbstractModel {
|
|
|
927
993
|
super();
|
|
928
994
|
|
|
929
995
|
/**
|
|
930
|
-
*
|
|
996
|
+
* Screenshot template name. Limited to uppercase and lowercase letters and digits. Length [1, 20].
|
|
931
997
|
* @type {string || null}
|
|
932
998
|
*/
|
|
933
999
|
this.Name = null;
|
|
934
1000
|
|
|
935
1001
|
/**
|
|
936
|
-
*
|
|
1002
|
+
* Screenshot width. Optional. The input range is [0, 3000] and must be a multiple of 2.
|
|
937
1003
|
* @type {number || null}
|
|
938
1004
|
*/
|
|
939
1005
|
this.Width = null;
|
|
940
1006
|
|
|
941
1007
|
/**
|
|
942
|
-
*
|
|
1008
|
+
* Screenshot height, optional, input range [0, 3000], must be a multiple of 2
|
|
943
1009
|
* @type {number || null}
|
|
944
1010
|
*/
|
|
945
1011
|
this.Height = null;
|
|
946
1012
|
|
|
947
1013
|
/**
|
|
948
|
-
*
|
|
1014
|
+
* Screenshot interval, an integer between 1 and 3600.
|
|
949
1015
|
* @type {number || null}
|
|
950
1016
|
*/
|
|
951
1017
|
this.CaptureInterval = null;
|
|
952
1018
|
|
|
953
1019
|
/**
|
|
954
|
-
*
|
|
1020
|
+
* Screenshot measurement unit, supports only SECONDS.
|
|
955
1021
|
* @type {string || null}
|
|
956
1022
|
*/
|
|
957
1023
|
this.CaptureIntervalUnits = null;
|
|
958
1024
|
|
|
959
1025
|
/**
|
|
960
|
-
*
|
|
1026
|
+
* Stretch behavior, supports [DEFAULT|STRETCH_TO_OUTPUT], default is DEFAULT.
|
|
961
1027
|
* @type {string || null}
|
|
962
1028
|
*/
|
|
963
1029
|
this.ScalingBehavior = null;
|
|
964
1030
|
|
|
965
1031
|
/**
|
|
966
|
-
*
|
|
1032
|
+
* Sharpening degree, an integer between 0 and 100.
|
|
967
1033
|
* @type {number || null}
|
|
968
1034
|
*/
|
|
969
1035
|
this.Sharpness = null;
|
|
@@ -997,7 +1063,8 @@ class PipelineInputSettingsInfo extends AbstractModel {
|
|
|
997
1063
|
super();
|
|
998
1064
|
|
|
999
1065
|
/**
|
|
1000
|
-
* Pipeline
|
|
1066
|
+
* Pipeline disaster recovery configuration. Value: PIPELINE_FAILOVER (mutual disaster recovery for channels if unable), PIPELINE_FILLING (channel fill automatically).
|
|
1067
|
+
Default value: PIPELINE_FAILOVER. If failover between channels fails, auto-execute PIPELINE_FILLING. Specific content is specified by InputLossBehavior.
|
|
1001
1068
|
* @type {string || null}
|
|
1002
1069
|
*/
|
|
1003
1070
|
this.FaultBehavior = null;
|
|
@@ -1076,9 +1143,8 @@ class TimedRecordSettings extends AbstractModel {
|
|
|
1076
1143
|
super();
|
|
1077
1144
|
|
|
1078
1145
|
/**
|
|
1079
|
-
* Whether to automatically
|
|
1080
|
-
If
|
|
1081
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
1146
|
+
* Whether to automatically clear ended recording tasks. Options: [CLOSE|OPEN]. Default is CLOSE.
|
|
1147
|
+
If enabled, the task will be cleared 7 days after completion.
|
|
1082
1148
|
* @type {string || null}
|
|
1083
1149
|
*/
|
|
1084
1150
|
this.AutoClear = null;
|
|
@@ -1262,7 +1328,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1262
1328
|
}
|
|
1263
1329
|
|
|
1264
1330
|
/**
|
|
1265
|
-
*
|
|
1331
|
+
* Input content identification configuration.
|
|
1266
1332
|
* @class
|
|
1267
1333
|
*/
|
|
1268
1334
|
class InputAnalysisInfo extends AbstractModel {
|
|
@@ -1270,7 +1336,7 @@ class InputAnalysisInfo extends AbstractModel {
|
|
|
1270
1336
|
super();
|
|
1271
1337
|
|
|
1272
1338
|
/**
|
|
1273
|
-
*
|
|
1339
|
+
* Highlights configuration.
|
|
1274
1340
|
* @type {HighlightInfo || null}
|
|
1275
1341
|
*/
|
|
1276
1342
|
this.HighlightSetting = null;
|
|
@@ -1321,19 +1387,19 @@ class AVTemplate extends AbstractModel {
|
|
|
1321
1387
|
this.Vcodec = null;
|
|
1322
1388
|
|
|
1323
1389
|
/**
|
|
1324
|
-
* Video width.
|
|
1390
|
+
* Video width. The input range is (0, 4096] and must be a multiple of 2. If left blank, it represents passthrough.
|
|
1325
1391
|
* @type {number || null}
|
|
1326
1392
|
*/
|
|
1327
1393
|
this.Width = null;
|
|
1328
1394
|
|
|
1329
1395
|
/**
|
|
1330
|
-
* Video height.
|
|
1396
|
+
* Video height. Input range is (0, 4096] and must be a multiple of 2. Leave empty to represent passthrough.
|
|
1331
1397
|
* @type {number || null}
|
|
1332
1398
|
*/
|
|
1333
1399
|
this.Height = null;
|
|
1334
1400
|
|
|
1335
1401
|
/**
|
|
1336
|
-
* Video frame rate.
|
|
1402
|
+
* Video frame rate. Valid when you select SPECIFIED_HZ for FrameRateType. Input range is [1, 240]. Leave blank to represent passthrough.
|
|
1337
1403
|
* @type {number || null}
|
|
1338
1404
|
*/
|
|
1339
1405
|
this.Fps = null;
|
|
@@ -1357,7 +1423,7 @@ class AVTemplate extends AbstractModel {
|
|
|
1357
1423
|
this.NeedAudio = null;
|
|
1358
1424
|
|
|
1359
1425
|
/**
|
|
1360
|
-
* Audio encoding format, only `AAC`
|
|
1426
|
+
* Audio encoding format, can only be `AAC` or `PASSTHROUGH`. Default is AAC.
|
|
1361
1427
|
* @type {string || null}
|
|
1362
1428
|
*/
|
|
1363
1429
|
this.Acodec = null;
|
|
@@ -1376,7 +1442,7 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
1376
1442
|
this.VideoBitrate = null;
|
|
1377
1443
|
|
|
1378
1444
|
/**
|
|
1379
|
-
* Bitrate control mode.
|
|
1445
|
+
* Bitrate control mode. Optional values: [CBR|ABR|VBR]. Default: ABR.
|
|
1380
1446
|
* @type {string || null}
|
|
1381
1447
|
*/
|
|
1382
1448
|
this.RateControlMode = null;
|
|
@@ -1430,31 +1496,31 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
1430
1496
|
this.AudioSampleRate = null;
|
|
1431
1497
|
|
|
1432
1498
|
/**
|
|
1433
|
-
* This field indicates how to specify the output video frame rate. If FOLLOW_SOURCE is selected, the output video frame rate
|
|
1499
|
+
* This field indicates how to specify the output video frame rate. If FOLLOW_SOURCE is selected, the output video frame rate is set to equal the frame rate of the first input video. If SPECIFIED_FRACTION is selected, the output video frame rate is determined by the fraction (frame rate numerator and frame rate denominator). If SPECIFIED_HZ is selected, the frame rate of the output video is confirmed by the HZ you input.
|
|
1434
1500
|
* @type {string || null}
|
|
1435
1501
|
*/
|
|
1436
1502
|
this.FrameRateType = null;
|
|
1437
1503
|
|
|
1438
1504
|
/**
|
|
1439
|
-
* Valid when
|
|
1505
|
+
* Valid when you select SPECIFIED_FRACTION as the FrameRateType. Set the output frame rate molecular.
|
|
1440
1506
|
* @type {number || null}
|
|
1441
1507
|
*/
|
|
1442
1508
|
this.FrameRateNumerator = null;
|
|
1443
1509
|
|
|
1444
1510
|
/**
|
|
1445
|
-
* Valid when
|
|
1511
|
+
* Valid when you select SPECIFIED_FRACTION for FrameRateType. Output frame rate denominator set.
|
|
1446
1512
|
* @type {number || null}
|
|
1447
1513
|
*/
|
|
1448
1514
|
this.FrameRateDenominator = null;
|
|
1449
1515
|
|
|
1450
1516
|
/**
|
|
1451
|
-
*
|
|
1517
|
+
* Number of B-frames 1-3.
|
|
1452
1518
|
* @type {number || null}
|
|
1453
1519
|
*/
|
|
1454
1520
|
this.BFramesNum = null;
|
|
1455
1521
|
|
|
1456
1522
|
/**
|
|
1457
|
-
*
|
|
1523
|
+
* Refer to the number of frames 1-16.
|
|
1458
1524
|
* @type {number || null}
|
|
1459
1525
|
*/
|
|
1460
1526
|
this.RefFramesNum = null;
|
|
@@ -1478,19 +1544,19 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
1478
1544
|
this.AudioCodecDetails = null;
|
|
1479
1545
|
|
|
1480
1546
|
/**
|
|
1481
|
-
* Whether to enable multiple audio tracks 0:
|
|
1547
|
+
* Whether to enable multiple audio tracks. 0: not required 1: required. Default value: 0.
|
|
1482
1548
|
* @type {number || null}
|
|
1483
1549
|
*/
|
|
1484
1550
|
this.MultiAudioTrackEnabled = null;
|
|
1485
1551
|
|
|
1486
1552
|
/**
|
|
1487
|
-
*
|
|
1553
|
+
* Limit on the number 0-20. Valid when MultiAudioTrackEnabled is enabled.
|
|
1488
1554
|
* @type {Array.<AudioTrackInfo> || null}
|
|
1489
1555
|
*/
|
|
1490
1556
|
this.AudioTracks = null;
|
|
1491
1557
|
|
|
1492
1558
|
/**
|
|
1493
|
-
*
|
|
1559
|
+
* Whether to enable video enhancement, 1: enable 0: disable.
|
|
1494
1560
|
* @type {number || null}
|
|
1495
1561
|
*/
|
|
1496
1562
|
this.VideoEnhanceEnabled = null;
|
|
@@ -1502,25 +1568,25 @@ Valid values: `6000`, `7000`, `8000`, `10000`, `12000`, `14000`, `16000`, `20000
|
|
|
1502
1568
|
this.VideoEnhanceSettings = null;
|
|
1503
1569
|
|
|
1504
1570
|
/**
|
|
1505
|
-
*
|
|
1571
|
+
* Keyframe interval, 300-10000, optional.
|
|
1506
1572
|
* @type {number || null}
|
|
1507
1573
|
*/
|
|
1508
1574
|
this.GopSize = null;
|
|
1509
1575
|
|
|
1510
1576
|
/**
|
|
1511
|
-
*
|
|
1577
|
+
* Key frame measurement unit currently only supports MILLISECONDS (ms).
|
|
1512
1578
|
* @type {string || null}
|
|
1513
1579
|
*/
|
|
1514
1580
|
this.GopSizeUnits = null;
|
|
1515
1581
|
|
|
1516
1582
|
/**
|
|
1517
|
-
*
|
|
1583
|
+
* Colorspace configuration.
|
|
1518
1584
|
* @type {ColorSpaceSetting || null}
|
|
1519
1585
|
*/
|
|
1520
1586
|
this.ColorSpaceSettings = null;
|
|
1521
1587
|
|
|
1522
1588
|
/**
|
|
1523
|
-
*
|
|
1589
|
+
* Traceable watermark.
|
|
1524
1590
|
* @type {Array.<string> || null}
|
|
1525
1591
|
*/
|
|
1526
1592
|
this.ForensicWatermarkIds = null;
|
|
@@ -1630,40 +1696,37 @@ class DestinationInfo extends AbstractModel {
|
|
|
1630
1696
|
this.OutputUrl = null;
|
|
1631
1697
|
|
|
1632
1698
|
/**
|
|
1633
|
-
* Authentication key
|
|
1634
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1699
|
+
* Authentication key, length limited to [1, 128].
|
|
1635
1700
|
* @type {string || null}
|
|
1636
1701
|
*/
|
|
1637
1702
|
this.AuthKey = null;
|
|
1638
1703
|
|
|
1639
1704
|
/**
|
|
1640
|
-
* Authentication username
|
|
1641
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1705
|
+
* Authentication username, length limited to [1, 128].
|
|
1642
1706
|
* @type {string || null}
|
|
1643
1707
|
*/
|
|
1644
1708
|
this.Username = null;
|
|
1645
1709
|
|
|
1646
1710
|
/**
|
|
1647
|
-
* Authentication password
|
|
1648
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1711
|
+
* Authentication password, length limited to [1, 128].
|
|
1649
1712
|
* @type {string || null}
|
|
1650
1713
|
*/
|
|
1651
1714
|
this.Password = null;
|
|
1652
1715
|
|
|
1653
1716
|
/**
|
|
1654
|
-
* The destination type
|
|
1717
|
+
* The destination type for relay. Available values: Standard, AWS_MediaPackageV1, AWS_MediaPackageV2. Default: Standard. AWS_AmazonS3 or COS is supported when FrameCapture group is selected.
|
|
1655
1718
|
* @type {string || null}
|
|
1656
1719
|
*/
|
|
1657
1720
|
this.DestinationType = null;
|
|
1658
1721
|
|
|
1659
1722
|
/**
|
|
1660
|
-
* Aws S3
|
|
1723
|
+
* Forward the Aws S3 address information.
|
|
1661
1724
|
* @type {AmazonS3Settings || null}
|
|
1662
1725
|
*/
|
|
1663
1726
|
this.AmazonS3Settings = null;
|
|
1664
1727
|
|
|
1665
1728
|
/**
|
|
1666
|
-
*
|
|
1729
|
+
* Forward COS address information.
|
|
1667
1730
|
* @type {CosSettings || null}
|
|
1668
1731
|
*/
|
|
1669
1732
|
this.CosSettings = null;
|
|
@@ -1699,7 +1762,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1699
1762
|
}
|
|
1700
1763
|
|
|
1701
1764
|
/**
|
|
1702
|
-
* Console
|
|
1765
|
+
* Console tag, documentation link: https://www.tencentcloud.com/document/product/651.?from_cn_redirect=1
|
|
1703
1766
|
* @class
|
|
1704
1767
|
*/
|
|
1705
1768
|
class Tag extends AbstractModel {
|
|
@@ -1707,19 +1770,19 @@ class Tag extends AbstractModel {
|
|
|
1707
1770
|
super();
|
|
1708
1771
|
|
|
1709
1772
|
/**
|
|
1710
|
-
* Tag key
|
|
1773
|
+
* Tag key. Refer to the tag document (https://www.tencentcloud.com/document/product/651/13354?from_cn_redirect=1) for limits.
|
|
1711
1774
|
* @type {string || null}
|
|
1712
1775
|
*/
|
|
1713
1776
|
this.TagKey = null;
|
|
1714
1777
|
|
|
1715
1778
|
/**
|
|
1716
|
-
* Tag value
|
|
1779
|
+
* Tag value. For reference, see the tag document at https://www.tencentcloud.com/document/product/651/13354.?from_cn_redirect=1
|
|
1717
1780
|
* @type {string || null}
|
|
1718
1781
|
*/
|
|
1719
1782
|
this.TagValue = null;
|
|
1720
1783
|
|
|
1721
1784
|
/**
|
|
1722
|
-
* Tag type, optional
|
|
1785
|
+
* Tag type, optional. See the tag document for reference (https://www.tencentcloud.com/document/product/651/35327?from_cn_redirect=1#Tag).
|
|
1723
1786
|
* @type {string || null}
|
|
1724
1787
|
*/
|
|
1725
1788
|
this.Category = null;
|
|
@@ -1768,6 +1831,48 @@ class DeleteStreamLiveInputRequest extends AbstractModel {
|
|
|
1768
1831
|
}
|
|
1769
1832
|
}
|
|
1770
1833
|
|
|
1834
|
+
/**
|
|
1835
|
+
* SourceLayout
|
|
1836
|
+
* @class
|
|
1837
|
+
*/
|
|
1838
|
+
class SourceLayout extends AbstractModel {
|
|
1839
|
+
constructor(){
|
|
1840
|
+
super();
|
|
1841
|
+
|
|
1842
|
+
/**
|
|
1843
|
+
*
|
|
1844
|
+
* @type {number || null}
|
|
1845
|
+
*/
|
|
1846
|
+
this.LeftOffset = null;
|
|
1847
|
+
|
|
1848
|
+
/**
|
|
1849
|
+
*
|
|
1850
|
+
* @type {number || null}
|
|
1851
|
+
*/
|
|
1852
|
+
this.RightOffset = null;
|
|
1853
|
+
|
|
1854
|
+
/**
|
|
1855
|
+
*
|
|
1856
|
+
* @type {number || null}
|
|
1857
|
+
*/
|
|
1858
|
+
this.BottomOffset = null;
|
|
1859
|
+
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
/**
|
|
1863
|
+
* @private
|
|
1864
|
+
*/
|
|
1865
|
+
deserialize(params) {
|
|
1866
|
+
if (!params) {
|
|
1867
|
+
return;
|
|
1868
|
+
}
|
|
1869
|
+
this.LeftOffset = 'LeftOffset' in params ? params.LeftOffset : null;
|
|
1870
|
+
this.RightOffset = 'RightOffset' in params ? params.RightOffset : null;
|
|
1871
|
+
this.BottomOffset = 'BottomOffset' in params ? params.BottomOffset : null;
|
|
1872
|
+
|
|
1873
|
+
}
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1771
1876
|
/**
|
|
1772
1877
|
* ModifyStreamLiveInputSecurityGroup response structure.
|
|
1773
1878
|
* @class
|
|
@@ -1797,7 +1902,7 @@ class ModifyStreamLiveInputSecurityGroupResponse extends AbstractModel {
|
|
|
1797
1902
|
}
|
|
1798
1903
|
|
|
1799
1904
|
/**
|
|
1800
|
-
* Amazon S3
|
|
1905
|
+
* Amazon S3 address configuration
|
|
1801
1906
|
* @class
|
|
1802
1907
|
*/
|
|
1803
1908
|
class AmazonS3Settings extends AbstractModel {
|
|
@@ -1805,19 +1910,19 @@ class AmazonS3Settings extends AbstractModel {
|
|
|
1805
1910
|
super();
|
|
1806
1911
|
|
|
1807
1912
|
/**
|
|
1808
|
-
* Access key ID of the S3 sub-
|
|
1913
|
+
* Access key ID of the S3 sub-user.
|
|
1809
1914
|
* @type {string || null}
|
|
1810
1915
|
*/
|
|
1811
1916
|
this.AccessKeyID = null;
|
|
1812
1917
|
|
|
1813
1918
|
/**
|
|
1814
|
-
* Secret access key of the S3 sub-
|
|
1919
|
+
* Secret access key of the S3 sub-user.
|
|
1815
1920
|
* @type {string || null}
|
|
1816
1921
|
*/
|
|
1817
1922
|
this.SecretAccessKey = null;
|
|
1818
1923
|
|
|
1819
1924
|
/**
|
|
1820
|
-
*
|
|
1925
|
+
* S3 region.
|
|
1821
1926
|
* @type {string || null}
|
|
1822
1927
|
*/
|
|
1823
1928
|
this.Region = null;
|
|
@@ -1829,25 +1934,25 @@ class AmazonS3Settings extends AbstractModel {
|
|
|
1829
1934
|
this.Bucket = null;
|
|
1830
1935
|
|
|
1831
1936
|
/**
|
|
1832
|
-
* File output path,
|
|
1937
|
+
* File output path, can be empty, starts and ends with / if not empty.
|
|
1833
1938
|
* @type {string || null}
|
|
1834
1939
|
*/
|
|
1835
1940
|
this.FilePath = null;
|
|
1836
1941
|
|
|
1837
1942
|
/**
|
|
1838
|
-
* User-defined name
|
|
1943
|
+
* User-defined name supports 1 to 32 characters consisting of digits, letters, underscores (_), and hyphens (-).
|
|
1839
1944
|
* @type {string || null}
|
|
1840
1945
|
*/
|
|
1841
1946
|
this.FileName = null;
|
|
1842
1947
|
|
|
1843
1948
|
/**
|
|
1844
|
-
* File suffix
|
|
1949
|
+
* File suffix only supports jpg.
|
|
1845
1950
|
* @type {string || null}
|
|
1846
1951
|
*/
|
|
1847
1952
|
this.FileExt = null;
|
|
1848
1953
|
|
|
1849
1954
|
/**
|
|
1850
|
-
* Support
|
|
1955
|
+
* Support [unix|utc0]. Default is unix.
|
|
1851
1956
|
* @type {string || null}
|
|
1852
1957
|
*/
|
|
1853
1958
|
this.TimeFormat = null;
|
|
@@ -2066,7 +2171,7 @@ class AudioSelectorInfo extends AbstractModel {
|
|
|
2066
2171
|
this.AudioPidSelection = null;
|
|
2067
2172
|
|
|
2068
2173
|
/**
|
|
2069
|
-
* Audio input type
|
|
2174
|
+
* Audio input type. Value range: 'PID_SELECTOR' | 'TRACK_SELECTOR'. Default value: PID_SELECTOR.
|
|
2070
2175
|
* @type {string || null}
|
|
2071
2176
|
*/
|
|
2072
2177
|
this.AudioSelectorType = null;
|
|
@@ -2161,21 +2266,19 @@ class TimeShiftSettingsInfo extends AbstractModel {
|
|
|
2161
2266
|
super();
|
|
2162
2267
|
|
|
2163
2268
|
/**
|
|
2164
|
-
* Whether to enable time shifting.
|
|
2165
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
2269
|
+
* Whether to enable time shifting. Option [OPEN|CLOSE].
|
|
2166
2270
|
* @type {string || null}
|
|
2167
2271
|
*/
|
|
2168
2272
|
this.State = null;
|
|
2169
2273
|
|
|
2170
2274
|
/**
|
|
2171
|
-
*
|
|
2172
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
2275
|
+
* Enable time-shift bound domain name.
|
|
2173
2276
|
* @type {string || null}
|
|
2174
2277
|
*/
|
|
2175
2278
|
this.PlayDomain = null;
|
|
2176
2279
|
|
|
2177
2280
|
/**
|
|
2178
|
-
*
|
|
2281
|
+
* The time when time-shift replay starts, in seconds, range [300, 1209600], default value 300.
|
|
2179
2282
|
* @type {number || null}
|
|
2180
2283
|
*/
|
|
2181
2284
|
this.StartoverWindow = null;
|
|
@@ -2205,61 +2308,61 @@ class WebVTTFontStyle extends AbstractModel {
|
|
|
2205
2308
|
super();
|
|
2206
2309
|
|
|
2207
2310
|
/**
|
|
2208
|
-
* Text color,
|
|
2311
|
+
* Text color, 6 hexadecimal characters in RGB (not required #).
|
|
2209
2312
|
* @type {string || null}
|
|
2210
2313
|
*/
|
|
2211
2314
|
this.TextColor = null;
|
|
2212
2315
|
|
|
2213
2316
|
/**
|
|
2214
|
-
* Background color,
|
|
2317
|
+
* Background color, 6 hexadecimal characters in RGB (not required #)
|
|
2215
2318
|
* @type {string || null}
|
|
2216
2319
|
*/
|
|
2217
2320
|
this.BackgroundColor = null;
|
|
2218
2321
|
|
|
2219
2322
|
/**
|
|
2220
|
-
* Background opacity parameter
|
|
2323
|
+
* Background opacity parameter. A number from 0 to 100. The default value is 0 (fully transparent).
|
|
2221
2324
|
* @type {number || null}
|
|
2222
2325
|
*/
|
|
2223
2326
|
this.BackgroundAlpha = null;
|
|
2224
2327
|
|
|
2225
2328
|
/**
|
|
2226
|
-
* Font size, in
|
|
2329
|
+
* Font size, in vh (1% of height), default value 0 means auto.
|
|
2227
2330
|
* @type {number || null}
|
|
2228
2331
|
*/
|
|
2229
2332
|
this.FontSize = null;
|
|
2230
2333
|
|
|
2231
2334
|
/**
|
|
2232
|
-
* The position of the text box, default value AUTO, can be empty; represents the percentage of video height
|
|
2335
|
+
* The position of the text box, default value AUTO, can be empty; it represents the percentage of video height and supports integers from 0 to 100.
|
|
2233
2336
|
* @type {string || null}
|
|
2234
2337
|
*/
|
|
2235
2338
|
this.Line = null;
|
|
2236
2339
|
|
|
2237
2340
|
/**
|
|
2238
|
-
* The alignment of the text box on the Line.
|
|
2341
|
+
* The alignment mode of the text box on the Line. Available values: START, CENTER, END. Default: START. Can be blank.
|
|
2239
2342
|
* @type {string || null}
|
|
2240
2343
|
*/
|
|
2241
2344
|
this.LineAlignment = null;
|
|
2242
2345
|
|
|
2243
2346
|
/**
|
|
2244
|
-
* The text box
|
|
2347
|
+
* The position of the text box in another direction is a percentage of the video width or height, defaults to AUTO, and can be empty.
|
|
2245
2348
|
* @type {string || null}
|
|
2246
2349
|
*/
|
|
2247
2350
|
this.Position = null;
|
|
2248
2351
|
|
|
2249
2352
|
/**
|
|
2250
|
-
* The alignment of the text box on
|
|
2353
|
+
* The alignment mode of the text box on Position. Available values: LINE_LEFT, LINE_RIGHT, CENTER, AUTO. Default value: AUTO. Can be empty.
|
|
2251
2354
|
* @type {string || null}
|
|
2252
2355
|
*/
|
|
2253
2356
|
this.PositionAlignment = null;
|
|
2254
2357
|
|
|
2255
2358
|
/**
|
|
2256
|
-
*
|
|
2359
|
+
* The size of the text box, a percentage of video width/height, value (0, 100], default AUTO, can be empty.
|
|
2257
2360
|
* @type {string || null}
|
|
2258
2361
|
*/
|
|
2259
2362
|
this.CueSize = null;
|
|
2260
2363
|
|
|
2261
2364
|
/**
|
|
2262
|
-
* Text alignment,
|
|
2365
|
+
* Text alignment mode, available values START, CENTER, END, LEFT, RIGHT; default value CENTER, can be empty.
|
|
2263
2366
|
* @type {string || null}
|
|
2264
2367
|
*/
|
|
2265
2368
|
this.TextAlignment = null;
|
|
@@ -2316,7 +2419,7 @@ class DescribeStreamLiveWatermarkRequest extends AbstractModel {
|
|
|
2316
2419
|
}
|
|
2317
2420
|
|
|
2318
2421
|
/**
|
|
2319
|
-
*
|
|
2422
|
+
* Subtitle selector.
|
|
2320
2423
|
* @class
|
|
2321
2424
|
*/
|
|
2322
2425
|
class CaptionSelector extends AbstractModel {
|
|
@@ -2324,13 +2427,13 @@ class CaptionSelector extends AbstractModel {
|
|
|
2324
2427
|
super();
|
|
2325
2428
|
|
|
2326
2429
|
/**
|
|
2327
|
-
*
|
|
2430
|
+
* Digits, uppercase and lowercase letters, underscore, length 1-32.
|
|
2328
2431
|
* @type {string || null}
|
|
2329
2432
|
*/
|
|
2330
2433
|
this.Name = null;
|
|
2331
2434
|
|
|
2332
2435
|
/**
|
|
2333
|
-
*
|
|
2436
|
+
* Supports only `SCTE-128`.
|
|
2334
2437
|
* @type {string || null}
|
|
2335
2438
|
*/
|
|
2336
2439
|
this.CaptionSourceType = null;
|
|
@@ -2359,50 +2462,45 @@ class DrmSettingsInfo extends AbstractModel {
|
|
|
2359
2462
|
super();
|
|
2360
2463
|
|
|
2361
2464
|
/**
|
|
2362
|
-
* Whether
|
|
2363
|
-
|
|
2465
|
+
* Whether DRM encryption is enabled. Option: CLOSE/OPEN. Default: CLOSE.
|
|
2466
|
+
Currently only support HLS/DASH/HLS_ARCHIVE/DASH_ARCHIVE/HLS_MEDIAPACKAGE/DASH_MEDIAPACKAGE.
|
|
2364
2467
|
* @type {string || null}
|
|
2365
2468
|
*/
|
|
2366
2469
|
this.State = null;
|
|
2367
2470
|
|
|
2368
2471
|
/**
|
|
2369
|
-
*
|
|
2370
|
-
|
|
2371
|
-
|
|
2472
|
+
* Optional [CustomDRMKeys|SDMCDRM], defaults to CustomDRMKeys.
|
|
2473
|
+
CustomDRMKeys refers to the custom encryption key.
|
|
2474
|
+
SDMCDRM refers to the DRM key management system using SMDC.
|
|
2372
2475
|
* @type {string || null}
|
|
2373
2476
|
*/
|
|
2374
2477
|
this.Scheme = null;
|
|
2375
2478
|
|
|
2376
2479
|
/**
|
|
2377
|
-
*
|
|
2378
|
-
|
|
2480
|
+
* Scheme is CustomDRMKeys, required, filled in by the user.
|
|
2481
|
+
Scheme is SDMCDRM, optional, defaults to ChannelId. The format supports digits, upper- and lower-case letters, hyphens, and underscores, with a length of [1, 36].
|
|
2379
2482
|
* @type {string || null}
|
|
2380
2483
|
*/
|
|
2381
2484
|
this.ContentId = null;
|
|
2382
2485
|
|
|
2383
2486
|
/**
|
|
2384
|
-
*
|
|
2385
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
2487
|
+
* Required when Scheme is CustomDRMKeys. The content is the key customized by users.
|
|
2386
2488
|
* @type {Array.<DrmKey> || null}
|
|
2387
2489
|
*/
|
|
2388
2490
|
this.Keys = null;
|
|
2389
2491
|
|
|
2390
2492
|
/**
|
|
2391
|
-
* SDMC key configuration
|
|
2392
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
2493
|
+
* SDMC key configuration information, used when Scheme is SDMCDRM.
|
|
2393
2494
|
* @type {SDMCSettingsInfo || null}
|
|
2394
2495
|
*/
|
|
2395
2496
|
this.SDMCSettings = null;
|
|
2396
2497
|
|
|
2397
2498
|
/**
|
|
2398
|
-
* Optional
|
|
2399
|
-
`FAIRPLAY
|
|
2400
|
-
|
|
2499
|
+
* Optional type:
|
|
2500
|
+
`FAIRPLAY` `WIDEVINE` `PLAYREADY` `AES128`
|
|
2401
2501
|
HLS-TS supports `FAIRPLAY` and `AES128`.
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
DASH supports `WIDEVINE`, `PLAYREADY`, and combinations of `PLAYREADY` and `WIDEVINE` (concatenated with commas, e.g., "PLAYREADY,WIDEVINE").
|
|
2502
|
+
HLS-FMP4 supports `FAIRPLAY`, `WIDEVINE`, `PLAYREADY`, `AES128`, and permutation and combination of two or three from `FAIRPLAY`, `WIDEVINE`, `PLAYREADY` (use commas to concatenate, such as "FAIRPLAY,WIDEVINE,PLAYREADY").
|
|
2503
|
+
DASH supports `WIDEVINE`, `PLAYREADY`, and the permutation and combination of `PLAYREADY` and `WIDEVINE` (use commas to concatenate, such as "PLAYREADY,WIDEVINE").
|
|
2406
2504
|
* @type {string || null}
|
|
2407
2505
|
*/
|
|
2408
2506
|
this.DrmType = null;
|
|
@@ -2722,7 +2820,7 @@ class CreateStreamLiveWatermarkRequest extends AbstractModel {
|
|
|
2722
2820
|
}
|
|
2723
2821
|
|
|
2724
2822
|
/**
|
|
2725
|
-
*
|
|
2823
|
+
* Colorspace configuration.
|
|
2726
2824
|
* @class
|
|
2727
2825
|
*/
|
|
2728
2826
|
class ColorSpaceSetting extends AbstractModel {
|
|
@@ -2730,7 +2828,7 @@ class ColorSpaceSetting extends AbstractModel {
|
|
|
2730
2828
|
super();
|
|
2731
2829
|
|
|
2732
2830
|
/**
|
|
2733
|
-
*
|
|
2831
|
+
* Colorspace, supports PASSTHROUGH (passthrough, only supports H265). Can be empty.
|
|
2734
2832
|
* @type {string || null}
|
|
2735
2833
|
*/
|
|
2736
2834
|
this.ColorSpace = null;
|
|
@@ -2750,7 +2848,7 @@ class ColorSpaceSetting extends AbstractModel {
|
|
|
2750
2848
|
}
|
|
2751
2849
|
|
|
2752
2850
|
/**
|
|
2753
|
-
* Static
|
|
2851
|
+
* Static image overlay configuration.
|
|
2754
2852
|
* @class
|
|
2755
2853
|
*/
|
|
2756
2854
|
class StaticImageSettings extends AbstractModel {
|
|
@@ -2758,7 +2856,7 @@ class StaticImageSettings extends AbstractModel {
|
|
|
2758
2856
|
super();
|
|
2759
2857
|
|
|
2760
2858
|
/**
|
|
2761
|
-
* Whether
|
|
2859
|
+
* Whether global static image overlay is enabled. 0: not enabled, 1: enabled. Default value: 0.
|
|
2762
2860
|
* @type {number || null}
|
|
2763
2861
|
*/
|
|
2764
2862
|
this.GlobalImageOverlayEnabled = null;
|
|
@@ -2911,7 +3009,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
2911
3009
|
this.FailOverSettings = null;
|
|
2912
3010
|
|
|
2913
3011
|
/**
|
|
2914
|
-
*
|
|
3012
|
+
* Subtitle selector.
|
|
3013
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2915
3014
|
* @type {Array.<CaptionSelector> || null}
|
|
2916
3015
|
*/
|
|
2917
3016
|
this.CaptionSelectors = null;
|
|
@@ -3362,19 +3461,19 @@ class VideoTemplateInfo extends AbstractModel {
|
|
|
3362
3461
|
this.VideoBitrate = null;
|
|
3363
3462
|
|
|
3364
3463
|
/**
|
|
3365
|
-
* Video width.
|
|
3464
|
+
* Video width. The input range is (0, 4096] and must be a multiple of 2. If left blank, it represents passthrough.
|
|
3366
3465
|
* @type {number || null}
|
|
3367
3466
|
*/
|
|
3368
3467
|
this.Width = null;
|
|
3369
3468
|
|
|
3370
3469
|
/**
|
|
3371
|
-
* Video height.
|
|
3470
|
+
* Video height. Input range is (0, 4096] and must be a multiple of 2. Leave empty to represent passthrough.
|
|
3372
3471
|
* @type {number || null}
|
|
3373
3472
|
*/
|
|
3374
3473
|
this.Height = null;
|
|
3375
3474
|
|
|
3376
3475
|
/**
|
|
3377
|
-
* Video frame rate.
|
|
3476
|
+
* Video frame rate. Valid when you select SPECIFIED_HZ for FrameRateType. Input range is [1, 240]. Leave blank to represent passthrough.
|
|
3378
3477
|
* @type {number || null}
|
|
3379
3478
|
*/
|
|
3380
3479
|
this.Fps = null;
|
|
@@ -3392,14 +3491,13 @@ class VideoTemplateInfo extends AbstractModel {
|
|
|
3392
3491
|
this.BitrateCompressionRatio = null;
|
|
3393
3492
|
|
|
3394
3493
|
/**
|
|
3395
|
-
* Bitrate control mode.
|
|
3494
|
+
* Bitrate control mode. Optional values: [CBR|ABR|VBR]. Default: ABR.
|
|
3396
3495
|
* @type {string || null}
|
|
3397
3496
|
*/
|
|
3398
3497
|
this.RateControlMode = null;
|
|
3399
3498
|
|
|
3400
3499
|
/**
|
|
3401
|
-
* Watermark
|
|
3402
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
3500
|
+
* Watermark Id.
|
|
3403
3501
|
* @type {string || null}
|
|
3404
3502
|
*/
|
|
3405
3503
|
this.WatermarkId = null;
|
|
@@ -3411,67 +3509,67 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
3411
3509
|
this.FaceBlurringEnabled = null;
|
|
3412
3510
|
|
|
3413
3511
|
/**
|
|
3414
|
-
* This field indicates how to specify the output video frame rate. If FOLLOW_SOURCE
|
|
3512
|
+
* This field indicates how to specify the output video frame rate. If selected FOLLOW_SOURCE, the output video frame rate is set to equal the frame rate of the first input video. If selected SPECIFIED_FRACTION, the output video frame rate is determined by the fraction (frame rate molecular and frame rate denominator). If selected SPECIFIED_HZ, the frame rate of the output video is determined by the HZ you input.
|
|
3415
3513
|
* @type {string || null}
|
|
3416
3514
|
*/
|
|
3417
3515
|
this.FrameRateType = null;
|
|
3418
3516
|
|
|
3419
3517
|
/**
|
|
3420
|
-
* Valid when
|
|
3518
|
+
* Valid when you select SPECIFIED_FRACTION as the FrameRateType. Set the output frame rate molecular.
|
|
3421
3519
|
* @type {number || null}
|
|
3422
3520
|
*/
|
|
3423
3521
|
this.FrameRateNumerator = null;
|
|
3424
3522
|
|
|
3425
3523
|
/**
|
|
3426
|
-
* Valid when
|
|
3524
|
+
* Valid when you select SPECIFIED_FRACTION for FrameRateType. Output frame rate denominator set.
|
|
3427
3525
|
* @type {number || null}
|
|
3428
3526
|
*/
|
|
3429
3527
|
this.FrameRateDenominator = null;
|
|
3430
3528
|
|
|
3431
3529
|
/**
|
|
3432
|
-
*
|
|
3530
|
+
* Number of B-frames 1-3.
|
|
3433
3531
|
* @type {number || null}
|
|
3434
3532
|
*/
|
|
3435
3533
|
this.BFramesNum = null;
|
|
3436
3534
|
|
|
3437
3535
|
/**
|
|
3438
|
-
*
|
|
3536
|
+
* Refer to the number of frames 1-16.
|
|
3439
3537
|
* @type {number || null}
|
|
3440
3538
|
*/
|
|
3441
3539
|
this.RefFramesNum = null;
|
|
3442
3540
|
|
|
3443
3541
|
/**
|
|
3444
|
-
* Additional video bitrate configuration.
|
|
3542
|
+
* Additional video bitrate configuration.
|
|
3445
3543
|
* @type {AdditionalRateSetting || null}
|
|
3446
3544
|
*/
|
|
3447
3545
|
this.AdditionalRateSettings = null;
|
|
3448
3546
|
|
|
3449
3547
|
/**
|
|
3450
|
-
* Video encoding configuration.
|
|
3548
|
+
* Video encoding configuration.
|
|
3451
3549
|
* @type {VideoCodecDetail || null}
|
|
3452
3550
|
*/
|
|
3453
3551
|
this.VideoCodecDetails = null;
|
|
3454
3552
|
|
|
3455
3553
|
/**
|
|
3456
|
-
* Video enhancement switch, 1:
|
|
3554
|
+
* Video enhancement switch, 1: enable 0: disable.
|
|
3457
3555
|
* @type {number || null}
|
|
3458
3556
|
*/
|
|
3459
3557
|
this.VideoEnhanceEnabled = null;
|
|
3460
3558
|
|
|
3461
3559
|
/**
|
|
3462
|
-
* Video enhancement
|
|
3560
|
+
* Video enhancement parameters array.
|
|
3463
3561
|
* @type {Array.<VideoEnhanceSetting> || null}
|
|
3464
3562
|
*/
|
|
3465
3563
|
this.VideoEnhanceSettings = null;
|
|
3466
3564
|
|
|
3467
3565
|
/**
|
|
3468
|
-
*
|
|
3566
|
+
* Colorspace configuration.
|
|
3469
3567
|
* @type {ColorSpaceSetting || null}
|
|
3470
3568
|
*/
|
|
3471
3569
|
this.ColorSpaceSettings = null;
|
|
3472
3570
|
|
|
3473
3571
|
/**
|
|
3474
|
-
*
|
|
3572
|
+
* Traceable watermark.
|
|
3475
3573
|
* @type {Array.<string> || null}
|
|
3476
3574
|
*/
|
|
3477
3575
|
this.ForensicWatermarkIds = null;
|
|
@@ -3972,7 +4070,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
3972
4070
|
}
|
|
3973
4071
|
|
|
3974
4072
|
/**
|
|
3975
|
-
*
|
|
4073
|
+
* Highlight configuration.
|
|
3976
4074
|
* @class
|
|
3977
4075
|
*/
|
|
3978
4076
|
class HighlightInfo extends AbstractModel {
|
|
@@ -3980,49 +4078,51 @@ class HighlightInfo extends AbstractModel {
|
|
|
3980
4078
|
super();
|
|
3981
4079
|
|
|
3982
4080
|
/**
|
|
3983
|
-
* Whether to enable input recognition
|
|
4081
|
+
* Whether to enable input recognition 0: disabled 1: enabled Default value: 0.
|
|
3984
4082
|
* @type {number || null}
|
|
3985
4083
|
*/
|
|
3986
4084
|
this.HighlightEnabled = null;
|
|
3987
4085
|
|
|
3988
4086
|
/**
|
|
3989
|
-
*
|
|
4087
|
+
* Products to save results. Option: COS.
|
|
4088
|
+
Currently supports Tencent Cloud COS only. AWS S3 integration will be supported later. Default is COS.
|
|
3990
4089
|
* @type {string || null}
|
|
3991
4090
|
*/
|
|
3992
4091
|
this.Type = null;
|
|
3993
4092
|
|
|
3994
4093
|
/**
|
|
3995
|
-
* Valid when Type is COS
|
|
4094
|
+
* Valid when Type is COS. Region of COS storage.
|
|
3996
4095
|
* @type {string || null}
|
|
3997
4096
|
*/
|
|
3998
4097
|
this.Region = null;
|
|
3999
4098
|
|
|
4000
4099
|
/**
|
|
4001
|
-
* Valid when Type is COS
|
|
4100
|
+
* Valid when Type is COS. Bucket name of COS storage.
|
|
4002
4101
|
* @type {string || null}
|
|
4003
4102
|
*/
|
|
4004
4103
|
this.Bucket = null;
|
|
4005
4104
|
|
|
4006
4105
|
/**
|
|
4007
|
-
* Valid when Type is COS
|
|
4106
|
+
* Valid when Type is COS. Path of COS storage.
|
|
4008
4107
|
* @type {string || null}
|
|
4009
4108
|
*/
|
|
4010
4109
|
this.Path = null;
|
|
4011
4110
|
|
|
4012
4111
|
/**
|
|
4013
|
-
* Valid when Type is COS
|
|
4112
|
+
* Valid when Type is COS. Name of the stored file in COS.
|
|
4014
4113
|
* @type {string || null}
|
|
4015
4114
|
*/
|
|
4016
4115
|
this.Filename = null;
|
|
4017
4116
|
|
|
4018
4117
|
/**
|
|
4019
|
-
* Valid when Type is COS
|
|
4118
|
+
* Valid when Type is COS. The file extension of COS storage is automatically generated in time format. Available values: unix, utc.
|
|
4119
|
+
unix is a second-level timestamp. utc 0 represents the year, month, day.
|
|
4020
4120
|
* @type {string || null}
|
|
4021
4121
|
*/
|
|
4022
4122
|
this.TimestampFormat = null;
|
|
4023
4123
|
|
|
4024
4124
|
/**
|
|
4025
|
-
* Audio selector list
|
|
4125
|
+
* Audio selector list, selectable, can be left blank. By default, an audio is used as the output of the recognition result.
|
|
4026
4126
|
* @type {Array.<string> || null}
|
|
4027
4127
|
*/
|
|
4028
4128
|
this.AudioSelectorNames = null;
|
|
@@ -4204,8 +4304,7 @@ class FailOverSettings extends AbstractModel {
|
|
|
4204
4304
|
super();
|
|
4205
4305
|
|
|
4206
4306
|
/**
|
|
4207
|
-
*
|
|
4208
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
|
4307
|
+
* Input Id of the backup stream.
|
|
4209
4308
|
* @type {string || null}
|
|
4210
4309
|
*/
|
|
4211
4310
|
this.SecondaryInputId = null;
|
|
@@ -4287,86 +4386,90 @@ class HlsRemuxSettingsInfo extends AbstractModel {
|
|
|
4287
4386
|
super();
|
|
4288
4387
|
|
|
4289
4388
|
/**
|
|
4290
|
-
* Segment duration in
|
|
4389
|
+
* Segment duration in milliseconds. Input range is [1000, 30000], default 4000, can only be a multiple of 1000.
|
|
4291
4390
|
* @type {number || null}
|
|
4292
4391
|
*/
|
|
4293
4392
|
this.SegmentDuration = null;
|
|
4294
4393
|
|
|
4295
4394
|
/**
|
|
4296
|
-
* Number of
|
|
4395
|
+
* Number of shards. Input range [3, 30]. Default is 5.
|
|
4297
4396
|
* @type {number || null}
|
|
4298
4397
|
*/
|
|
4299
4398
|
this.SegmentNumber = null;
|
|
4300
4399
|
|
|
4301
4400
|
/**
|
|
4302
|
-
* Whether to enable
|
|
4401
|
+
* Whether to enable Pdt insertion. CLOSE/OPEN. Default is CLOSE.
|
|
4303
4402
|
* @type {string || null}
|
|
4304
4403
|
*/
|
|
4305
4404
|
this.PdtInsertion = null;
|
|
4306
4405
|
|
|
4307
4406
|
/**
|
|
4308
|
-
*
|
|
4407
|
+
* Pdt duration in seconds. Input range (0, 3000]. Default 600.
|
|
4309
4408
|
* @type {number || null}
|
|
4310
4409
|
*/
|
|
4311
4410
|
this.PdtDuration = null;
|
|
4312
4411
|
|
|
4313
4412
|
/**
|
|
4314
|
-
*
|
|
4413
|
+
* Video packaging type, selectable SEPARATE|MERGE.
|
|
4315
4414
|
* @type {string || null}
|
|
4316
4415
|
*/
|
|
4317
4416
|
this.Scheme = null;
|
|
4318
4417
|
|
|
4319
4418
|
/**
|
|
4320
|
-
*
|
|
4321
|
-
|
|
4419
|
+
* Segment type, supports [ts|fmp4], default ts.
|
|
4420
|
+
fmp4 does not currently support DRM and time shifting.
|
|
4322
4421
|
* @type {string || null}
|
|
4323
4422
|
*/
|
|
4324
4423
|
this.SegmentType = null;
|
|
4325
4424
|
|
|
4326
4425
|
/**
|
|
4327
|
-
*
|
|
4426
|
+
* When the transcoding type is H265, the HLS H265 encapsulation type is selectable [hvc1|hev1], default is hev1.
|
|
4328
4427
|
* @type {string || null}
|
|
4329
4428
|
*/
|
|
4330
4429
|
this.H265PackageType = null;
|
|
4331
4430
|
|
|
4332
4431
|
/**
|
|
4333
|
-
* Whether to enable low
|
|
4432
|
+
* Whether to enable low delay. 0:CLOSE. Default is 0. 1:OPEN.
|
|
4334
4433
|
* @type {number || null}
|
|
4335
4434
|
*/
|
|
4336
4435
|
this.LowLatency = null;
|
|
4337
4436
|
|
|
4338
4437
|
/**
|
|
4339
|
-
*
|
|
4438
|
+
* Small slice size in milliseconds. Value ranges from 200 to SegmentDuration (integer). Default value: 500 ms.
|
|
4340
4439
|
* @type {number || null}
|
|
4341
4440
|
*/
|
|
4342
4441
|
this.PartialSegmentDuration = null;
|
|
4343
4442
|
|
|
4344
4443
|
/**
|
|
4345
|
-
*
|
|
4444
|
+
* Small slice playback position in milliseconds. Value ranges from 3*PartiSegmentDuration to 3*SegmentDuration (integer). Default value: 3*PartiSegmentDuration.
|
|
4346
4445
|
* @type {number || null}
|
|
4347
4446
|
*/
|
|
4348
4447
|
this.PartialSegmentPlaySite = null;
|
|
4349
4448
|
|
|
4350
4449
|
/**
|
|
4351
|
-
* Hls
|
|
4450
|
+
* Hls master m3u8 file sorting rule by bitrate. Available values:
|
|
4451
|
+
1: Video bitrate ascending 2: Video bitrate descending
|
|
4452
|
+
Default value: 1
|
|
4352
4453
|
* @type {number || null}
|
|
4353
4454
|
*/
|
|
4354
4455
|
this.StreamOrder = null;
|
|
4355
4456
|
|
|
4356
4457
|
/**
|
|
4357
|
-
* Whether the Hls
|
|
4458
|
+
* Whether the Hls master m3u8 file contains resolution information. Available values:
|
|
4459
|
+
1: INCLUDE includes video resolution 2: EXCLUDE excludes video resolution.
|
|
4460
|
+
Default value: 1.
|
|
4358
4461
|
* @type {number || null}
|
|
4359
4462
|
*/
|
|
4360
4463
|
this.VideoResolution = null;
|
|
4361
4464
|
|
|
4362
4465
|
/**
|
|
4363
|
-
* Whether
|
|
4466
|
+
* Whether the content contains the `EXT-X-ENDLIST` tag. 1: contains; 2: does not contain. Default: 1.
|
|
4364
4467
|
* @type {number || null}
|
|
4365
4468
|
*/
|
|
4366
4469
|
this.EndListTag = null;
|
|
4367
4470
|
|
|
4368
4471
|
/**
|
|
4369
|
-
*
|
|
4472
|
+
* Option: `ENHANCED_SCTE35`, `DATERANGE`; default `ENHANCED_SCTE35`.
|
|
4370
4473
|
* @type {string || null}
|
|
4371
4474
|
*/
|
|
4372
4475
|
this.AdMarkupType = null;
|
|
@@ -4567,7 +4670,8 @@ class TimedMetadataSettingInfo extends AbstractModel {
|
|
|
4567
4670
|
super();
|
|
4568
4671
|
|
|
4569
4672
|
/**
|
|
4570
|
-
* Whether to
|
|
4673
|
+
* Whether to pass through ID3 info. Available values:
|
|
4674
|
+
0:NO_PASSTHROUGH, 1:PASSTHROUGH, default 0.
|
|
4571
4675
|
* @type {number || null}
|
|
4572
4676
|
*/
|
|
4573
4677
|
this.Behavior = null;
|
|
@@ -4607,7 +4711,7 @@ class AudioTemplateInfo extends AbstractModel {
|
|
|
4607
4711
|
this.Name = null;
|
|
4608
4712
|
|
|
4609
4713
|
/**
|
|
4610
|
-
* Audio encoding format, only `AAC`
|
|
4714
|
+
* Audio encoding format, can only be `AAC` or `PASSTHROUGH`. Default is AAC.
|
|
4611
4715
|
* @type {string || null}
|
|
4612
4716
|
*/
|
|
4613
4717
|
this.Acodec = null;
|
|
@@ -4620,7 +4724,7 @@ Valid values: 6000, 7000, 8000, 10000, 12000, 14000, 16000, 20000, 24000, 28000,
|
|
|
4620
4724
|
this.AudioBitrate = null;
|
|
4621
4725
|
|
|
4622
4726
|
/**
|
|
4623
|
-
* Audio language
|
|
4727
|
+
* Audio language Code, length 2-20.
|
|
4624
4728
|
* @type {string || null}
|
|
4625
4729
|
*/
|
|
4626
4730
|
this.LanguageCode = null;
|
|
@@ -4644,7 +4748,7 @@ Valid values: 6000, 7000, 8000, 10000, 12000, 14000, 16000, 20000, 24000, 28000,
|
|
|
4644
4748
|
this.AudioCodecDetails = null;
|
|
4645
4749
|
|
|
4646
4750
|
/**
|
|
4647
|
-
* Audio language description,
|
|
4751
|
+
* Audio language description, maximum length 100
|
|
4648
4752
|
* @type {string || null}
|
|
4649
4753
|
*/
|
|
4650
4754
|
this.LanguageDescription = null;
|
|
@@ -4682,7 +4786,7 @@ Valid values: 6000, 7000, 8000, 10000, 12000, 14000, 16000, 20000, 24000, 28000,
|
|
|
4682
4786
|
}
|
|
4683
4787
|
|
|
4684
4788
|
/**
|
|
4685
|
-
*
|
|
4789
|
+
* Audio track configuration list.
|
|
4686
4790
|
* @class
|
|
4687
4791
|
*/
|
|
4688
4792
|
class InputTracks extends AbstractModel {
|
|
@@ -4690,7 +4794,7 @@ class InputTracks extends AbstractModel {
|
|
|
4690
4794
|
super();
|
|
4691
4795
|
|
|
4692
4796
|
/**
|
|
4693
|
-
* Audio track configuration
|
|
4797
|
+
* Audio track configuration message.
|
|
4694
4798
|
* @type {Array.<InputTrack> || null}
|
|
4695
4799
|
*/
|
|
4696
4800
|
this.Tracks = null;
|
|
@@ -4975,55 +5079,55 @@ class CreateStreamLiveChannelRequest extends AbstractModel {
|
|
|
4975
5079
|
super();
|
|
4976
5080
|
|
|
4977
5081
|
/**
|
|
4978
|
-
* Channel name,
|
|
5082
|
+
* Channel name, limited to lowercase letters, digits, and underscores, length [1, 32], unique in each Region.
|
|
4979
5083
|
* @type {string || null}
|
|
4980
5084
|
*/
|
|
4981
5085
|
this.Name = null;
|
|
4982
5086
|
|
|
4983
5087
|
/**
|
|
4984
|
-
*
|
|
5088
|
+
* Associated media input, limit on the number [1, 5].
|
|
4985
5089
|
* @type {Array.<AttachedInput> || null}
|
|
4986
5090
|
*/
|
|
4987
5091
|
this.AttachedInputs = null;
|
|
4988
5092
|
|
|
4989
5093
|
/**
|
|
4990
|
-
* Configuration
|
|
5094
|
+
* Configuration message of the output group for the channel. Limit on the number [1, 10].
|
|
4991
5095
|
* @type {Array.<StreamLiveOutputGroupsInfo> || null}
|
|
4992
5096
|
*/
|
|
4993
5097
|
this.OutputGroups = null;
|
|
4994
5098
|
|
|
4995
5099
|
/**
|
|
4996
|
-
* Audio transcoding
|
|
5100
|
+
* Audio transcoding template array, with the maximum number of [1, 20].
|
|
4997
5101
|
* @type {Array.<AudioTemplateInfo> || null}
|
|
4998
5102
|
*/
|
|
4999
5103
|
this.AudioTemplates = null;
|
|
5000
5104
|
|
|
5001
5105
|
/**
|
|
5002
|
-
* Video transcoding
|
|
5106
|
+
* Video transcoding template array, with the maximum number of [1, 10].
|
|
5003
5107
|
* @type {Array.<VideoTemplateInfo> || null}
|
|
5004
5108
|
*/
|
|
5005
5109
|
this.VideoTemplates = null;
|
|
5006
5110
|
|
|
5007
5111
|
/**
|
|
5008
|
-
* Audio
|
|
5112
|
+
* Audio and video transcoding template array, with a limit on the number between 1 and 10.
|
|
5009
5113
|
* @type {Array.<AVTemplate> || null}
|
|
5010
5114
|
*/
|
|
5011
5115
|
this.AVTemplates = null;
|
|
5012
5116
|
|
|
5013
5117
|
/**
|
|
5014
|
-
* Subtitle template configuration.
|
|
5118
|
+
* Subtitle template configuration is only valid for joint transcoding template.
|
|
5015
5119
|
* @type {Array.<SubtitleConf> || null}
|
|
5016
5120
|
*/
|
|
5017
5121
|
this.CaptionTemplates = null;
|
|
5018
5122
|
|
|
5019
5123
|
/**
|
|
5020
|
-
*
|
|
5124
|
+
* Configuration message of the scheduled task.
|
|
5021
5125
|
* @type {PlanSettings || null}
|
|
5022
5126
|
*/
|
|
5023
5127
|
this.PlanSettings = null;
|
|
5024
5128
|
|
|
5025
5129
|
/**
|
|
5026
|
-
*
|
|
5130
|
+
* Callback configuration information.
|
|
5027
5131
|
* @type {EventNotifySetting || null}
|
|
5028
5132
|
*/
|
|
5029
5133
|
this.EventNotifySettings = null;
|
|
@@ -5041,25 +5145,25 @@ class CreateStreamLiveChannelRequest extends AbstractModel {
|
|
|
5041
5145
|
this.PipelineInputSettings = null;
|
|
5042
5146
|
|
|
5043
5147
|
/**
|
|
5044
|
-
*
|
|
5148
|
+
* Input content identification configuration.
|
|
5045
5149
|
* @type {InputAnalysisInfo || null}
|
|
5046
5150
|
*/
|
|
5047
5151
|
this.InputAnalysisSettings = null;
|
|
5048
5152
|
|
|
5049
5153
|
/**
|
|
5050
|
-
* Console tag list
|
|
5154
|
+
* Console tag list
|
|
5051
5155
|
* @type {Array.<Tag> || null}
|
|
5052
5156
|
*/
|
|
5053
5157
|
this.Tags = null;
|
|
5054
5158
|
|
|
5055
5159
|
/**
|
|
5056
|
-
*
|
|
5160
|
+
* chart template
|
|
5057
5161
|
* @type {Array.<FrameCaptureTemplate> || null}
|
|
5058
5162
|
*/
|
|
5059
5163
|
this.FrameCaptureTemplates = null;
|
|
5060
5164
|
|
|
5061
5165
|
/**
|
|
5062
|
-
*
|
|
5166
|
+
* Common configuration.
|
|
5063
5167
|
* @type {GeneralSetting || null}
|
|
5064
5168
|
*/
|
|
5065
5169
|
this.GeneralSettings = null;
|
|
@@ -5187,7 +5291,7 @@ class CreateStreamLiveChannelRequest extends AbstractModel {
|
|
|
5187
5291
|
}
|
|
5188
5292
|
|
|
5189
5293
|
/**
|
|
5190
|
-
*
|
|
5294
|
+
* Dynamic graphic configuration.
|
|
5191
5295
|
* @class
|
|
5192
5296
|
*/
|
|
5193
5297
|
class MotionGraphicsSetting extends AbstractModel {
|
|
@@ -5195,7 +5299,8 @@ class MotionGraphicsSetting extends AbstractModel {
|
|
|
5195
5299
|
super();
|
|
5196
5300
|
|
|
5197
5301
|
/**
|
|
5198
|
-
* Whether to enable dynamic graphic overlay
|
|
5302
|
+
* Whether to enable dynamic graphic overlay. `0`: not enabled, `1`: enabled. Default: 0.
|
|
5303
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5199
5304
|
* @type {number || null}
|
|
5200
5305
|
*/
|
|
5201
5306
|
this.MotionGraphicsOverlayEnabled = null;
|
|
@@ -5328,7 +5433,7 @@ class AbWatermarkDetectionInfo extends AbstractModel {
|
|
|
5328
5433
|
}
|
|
5329
5434
|
|
|
5330
5435
|
/**
|
|
5331
|
-
* Cos
|
|
5436
|
+
* Cos address configuration
|
|
5332
5437
|
* @class
|
|
5333
5438
|
*/
|
|
5334
5439
|
class CosSettings extends AbstractModel {
|
|
@@ -5348,25 +5453,25 @@ class CosSettings extends AbstractModel {
|
|
|
5348
5453
|
this.Bucket = null;
|
|
5349
5454
|
|
|
5350
5455
|
/**
|
|
5351
|
-
*
|
|
5456
|
+
* COS file output path, can be empty, ends with / if not empty.
|
|
5352
5457
|
* @type {string || null}
|
|
5353
5458
|
*/
|
|
5354
5459
|
this.FilePath = null;
|
|
5355
5460
|
|
|
5356
5461
|
/**
|
|
5357
|
-
* User-defined name
|
|
5462
|
+
* User-defined name supports 1 to 32 characters consisting of digits, letters, underscores (_), and hyphens (-).
|
|
5358
5463
|
* @type {string || null}
|
|
5359
5464
|
*/
|
|
5360
5465
|
this.FileName = null;
|
|
5361
5466
|
|
|
5362
5467
|
/**
|
|
5363
|
-
*
|
|
5468
|
+
* COS file suffix is only supported for jpg.
|
|
5364
5469
|
* @type {string || null}
|
|
5365
5470
|
*/
|
|
5366
5471
|
this.FileExt = null;
|
|
5367
5472
|
|
|
5368
5473
|
/**
|
|
5369
|
-
* Support
|
|
5474
|
+
* Support [unix|utc0]. Default is unix.
|
|
5370
5475
|
* @type {string || null}
|
|
5371
5476
|
*/
|
|
5372
5477
|
this.TimeFormat = null;
|
|
@@ -5491,87 +5596,85 @@ class SubtitleConf extends AbstractModel {
|
|
|
5491
5596
|
super();
|
|
5492
5597
|
|
|
5493
5598
|
/**
|
|
5494
|
-
* Template
|
|
5599
|
+
* Template Name
|
|
5495
5600
|
* @type {string || null}
|
|
5496
5601
|
*/
|
|
5497
5602
|
this.Name = null;
|
|
5498
5603
|
|
|
5499
5604
|
/**
|
|
5500
|
-
* Name of
|
|
5605
|
+
* Name of the subtitle selector. Required when CaptionSource is set to INPUT.
|
|
5501
5606
|
* @type {string || null}
|
|
5502
5607
|
*/
|
|
5503
5608
|
this.CaptionSelectorName = null;
|
|
5504
5609
|
|
|
5505
5610
|
/**
|
|
5506
|
-
*
|
|
5611
|
+
* Available values: INPUT (source subtitle information), ANALYSIS (intelligent voice recognition to subtitle).
|
|
5507
5612
|
* @type {string || null}
|
|
5508
5613
|
*/
|
|
5509
5614
|
this.CaptionSource = null;
|
|
5510
5615
|
|
|
5511
5616
|
/**
|
|
5512
|
-
*
|
|
5617
|
+
* Available values: 1 Source, 2 Source+Target, 3 Target (source language only, source language + target language, target language). When the output is WebVTT, it can only output one language.
|
|
5513
5618
|
* @type {number || null}
|
|
5514
5619
|
*/
|
|
5515
5620
|
this.ContentType = null;
|
|
5516
5621
|
|
|
5517
5622
|
/**
|
|
5518
|
-
* Output mode: 1 Burn in, 2 Embedded, 3 WebVTT.
|
|
5623
|
+
* Output mode: 1 Burn in, 2 Embedded, 3 WebVTT. When CaptionSource is INPUT, it supports only 2. When CaptionSource is ANALYSIS, it supports 1, 3.
|
|
5519
5624
|
* @type {number || null}
|
|
5520
5625
|
*/
|
|
5521
5626
|
this.TargetType = null;
|
|
5522
5627
|
|
|
5523
5628
|
/**
|
|
5524
|
-
* Original
|
|
5525
|
-
Optional values: Chinese, English, Japanese, Korean. Required when CaptionSource selects `ANALYSIS `.
|
|
5629
|
+
* Original speech languages: Chinese, English, Japanese, Korean.
|
|
5526
5630
|
* @type {string || null}
|
|
5527
5631
|
*/
|
|
5528
5632
|
this.SourceLanguage = null;
|
|
5529
5633
|
|
|
5530
5634
|
/**
|
|
5531
|
-
* Target
|
|
5532
|
-
Optional values: Chinese, English, Japanese, Korean. Required when CaptionSource selects `ANALYSIS `.
|
|
5635
|
+
* Target languages: Chinese, English, Japanese, Korean.
|
|
5533
5636
|
* @type {string || null}
|
|
5534
5637
|
*/
|
|
5535
5638
|
this.TargetLanguage = null;
|
|
5536
5639
|
|
|
5537
5640
|
/**
|
|
5538
|
-
* Font style configuration. Required
|
|
5641
|
+
* Font style configuration. Required for BurnIn.
|
|
5539
5642
|
* @type {SubtitleFontConf || null}
|
|
5540
5643
|
*/
|
|
5541
5644
|
this.FontStyle = null;
|
|
5542
5645
|
|
|
5543
5646
|
/**
|
|
5544
|
-
*
|
|
5647
|
+
* STEADY and DYNAMIC modes correspond to steady state and non-steady state respectively. Default is STEADY. Only select STEADY when the output is WebVTT.
|
|
5545
5648
|
* @type {string || null}
|
|
5546
5649
|
*/
|
|
5547
5650
|
this.StateEffectMode = null;
|
|
5548
5651
|
|
|
5549
5652
|
/**
|
|
5550
|
-
* Steady-state delay time
|
|
5653
|
+
* Steady-state delay time in seconds. Value range: 10, 20. Default: 10.
|
|
5551
5654
|
* @type {number || null}
|
|
5552
5655
|
*/
|
|
5553
5656
|
this.SteadyStateDelayedTime = null;
|
|
5554
5657
|
|
|
5555
5658
|
/**
|
|
5556
|
-
* Audio selector name, required for
|
|
5659
|
+
* Audio selector name, required for speech recognition to generate WebVTT subtitles, can be empty
|
|
5557
5660
|
* @type {string || null}
|
|
5558
5661
|
*/
|
|
5559
5662
|
this.AudioSelectorName = null;
|
|
5560
5663
|
|
|
5561
5664
|
/**
|
|
5562
|
-
* Format configuration for
|
|
5665
|
+
* Format configuration for WebVTT output in speech recognition.
|
|
5563
5666
|
* @type {WebVTTFontStyle || null}
|
|
5564
5667
|
*/
|
|
5565
5668
|
this.WebVTTFontStyle = null;
|
|
5566
5669
|
|
|
5567
5670
|
/**
|
|
5568
|
-
* Language code, length 2-20.
|
|
5671
|
+
* Language code, length 2-20.
|
|
5569
5672
|
* @type {string || null}
|
|
5570
5673
|
*/
|
|
5571
5674
|
this.LanguageCode = null;
|
|
5572
5675
|
|
|
5573
5676
|
/**
|
|
5574
|
-
* Language description, less than 100
|
|
5677
|
+
* Language description, length less than 100.
|
|
5575
5678
|
* @type {string || null}
|
|
5576
5679
|
*/
|
|
5577
5680
|
this.LanguageDescription = null;
|
|
@@ -5872,7 +5975,7 @@ class DescribeStreamLiveChannelAlertsResponse extends AbstractModel {
|
|
|
5872
5975
|
}
|
|
5873
5976
|
|
|
5874
5977
|
/**
|
|
5875
|
-
*
|
|
5978
|
+
* Thumbnail configuration
|
|
5876
5979
|
* @class
|
|
5877
5980
|
*/
|
|
5878
5981
|
class ThumbnailSettings extends AbstractModel {
|
|
@@ -5880,7 +5983,7 @@ class ThumbnailSettings extends AbstractModel {
|
|
|
5880
5983
|
super();
|
|
5881
5984
|
|
|
5882
5985
|
/**
|
|
5883
|
-
*
|
|
5986
|
+
* Whether to generate thumbnails 0: disabled 1: enabled Default value: 0
|
|
5884
5987
|
* @type {number || null}
|
|
5885
5988
|
*/
|
|
5886
5989
|
this.ThumbnailEnabled = null;
|
|
@@ -6124,11 +6227,17 @@ class AdBreakSetting extends AbstractModel {
|
|
|
6124
6227
|
this.Format = null;
|
|
6125
6228
|
|
|
6126
6229
|
/**
|
|
6127
|
-
* Duration, in milliseconds, requires 1000
|
|
6230
|
+
* Duration, in milliseconds, requires 1000<duration<=600000 The current accuracy is seconds, which is a multiple of 1000
|
|
6128
6231
|
* @type {number || null}
|
|
6129
6232
|
*/
|
|
6130
6233
|
this.Duration = null;
|
|
6131
6234
|
|
|
6235
|
+
/**
|
|
6236
|
+
* AdSource type, supports UPLOAD_CREATIVES
|
|
6237
|
+
* @type {string || null}
|
|
6238
|
+
*/
|
|
6239
|
+
this.AdSource = null;
|
|
6240
|
+
|
|
6132
6241
|
/**
|
|
6133
6242
|
* L-type compression recovery configuration
|
|
6134
6243
|
* @type {LSqueezeSetting || null}
|
|
@@ -6136,10 +6245,16 @@ class AdBreakSetting extends AbstractModel {
|
|
|
6136
6245
|
this.LSqueezeSetting = null;
|
|
6137
6246
|
|
|
6138
6247
|
/**
|
|
6139
|
-
*
|
|
6140
|
-
* @type {
|
|
6248
|
+
*
|
|
6249
|
+
* @type {PipSetting || null}
|
|
6141
6250
|
*/
|
|
6142
|
-
this.
|
|
6251
|
+
this.PipSetting = null;
|
|
6252
|
+
|
|
6253
|
+
/**
|
|
6254
|
+
*
|
|
6255
|
+
* @type {BorderFrameSetting || null}
|
|
6256
|
+
*/
|
|
6257
|
+
this.BorderFrameSetting = null;
|
|
6143
6258
|
|
|
6144
6259
|
}
|
|
6145
6260
|
|
|
@@ -6152,13 +6267,25 @@ class AdBreakSetting extends AbstractModel {
|
|
|
6152
6267
|
}
|
|
6153
6268
|
this.Format = 'Format' in params ? params.Format : null;
|
|
6154
6269
|
this.Duration = 'Duration' in params ? params.Duration : null;
|
|
6270
|
+
this.AdSource = 'AdSource' in params ? params.AdSource : null;
|
|
6155
6271
|
|
|
6156
6272
|
if (params.LSqueezeSetting) {
|
|
6157
6273
|
let obj = new LSqueezeSetting();
|
|
6158
6274
|
obj.deserialize(params.LSqueezeSetting)
|
|
6159
6275
|
this.LSqueezeSetting = obj;
|
|
6160
6276
|
}
|
|
6161
|
-
|
|
6277
|
+
|
|
6278
|
+
if (params.PipSetting) {
|
|
6279
|
+
let obj = new PipSetting();
|
|
6280
|
+
obj.deserialize(params.PipSetting)
|
|
6281
|
+
this.PipSetting = obj;
|
|
6282
|
+
}
|
|
6283
|
+
|
|
6284
|
+
if (params.BorderFrameSetting) {
|
|
6285
|
+
let obj = new BorderFrameSetting();
|
|
6286
|
+
obj.deserialize(params.BorderFrameSetting)
|
|
6287
|
+
this.BorderFrameSetting = obj;
|
|
6288
|
+
}
|
|
6162
6289
|
|
|
6163
6290
|
}
|
|
6164
6291
|
}
|
|
@@ -6653,52 +6780,49 @@ class OutputInfo extends AbstractModel {
|
|
|
6653
6780
|
|
|
6654
6781
|
/**
|
|
6655
6782
|
* Audio transcoding template name array.
|
|
6656
|
-
|
|
6657
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
6783
|
+
RTMP limit [0, 1], other limits [0, 20].
|
|
6658
6784
|
* @type {Array.<string> || null}
|
|
6659
6785
|
*/
|
|
6660
6786
|
this.AudioTemplateNames = null;
|
|
6661
6787
|
|
|
6662
6788
|
/**
|
|
6663
|
-
* Video transcoding template name array
|
|
6664
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
6789
|
+
* Video transcoding template name array, with the maximum number of [0, 1].
|
|
6665
6790
|
* @type {Array.<string> || null}
|
|
6666
6791
|
*/
|
|
6667
6792
|
this.VideoTemplateNames = null;
|
|
6668
6793
|
|
|
6669
6794
|
/**
|
|
6670
|
-
*
|
|
6795
|
+
* Scte-35 information configuration.
|
|
6671
6796
|
* @type {Scte35SettingsInfo || null}
|
|
6672
6797
|
*/
|
|
6673
6798
|
this.Scte35Settings = null;
|
|
6674
6799
|
|
|
6675
6800
|
/**
|
|
6676
|
-
* Audio/
|
|
6677
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
|
6801
|
+
* Audio/video transcoding template name array, with the maximum number of 1.
|
|
6678
6802
|
* @type {Array.<string> || null}
|
|
6679
6803
|
*/
|
|
6680
6804
|
this.AVTemplateNames = null;
|
|
6681
6805
|
|
|
6682
6806
|
/**
|
|
6683
|
-
*
|
|
6807
|
+
* The used subtitle template is only valid for merge template.
|
|
6684
6808
|
* @type {Array.<string> || null}
|
|
6685
6809
|
*/
|
|
6686
6810
|
this.CaptionTemplateNames = null;
|
|
6687
6811
|
|
|
6688
6812
|
/**
|
|
6689
|
-
* Meta
|
|
6813
|
+
* Meta-information control configuration.
|
|
6690
6814
|
* @type {TimedMetadataSettingInfo || null}
|
|
6691
6815
|
*/
|
|
6692
6816
|
this.TimedMetadataSettings = null;
|
|
6693
6817
|
|
|
6694
6818
|
/**
|
|
6695
|
-
*
|
|
6819
|
+
* Screenshot transcode template name array. Limit: 1.
|
|
6696
6820
|
* @type {Array.<string> || null}
|
|
6697
6821
|
*/
|
|
6698
6822
|
this.FrameCaptureTemplateNames = null;
|
|
6699
6823
|
|
|
6700
6824
|
/**
|
|
6701
|
-
*
|
|
6825
|
+
* Modify the name of the sub-m3u8.
|
|
6702
6826
|
* @type {string || null}
|
|
6703
6827
|
*/
|
|
6704
6828
|
this.NameModifier = null;
|
|
@@ -6821,7 +6945,7 @@ class StaticImageDeactivateSetting extends AbstractModel {
|
|
|
6821
6945
|
}
|
|
6822
6946
|
|
|
6823
6947
|
/**
|
|
6824
|
-
*
|
|
6948
|
+
* Additional configuration for video codec.
|
|
6825
6949
|
* @class
|
|
6826
6950
|
*/
|
|
6827
6951
|
class VideoCodecDetail extends AbstractModel {
|
|
@@ -6829,31 +6953,31 @@ class VideoCodecDetail extends AbstractModel {
|
|
|
6829
6953
|
super();
|
|
6830
6954
|
|
|
6831
6955
|
/**
|
|
6832
|
-
*
|
|
6956
|
+
* Three image quality levels for H264, options include: BASELINE, HIGH, MAIN. The default option is MAIN.
|
|
6833
6957
|
* @type {string || null}
|
|
6834
6958
|
*/
|
|
6835
6959
|
this.Profile = null;
|
|
6836
6960
|
|
|
6837
6961
|
/**
|
|
6838
|
-
*
|
|
6962
|
+
* Decoding performance of the profile. Options include 1, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 2.3, 3, 3.1, 3.2, 4, 4.1, 4.2, 5, 5.1, AUTO. The default option is AUTO.
|
|
6839
6963
|
* @type {string || null}
|
|
6840
6964
|
*/
|
|
6841
6965
|
this.Level = null;
|
|
6842
6966
|
|
|
6843
6967
|
/**
|
|
6844
|
-
*
|
|
6968
|
+
* Encoding/decoding includes entropy encoding and lossless encoding. Options include CABAC and CAVLC. The default option is CABAC.
|
|
6845
6969
|
* @type {string || null}
|
|
6846
6970
|
*/
|
|
6847
6971
|
this.EntropyEncoding = null;
|
|
6848
6972
|
|
|
6849
6973
|
/**
|
|
6850
|
-
* Mode, options include: AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF.
|
|
6974
|
+
* Mode, options include: AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF. Default option: AUTO.
|
|
6851
6975
|
* @type {string || null}
|
|
6852
6976
|
*/
|
|
6853
6977
|
this.AdaptiveQuantization = null;
|
|
6854
6978
|
|
|
6855
6979
|
/**
|
|
6856
|
-
* Analyze subsequent
|
|
6980
|
+
* Analyze subsequent coding frames in advance. Options include HIGH, LOW, and MEDIUM. Default option is MEDIUM.
|
|
6857
6981
|
* @type {string || null}
|
|
6858
6982
|
*/
|
|
6859
6983
|
this.LookAheadRateControl = null;
|
|
@@ -6885,13 +7009,13 @@ class CreateStreamLiveChannelResponse extends AbstractModel {
|
|
|
6885
7009
|
super();
|
|
6886
7010
|
|
|
6887
7011
|
/**
|
|
6888
|
-
* Channel ID
|
|
7012
|
+
* Channel ID.
|
|
6889
7013
|
* @type {string || null}
|
|
6890
7014
|
*/
|
|
6891
7015
|
this.Id = null;
|
|
6892
7016
|
|
|
6893
7017
|
/**
|
|
6894
|
-
* Tag prompt
|
|
7018
|
+
* Tag prompt message. When the operation fails, the information comes with it.
|
|
6895
7019
|
* @type {string || null}
|
|
6896
7020
|
*/
|
|
6897
7021
|
this.TagMsg = null;
|
|
@@ -7033,7 +7157,7 @@ class InputTrack extends AbstractModel {
|
|
|
7033
7157
|
super();
|
|
7034
7158
|
|
|
7035
7159
|
/**
|
|
7036
|
-
* Audio track index
|
|
7160
|
+
* Audio track index 1-based index mapping to the specified audio track Integer starting from 1.
|
|
7037
7161
|
* @type {number || null}
|
|
7038
7162
|
*/
|
|
7039
7163
|
this.TrackIndex = null;
|
|
@@ -7169,18 +7293,15 @@ class StreamLiveOutputGroupsInfo extends AbstractModel {
|
|
|
7169
7293
|
this.Name = null;
|
|
7170
7294
|
|
|
7171
7295
|
/**
|
|
7172
|
-
* Output protocol
|
|
7173
|
-
|
|
7174
|
-
`DASH_ARCHIVE`, `HLS_STREAM_PACKAGE`,
|
|
7175
|
-
`DASH_STREAM_PACKAGE`,
|
|
7176
|
-
`FRAME_CAPTURE`, `RTP`, `RTMP`, `M2TS`.
|
|
7296
|
+
* Output protocol type.
|
|
7297
|
+
Selectable HLS/DASH/HLS_ARCHIVE/DASH_ARCHIVE/HLS_STREAM_PACKAGE/DASH_STREAM_PACKAGE/FRAME_CAPTURE/RTP/RTMP/M2TS.
|
|
7177
7298
|
* @type {string || null}
|
|
7178
7299
|
*/
|
|
7179
7300
|
this.Type = null;
|
|
7180
7301
|
|
|
7181
7302
|
/**
|
|
7182
|
-
* Output information
|
|
7183
|
-
|
|
7303
|
+
* Output information.
|
|
7304
|
+
RTMP/RTP/FRAME_CAPTURE limit [1,1], HLS/DASH limit [1,10].
|
|
7184
7305
|
* @type {Array.<OutputInfo> || null}
|
|
7185
7306
|
*/
|
|
7186
7307
|
this.Outputs = null;
|
|
@@ -7192,36 +7313,31 @@ If the type is RTMP, RTP or FRAME_CAPTURE, only one output is allowed; if it is
|
|
|
7192
7313
|
this.Destinations = null;
|
|
7193
7314
|
|
|
7194
7315
|
/**
|
|
7195
|
-
* HLS protocol configuration
|
|
7196
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
|
7316
|
+
* HLS protocol configuration info, valid only for HLS/HLS_ARCHIVE.
|
|
7197
7317
|
* @type {HlsRemuxSettingsInfo || null}
|
|
7198
7318
|
*/
|
|
7199
7319
|
this.HlsRemuxSettings = null;
|
|
7200
7320
|
|
|
7201
7321
|
/**
|
|
7202
|
-
* DRM configuration
|
|
7203
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
|
7322
|
+
* DRM configuration message.
|
|
7204
7323
|
* @type {DrmSettingsInfo || null}
|
|
7205
7324
|
*/
|
|
7206
7325
|
this.DrmSettings = null;
|
|
7207
7326
|
|
|
7208
7327
|
/**
|
|
7209
|
-
* DASH protocol configuration
|
|
7210
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
|
7328
|
+
* DASH protocol configuration info, valid only for DASH/DSAH_ARCHIVE.
|
|
7211
7329
|
* @type {DashRemuxSettingsInfo || null}
|
|
7212
7330
|
*/
|
|
7213
7331
|
this.DashRemuxSettings = null;
|
|
7214
7332
|
|
|
7215
7333
|
/**
|
|
7216
|
-
*
|
|
7217
|
-
Note: this field may return `null`, indicating that no valid value was found.
|
|
7334
|
+
* Configuration message for media encapsulation. Requires filling in when Type is related to StreamPackage.
|
|
7218
7335
|
* @type {StreamPackageSettingsInfo || null}
|
|
7219
7336
|
*/
|
|
7220
7337
|
this.StreamPackageSettings = null;
|
|
7221
7338
|
|
|
7222
7339
|
/**
|
|
7223
|
-
* Time
|
|
7224
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
7340
|
+
* Time shift configuration information.
|
|
7225
7341
|
* @type {TimeShiftSettingsInfo || null}
|
|
7226
7342
|
*/
|
|
7227
7343
|
this.TimeShiftSettings = null;
|
|
@@ -7330,7 +7446,7 @@ class ChannelOutputsStatistics extends AbstractModel {
|
|
|
7330
7446
|
}
|
|
7331
7447
|
|
|
7332
7448
|
/**
|
|
7333
|
-
*
|
|
7449
|
+
* Additional bitrate configuration for video template.
|
|
7334
7450
|
* @class
|
|
7335
7451
|
*/
|
|
7336
7452
|
class AdditionalRateSetting extends AbstractModel {
|
|
@@ -7338,19 +7454,19 @@ class AdditionalRateSetting extends AbstractModel {
|
|
|
7338
7454
|
super();
|
|
7339
7455
|
|
|
7340
7456
|
/**
|
|
7341
|
-
* The maximum
|
|
7457
|
+
* The maximum bitrate in the VBR scenario must be a multiple of 1000 and between 50000 and 40000000.
|
|
7342
7458
|
* @type {number || null}
|
|
7343
7459
|
*/
|
|
7344
7460
|
this.VideoMaxBitrate = null;
|
|
7345
7461
|
|
|
7346
7462
|
/**
|
|
7347
|
-
* Cache configuration supports
|
|
7463
|
+
* Cache configuration supports configuration as 1-4x the Max Bitrate value.
|
|
7348
7464
|
* @type {number || null}
|
|
7349
7465
|
*/
|
|
7350
7466
|
this.BufferSize = null;
|
|
7351
7467
|
|
|
7352
7468
|
/**
|
|
7353
|
-
*
|
|
7469
|
+
* Valid in VBR scenarios. Video quality level. Only supports user input of numbers between 1 and 51.
|
|
7354
7470
|
* @type {number || null}
|
|
7355
7471
|
*/
|
|
7356
7472
|
this.QualityLevel = null;
|
|
@@ -7380,8 +7496,7 @@ class PlanSettings extends AbstractModel {
|
|
|
7380
7496
|
super();
|
|
7381
7497
|
|
|
7382
7498
|
/**
|
|
7383
|
-
*
|
|
7384
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
7499
|
+
* Configuration message of the scheduled recording task.
|
|
7385
7500
|
* @type {TimedRecordSettings || null}
|
|
7386
7501
|
*/
|
|
7387
7502
|
this.TimedRecordSettings = null;
|
|
@@ -7505,7 +7620,7 @@ class AbWatermarkSettingsReq extends AbstractModel {
|
|
|
7505
7620
|
}
|
|
7506
7621
|
|
|
7507
7622
|
/**
|
|
7508
|
-
*
|
|
7623
|
+
* Common configuration.
|
|
7509
7624
|
* @class
|
|
7510
7625
|
*/
|
|
7511
7626
|
class GeneralSetting extends AbstractModel {
|
|
@@ -7513,19 +7628,19 @@ class GeneralSetting extends AbstractModel {
|
|
|
7513
7628
|
super();
|
|
7514
7629
|
|
|
7515
7630
|
/**
|
|
7516
|
-
* Static
|
|
7631
|
+
* Static image overlay configuration.
|
|
7517
7632
|
* @type {StaticImageSettings || null}
|
|
7518
7633
|
*/
|
|
7519
7634
|
this.StaticImageSettings = null;
|
|
7520
7635
|
|
|
7521
7636
|
/**
|
|
7522
|
-
*
|
|
7637
|
+
* Real-time graphic overlay configuration.
|
|
7523
7638
|
* @type {MotionGraphicsSetting || null}
|
|
7524
7639
|
*/
|
|
7525
7640
|
this.MotionGraphicsSettings = null;
|
|
7526
7641
|
|
|
7527
7642
|
/**
|
|
7528
|
-
* Thumbnail
|
|
7643
|
+
* Thumbnail configuration
|
|
7529
7644
|
* @type {ThumbnailSettings || null}
|
|
7530
7645
|
*/
|
|
7531
7646
|
this.ThumbnailSettings = null;
|
|
@@ -7570,7 +7685,7 @@ class EventNotifySetting extends AbstractModel {
|
|
|
7570
7685
|
super();
|
|
7571
7686
|
|
|
7572
7687
|
/**
|
|
7573
|
-
*
|
|
7688
|
+
* Inference stream callback configuration. Currently supports rtmp_push, rtmps_push, and rtmp_pull input types.
|
|
7574
7689
|
* @type {PushEventSetting || null}
|
|
7575
7690
|
*/
|
|
7576
7691
|
this.PushEventSettings = null;
|
|
@@ -7925,34 +8040,30 @@ Note: uppercase letters in the string will be automatically converted to lowerca
|
|
|
7925
8040
|
this.Key = null;
|
|
7926
8041
|
|
|
7927
8042
|
/**
|
|
7928
|
-
*
|
|
7929
|
-
ALL
|
|
7930
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
8043
|
+
* Widevine encryption is required. Selectable options: SD/HD/UHD1/UHD2/AUDIO/ALL.
|
|
8044
|
+
Among them, ALL represents select ALL. If ALL is specified, you cannot add other tracks.
|
|
7931
8045
|
* @type {string || null}
|
|
7932
8046
|
*/
|
|
7933
8047
|
this.Track = null;
|
|
7934
8048
|
|
|
7935
8049
|
/**
|
|
7936
|
-
*
|
|
7937
|
-
Note:
|
|
7938
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
8050
|
+
* KeyId for Widevine encryption, a 32-bit length hexadecimal string.
|
|
8051
|
+
Note: The string will be modified to lowercase.
|
|
7939
8052
|
* @type {string || null}
|
|
7940
8053
|
*/
|
|
7941
8054
|
this.KeyId = null;
|
|
7942
8055
|
|
|
7943
8056
|
/**
|
|
7944
|
-
*
|
|
7945
|
-
|
|
8057
|
+
* Iv for AES encryption in Fairplay, a 32-bit length hexadecimal string.
|
|
8058
|
+
Iv parsing reference
|
|
7946
8059
|
https://tools.ietf.org/html/rfc3826
|
|
7947
|
-
Note:
|
|
7948
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
8060
|
+
Note: The string will be modified to lowercase.
|
|
7949
8061
|
* @type {string || null}
|
|
7950
8062
|
*/
|
|
7951
8063
|
this.Iv = null;
|
|
7952
8064
|
|
|
7953
8065
|
/**
|
|
7954
|
-
*
|
|
7955
|
-
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
8066
|
+
* uri of the license server. AES128 is used. Can be empty.
|
|
7956
8067
|
* @type {string || null}
|
|
7957
8068
|
*/
|
|
7958
8069
|
this.KeyUri = null;
|
|
@@ -9421,6 +9532,46 @@ class SegmentationDescriptorInfo extends AbstractModel {
|
|
|
9421
9532
|
}
|
|
9422
9533
|
}
|
|
9423
9534
|
|
|
9535
|
+
/**
|
|
9536
|
+
* BorderFrameSetting
|
|
9537
|
+
* @class
|
|
9538
|
+
*/
|
|
9539
|
+
class BorderFrameSetting extends AbstractModel {
|
|
9540
|
+
constructor(){
|
|
9541
|
+
super();
|
|
9542
|
+
|
|
9543
|
+
/**
|
|
9544
|
+
*
|
|
9545
|
+
* @type {SourceLayout || null}
|
|
9546
|
+
*/
|
|
9547
|
+
this.LiveSourceLayout = null;
|
|
9548
|
+
|
|
9549
|
+
/**
|
|
9550
|
+
*
|
|
9551
|
+
* @type {string || null}
|
|
9552
|
+
*/
|
|
9553
|
+
this.BackgroundImgUrl = null;
|
|
9554
|
+
|
|
9555
|
+
}
|
|
9556
|
+
|
|
9557
|
+
/**
|
|
9558
|
+
* @private
|
|
9559
|
+
*/
|
|
9560
|
+
deserialize(params) {
|
|
9561
|
+
if (!params) {
|
|
9562
|
+
return;
|
|
9563
|
+
}
|
|
9564
|
+
|
|
9565
|
+
if (params.LiveSourceLayout) {
|
|
9566
|
+
let obj = new SourceLayout();
|
|
9567
|
+
obj.deserialize(params.LiveSourceLayout)
|
|
9568
|
+
this.LiveSourceLayout = obj;
|
|
9569
|
+
}
|
|
9570
|
+
this.BackgroundImgUrl = 'BackgroundImgUrl' in params ? params.BackgroundImgUrl : null;
|
|
9571
|
+
|
|
9572
|
+
}
|
|
9573
|
+
}
|
|
9574
|
+
|
|
9424
9575
|
/**
|
|
9425
9576
|
* The input settings.
|
|
9426
9577
|
The format of an RTMP_PUSH/RTMPS_PUSH address is ${InputAddress}/${AppName}/${StreamName}.
|
|
@@ -9648,6 +9799,7 @@ module.exports = {
|
|
|
9648
9799
|
VideoEnhanceSetting: VideoEnhanceSetting,
|
|
9649
9800
|
AudioTrackInfo: AudioTrackInfo,
|
|
9650
9801
|
CreateStreamLiveInputSecurityGroupResponse: CreateStreamLiveInputSecurityGroupResponse,
|
|
9802
|
+
PipSetting: PipSetting,
|
|
9651
9803
|
CreateWatermarkDetectionRequest: CreateWatermarkDetectionRequest,
|
|
9652
9804
|
StreamInfo: StreamInfo,
|
|
9653
9805
|
StreamVideoInfo: StreamVideoInfo,
|
|
@@ -9674,6 +9826,7 @@ module.exports = {
|
|
|
9674
9826
|
DestinationInfo: DestinationInfo,
|
|
9675
9827
|
Tag: Tag,
|
|
9676
9828
|
DeleteStreamLiveInputRequest: DeleteStreamLiveInputRequest,
|
|
9829
|
+
SourceLayout: SourceLayout,
|
|
9677
9830
|
ModifyStreamLiveInputSecurityGroupResponse: ModifyStreamLiveInputSecurityGroupResponse,
|
|
9678
9831
|
AmazonS3Settings: AmazonS3Settings,
|
|
9679
9832
|
ModifyStreamLiveInputRequest: ModifyStreamLiveInputRequest,
|
|
@@ -9815,6 +9968,7 @@ module.exports = {
|
|
|
9815
9968
|
DescribeStreamLiveInputSecurityGroupResponse: DescribeStreamLiveInputSecurityGroupResponse,
|
|
9816
9969
|
StreamLiveChannelInfo: StreamLiveChannelInfo,
|
|
9817
9970
|
SegmentationDescriptorInfo: SegmentationDescriptorInfo,
|
|
9971
|
+
BorderFrameSetting: BorderFrameSetting,
|
|
9818
9972
|
InputSettingInfo: InputSettingInfo,
|
|
9819
9973
|
DescribeImageSettings: DescribeImageSettings,
|
|
9820
9974
|
DeleteStreamLiveChannelRequest: DeleteStreamLiveChannelRequest,
|