tencentcloud-sdk-nodejs-intl-en 3.0.1348 → 3.0.1349
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/common/sdk_version.js +1 -1
- package/tencentcloud/quota/v20241204/models.js +535 -23
- package/tencentcloud/quota/v20241204/quota_client.js +54 -24
- package/tencentcloud/vod/v20180717/models.js +919 -409
- package/tencentcloud/vod/v20180717/vod_client.js +57 -46
|
@@ -2028,7 +2028,7 @@ class CacheConfigFollowOrigin extends AbstractModel {
|
|
|
2028
2028
|
}
|
|
2029
2029
|
|
|
2030
2030
|
/**
|
|
2031
|
-
*
|
|
2031
|
+
*
|
|
2032
2032
|
* @class
|
|
2033
2033
|
*/
|
|
2034
2034
|
class MediaMiniProgramReviewElem extends AbstractModel {
|
|
@@ -2475,26 +2475,18 @@ class Origin extends AbstractModel {
|
|
|
2475
2475
|
}
|
|
2476
2476
|
|
|
2477
2477
|
/**
|
|
2478
|
-
*
|
|
2478
|
+
* Face recognition media information
|
|
2479
2479
|
* @class
|
|
2480
2480
|
*/
|
|
2481
|
-
class
|
|
2481
|
+
class FaceRecognitionInfo extends AbstractModel {
|
|
2482
2482
|
constructor(){
|
|
2483
2483
|
super();
|
|
2484
2484
|
|
|
2485
2485
|
/**
|
|
2486
|
-
*
|
|
2487
|
-
|
|
2488
|
-
* @type {number || null}
|
|
2486
|
+
* <p>Face recognition task list</p>
|
|
2487
|
+
* @type {Array.<FaceRecognitionTask> || null}
|
|
2489
2488
|
*/
|
|
2490
|
-
this.
|
|
2491
|
-
|
|
2492
|
-
/**
|
|
2493
|
-
* Information set of screenshots of the same specification. Each element represents a screenshot.
|
|
2494
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
2495
|
-
* @type {Array.<MediaSnapshotByTimePicInfoItem> || null}
|
|
2496
|
-
*/
|
|
2497
|
-
this.PicInfoSet = null;
|
|
2489
|
+
this.FaceRecognitionTasks = null;
|
|
2498
2490
|
|
|
2499
2491
|
}
|
|
2500
2492
|
|
|
@@ -2505,14 +2497,13 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
2505
2497
|
if (!params) {
|
|
2506
2498
|
return;
|
|
2507
2499
|
}
|
|
2508
|
-
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
2509
2500
|
|
|
2510
|
-
if (params.
|
|
2511
|
-
this.
|
|
2512
|
-
for (let z in params.
|
|
2513
|
-
let obj = new
|
|
2514
|
-
obj.deserialize(params.
|
|
2515
|
-
this.
|
|
2501
|
+
if (params.FaceRecognitionTasks) {
|
|
2502
|
+
this.FaceRecognitionTasks = new Array();
|
|
2503
|
+
for (let z in params.FaceRecognitionTasks) {
|
|
2504
|
+
let obj = new FaceRecognitionTask();
|
|
2505
|
+
obj.deserialize(params.FaceRecognitionTasks[z]);
|
|
2506
|
+
this.FaceRecognitionTasks.push(obj);
|
|
2516
2507
|
}
|
|
2517
2508
|
}
|
|
2518
2509
|
|
|
@@ -7859,6 +7850,51 @@ class AiRecognitionTaskOcrWordsResultInput extends AbstractModel {
|
|
|
7859
7850
|
}
|
|
7860
7851
|
}
|
|
7861
7852
|
|
|
7853
|
+
/**
|
|
7854
|
+
* Information of time point screenshot in VOD file
|
|
7855
|
+
* @class
|
|
7856
|
+
*/
|
|
7857
|
+
class MediaSnapshotByTimeOffsetItem extends AbstractModel {
|
|
7858
|
+
constructor(){
|
|
7859
|
+
super();
|
|
7860
|
+
|
|
7861
|
+
/**
|
|
7862
|
+
* Specification of a time point screenshot. For more information, please see [Parameter Template for Time Point Screencapturing](https://intl.cloud.tencent.com/document/product/266/33480?from_cn_redirect=1#.E6.97.B6.E9.97.B4.E7.82.B9.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF).
|
|
7863
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
7864
|
+
* @type {number || null}
|
|
7865
|
+
*/
|
|
7866
|
+
this.Definition = null;
|
|
7867
|
+
|
|
7868
|
+
/**
|
|
7869
|
+
* Information set of screenshots of the same specification. Each element represents a screenshot.
|
|
7870
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
7871
|
+
* @type {Array.<MediaSnapshotByTimePicInfoItem> || null}
|
|
7872
|
+
*/
|
|
7873
|
+
this.PicInfoSet = null;
|
|
7874
|
+
|
|
7875
|
+
}
|
|
7876
|
+
|
|
7877
|
+
/**
|
|
7878
|
+
* @private
|
|
7879
|
+
*/
|
|
7880
|
+
deserialize(params) {
|
|
7881
|
+
if (!params) {
|
|
7882
|
+
return;
|
|
7883
|
+
}
|
|
7884
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
7885
|
+
|
|
7886
|
+
if (params.PicInfoSet) {
|
|
7887
|
+
this.PicInfoSet = new Array();
|
|
7888
|
+
for (let z in params.PicInfoSet) {
|
|
7889
|
+
let obj = new MediaSnapshotByTimePicInfoItem();
|
|
7890
|
+
obj.deserialize(params.PicInfoSet[z]);
|
|
7891
|
+
this.PicInfoSet.push(obj);
|
|
7892
|
+
}
|
|
7893
|
+
}
|
|
7894
|
+
|
|
7895
|
+
}
|
|
7896
|
+
}
|
|
7897
|
+
|
|
7862
7898
|
/**
|
|
7863
7899
|
* Scene AIGC image task output file information.
|
|
7864
7900
|
* @class
|
|
@@ -10282,54 +10318,18 @@ class AiSampleFaceInfo extends AbstractModel {
|
|
|
10282
10318
|
}
|
|
10283
10319
|
|
|
10284
10320
|
/**
|
|
10285
|
-
* Image
|
|
10321
|
+
* Image understanding information.
|
|
10286
10322
|
* @class
|
|
10287
10323
|
*/
|
|
10288
|
-
class
|
|
10324
|
+
class ImageUnderstandingInfo extends AbstractModel {
|
|
10289
10325
|
constructor(){
|
|
10290
10326
|
super();
|
|
10291
10327
|
|
|
10292
10328
|
/**
|
|
10293
|
-
* Image
|
|
10294
|
-
|
|
10295
|
-
* @type {number || null}
|
|
10296
|
-
*/
|
|
10297
|
-
this.Definition = null;
|
|
10298
|
-
|
|
10299
|
-
/**
|
|
10300
|
-
* Subimage height of image sprite.
|
|
10301
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
10302
|
-
* @type {number || null}
|
|
10303
|
-
*/
|
|
10304
|
-
this.Height = null;
|
|
10305
|
-
|
|
10306
|
-
/**
|
|
10307
|
-
* Subimage width of image sprite.
|
|
10308
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
10309
|
-
* @type {number || null}
|
|
10310
|
-
*/
|
|
10311
|
-
this.Width = null;
|
|
10312
|
-
|
|
10313
|
-
/**
|
|
10314
|
-
* Total number of subimages in each image sprite.
|
|
10315
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
10316
|
-
* @type {number || null}
|
|
10317
|
-
*/
|
|
10318
|
-
this.TotalCount = null;
|
|
10319
|
-
|
|
10320
|
-
/**
|
|
10321
|
-
* Address of each image sprite.
|
|
10322
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
10323
|
-
* @type {Array.<string> || null}
|
|
10324
|
-
*/
|
|
10325
|
-
this.ImageUrlSet = null;
|
|
10326
|
-
|
|
10327
|
-
/**
|
|
10328
|
-
* Address of WebVtt file for the position-time relationship among subimages in an image sprite. The WebVtt file indicates the corresponding time points of each subimage and their coordinates in the image sprite, which is typically used by the player for implementing preview.
|
|
10329
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
10330
|
-
* @type {string || null}
|
|
10329
|
+
* Image understanding collection.
|
|
10330
|
+
* @type {Array.<ImageUnderstandingItem> || null}
|
|
10331
10331
|
*/
|
|
10332
|
-
this.
|
|
10332
|
+
this.ImageUnderstandingSet = null;
|
|
10333
10333
|
|
|
10334
10334
|
}
|
|
10335
10335
|
|
|
@@ -10340,12 +10340,15 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
10340
10340
|
if (!params) {
|
|
10341
10341
|
return;
|
|
10342
10342
|
}
|
|
10343
|
-
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
|
|
10347
|
-
|
|
10348
|
-
|
|
10343
|
+
|
|
10344
|
+
if (params.ImageUnderstandingSet) {
|
|
10345
|
+
this.ImageUnderstandingSet = new Array();
|
|
10346
|
+
for (let z in params.ImageUnderstandingSet) {
|
|
10347
|
+
let obj = new ImageUnderstandingItem();
|
|
10348
|
+
obj.deserialize(params.ImageUnderstandingSet[z]);
|
|
10349
|
+
this.ImageUnderstandingSet.push(obj);
|
|
10350
|
+
}
|
|
10351
|
+
}
|
|
10349
10352
|
|
|
10350
10353
|
}
|
|
10351
10354
|
}
|
|
@@ -12628,7 +12631,7 @@ class DeleteLLMComprehendTemplateResponse extends AbstractModel {
|
|
|
12628
12631
|
}
|
|
12629
12632
|
|
|
12630
12633
|
/**
|
|
12631
|
-
*
|
|
12634
|
+
*
|
|
12632
12635
|
* @class
|
|
12633
12636
|
*/
|
|
12634
12637
|
class MediaMiniProgramReviewInfoItem extends AbstractModel {
|
|
@@ -14351,20 +14354,21 @@ class MediaSubtitleItem extends AbstractModel {
|
|
|
14351
14354
|
this.Name = null;
|
|
14352
14355
|
|
|
14353
14356
|
/**
|
|
14354
|
-
* Subtitle language. Common values:
|
|
14355
|
-
<li
|
|
14356
|
-
<li
|
|
14357
|
-
<li
|
|
14358
|
-
<li
|
|
14359
|
-
<li
|
|
14360
|
-
<li
|
|
14361
|
-
<li
|
|
14362
|
-
<li
|
|
14363
|
-
<li
|
|
14364
|
-
<li
|
|
14365
|
-
<li
|
|
14366
|
-
<li
|
|
14367
|
-
<li
|
|
14357
|
+
* Subtitle language. Common values are as follows:
|
|
14358
|
+
<li>zh: Chinese;</li>
|
|
14359
|
+
<li>en: English;</li>
|
|
14360
|
+
<li>ja: Japanese;</li>
|
|
14361
|
+
<li>ko: Korean;</li>
|
|
14362
|
+
<li>vi: Vietnamese.</li>
|
|
14363
|
+
<li>ms: Malay;</li>
|
|
14364
|
+
<li>th: Thai;</li>
|
|
14365
|
+
<li>pt: Portuguese;</li>
|
|
14366
|
+
<li>tr: Turkish;</li>
|
|
14367
|
+
<li>ar: Arabic;</li>
|
|
14368
|
+
<li>es: Spanish;</li>
|
|
14369
|
+
<li>hi: Hindi;</li>
|
|
14370
|
+
<li>fr: French.</li>
|
|
14371
|
+
For other values, see [RFC5646](https://tools.ietf.org/html/rfc5646)
|
|
14368
14372
|
* @type {string || null}
|
|
14369
14373
|
*/
|
|
14370
14374
|
this.Language = null;
|
|
@@ -14383,9 +14387,9 @@ class MediaSubtitleItem extends AbstractModel {
|
|
|
14383
14387
|
this.Url = null;
|
|
14384
14388
|
|
|
14385
14389
|
/**
|
|
14386
|
-
* Subtitle source
|
|
14387
|
-
<li>UserUploaded:
|
|
14388
|
-
<li>AIRecognition: AI recognition, generated through
|
|
14390
|
+
* Subtitle source. Value ranges from...to...
|
|
14391
|
+
<li>UserUploaded: User upload.</li>
|
|
14392
|
+
<li>AIRecognition: AI recognition, generated through speech recognition or speech translation generation.</li>
|
|
14389
14393
|
* @type {string || null}
|
|
14390
14394
|
*/
|
|
14391
14395
|
this.Source = null;
|
|
@@ -16623,7 +16627,7 @@ class DescribeAdaptiveDynamicStreamingTemplatesResponse extends AbstractModel {
|
|
|
16623
16627
|
}
|
|
16624
16628
|
|
|
16625
16629
|
/**
|
|
16626
|
-
*
|
|
16630
|
+
*
|
|
16627
16631
|
* @class
|
|
16628
16632
|
*/
|
|
16629
16633
|
class MediaMiniProgramReviewInfo extends AbstractModel {
|
|
@@ -19273,19 +19277,31 @@ class LiveRecordInfo extends AbstractModel {
|
|
|
19273
19277
|
super();
|
|
19274
19278
|
|
|
19275
19279
|
/**
|
|
19276
|
-
* Live
|
|
19280
|
+
* <p>Live streaming Recording domain name</p>
|
|
19281
|
+
* @type {string || null}
|
|
19282
|
+
*/
|
|
19283
|
+
this.Domain = null;
|
|
19284
|
+
|
|
19285
|
+
/**
|
|
19286
|
+
* <p>Live streaming Recording Path</p>
|
|
19287
|
+
* @type {string || null}
|
|
19288
|
+
*/
|
|
19289
|
+
this.Path = null;
|
|
19290
|
+
|
|
19291
|
+
/**
|
|
19292
|
+
* <p>Live recording stream ID.</p>
|
|
19277
19293
|
* @type {string || null}
|
|
19278
19294
|
*/
|
|
19279
19295
|
this.StreamId = null;
|
|
19280
19296
|
|
|
19281
19297
|
/**
|
|
19282
|
-
* Recording start time
|
|
19298
|
+
* <p>Recording start time in <a href="https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I">ISO datetime format</a>.</p>
|
|
19283
19299
|
* @type {string || null}
|
|
19284
19300
|
*/
|
|
19285
19301
|
this.RecordStartTime = null;
|
|
19286
19302
|
|
|
19287
19303
|
/**
|
|
19288
|
-
* Recording end time, using
|
|
19304
|
+
* <p>Recording end time, using <a href="https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I">ISO date format</a>.</p>
|
|
19289
19305
|
* @type {string || null}
|
|
19290
19306
|
*/
|
|
19291
19307
|
this.RecordEndTime = null;
|
|
@@ -19299,6 +19315,8 @@ class LiveRecordInfo extends AbstractModel {
|
|
|
19299
19315
|
if (!params) {
|
|
19300
19316
|
return;
|
|
19301
19317
|
}
|
|
19318
|
+
this.Domain = 'Domain' in params ? params.Domain : null;
|
|
19319
|
+
this.Path = 'Path' in params ? params.Path : null;
|
|
19302
19320
|
this.StreamId = 'StreamId' in params ? params.StreamId : null;
|
|
19303
19321
|
this.RecordStartTime = 'RecordStartTime' in params ? params.RecordStartTime : null;
|
|
19304
19322
|
this.RecordEndTime = 'RecordEndTime' in params ? params.RecordEndTime : null;
|
|
@@ -19629,6 +19647,34 @@ class CreateEnhanceMediaTemplateResponse extends AbstractModel {
|
|
|
19629
19647
|
}
|
|
19630
19648
|
}
|
|
19631
19649
|
|
|
19650
|
+
/**
|
|
19651
|
+
* Intelligent knowledge base info for media assets
|
|
19652
|
+
* @class
|
|
19653
|
+
*/
|
|
19654
|
+
class KnowledgeBasesInfo extends AbstractModel {
|
|
19655
|
+
constructor(){
|
|
19656
|
+
super();
|
|
19657
|
+
|
|
19658
|
+
/**
|
|
19659
|
+
* <p>Current library list of media assets to import</p>
|
|
19660
|
+
* @type {Array.<string> || null}
|
|
19661
|
+
*/
|
|
19662
|
+
this.Bases = null;
|
|
19663
|
+
|
|
19664
|
+
}
|
|
19665
|
+
|
|
19666
|
+
/**
|
|
19667
|
+
* @private
|
|
19668
|
+
*/
|
|
19669
|
+
deserialize(params) {
|
|
19670
|
+
if (!params) {
|
|
19671
|
+
return;
|
|
19672
|
+
}
|
|
19673
|
+
this.Bases = 'Bases' in params ? params.Bases : null;
|
|
19674
|
+
|
|
19675
|
+
}
|
|
19676
|
+
}
|
|
19677
|
+
|
|
19632
19678
|
/**
|
|
19633
19679
|
* DeleteReviewTemplate response structure.
|
|
19634
19680
|
* @class
|
|
@@ -20460,14 +20506,13 @@ class SearchMediaResponse extends AbstractModel {
|
|
|
20460
20506
|
super();
|
|
20461
20507
|
|
|
20462
20508
|
/**
|
|
20463
|
-
*
|
|
20464
|
-
<li>Maximum value: 5000. If the number of eligible entries is greater than 5,000, this field will return 5,000 instead of the actual number.</li>
|
|
20509
|
+
* <p>Total records that meet search criteria.</p><li>Maximum value: 5000. When the number of records hit exceeds 5000, this field will return 5000 instead of the actual total count.</li>
|
|
20465
20510
|
* @type {number || null}
|
|
20466
20511
|
*/
|
|
20467
20512
|
this.TotalCount = null;
|
|
20468
20513
|
|
|
20469
20514
|
/**
|
|
20470
|
-
* Media file information list
|
|
20515
|
+
* <p>Media file information list.</p>
|
|
20471
20516
|
* @type {Array.<MediaInfo> || null}
|
|
20472
20517
|
*/
|
|
20473
20518
|
this.MediaInfoSet = null;
|
|
@@ -21760,68 +21805,24 @@ class RestoreMediaResponse extends AbstractModel {
|
|
|
21760
21805
|
}
|
|
21761
21806
|
|
|
21762
21807
|
/**
|
|
21763
|
-
*
|
|
21808
|
+
* Image understanding information item.
|
|
21764
21809
|
* @class
|
|
21765
21810
|
*/
|
|
21766
|
-
class
|
|
21811
|
+
class ImageUnderstandingItem extends AbstractModel {
|
|
21767
21812
|
constructor(){
|
|
21768
21813
|
super();
|
|
21769
21814
|
|
|
21770
21815
|
/**
|
|
21771
|
-
*
|
|
21772
|
-
* @type {string || null}
|
|
21773
|
-
*/
|
|
21774
|
-
this.Status = null;
|
|
21775
|
-
|
|
21776
|
-
/**
|
|
21777
|
-
* Error code. An empty string indicates the task is successful; other values indicate failure. For details, see [Video Processing Error Codes](https://intl.cloud.tencent.com/zh/document/product/266/39145).
|
|
21778
|
-
* @type {string || null}
|
|
21779
|
-
*/
|
|
21780
|
-
this.ErrCodeExt = null;
|
|
21781
|
-
|
|
21782
|
-
/**
|
|
21783
|
-
* Error code. 0 indicates the task is successful; other values indicate failure. You’re not recommended to use this parameter, but to use the new parameter `ErrCodeExt`.
|
|
21816
|
+
* Template id.
|
|
21784
21817
|
* @type {number || null}
|
|
21785
21818
|
*/
|
|
21786
|
-
this.
|
|
21787
|
-
|
|
21788
|
-
/**
|
|
21789
|
-
* Error message.
|
|
21790
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
21791
|
-
* @type {string || null}
|
|
21792
|
-
*/
|
|
21793
|
-
this.Message = null;
|
|
21794
|
-
|
|
21795
|
-
/**
|
|
21796
|
-
* Input of time point screencapturing task.
|
|
21797
|
-
* @type {SnapshotByTimeOffsetTaskInput || null}
|
|
21798
|
-
*/
|
|
21799
|
-
this.Input = null;
|
|
21800
|
-
|
|
21801
|
-
/**
|
|
21802
|
-
* Output of time point screencapturing task.
|
|
21803
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
21804
|
-
* @type {MediaSnapshotByTimeOffsetItem || null}
|
|
21805
|
-
*/
|
|
21806
|
-
this.Output = null;
|
|
21807
|
-
|
|
21808
|
-
/**
|
|
21809
|
-
* The progress of a time point screenshot task. Value range: 0-100.
|
|
21810
|
-
* @type {number || null}
|
|
21811
|
-
*/
|
|
21812
|
-
this.Progress = null;
|
|
21819
|
+
this.Definition = null;
|
|
21813
21820
|
|
|
21814
21821
|
/**
|
|
21815
|
-
*
|
|
21816
|
-
* @type {
|
|
21822
|
+
* Task output file.
|
|
21823
|
+
* @type {Array.<MPSOutputFileInfo> || null}
|
|
21817
21824
|
*/
|
|
21818
|
-
this.
|
|
21819
|
-
|
|
21820
|
-
/**
|
|
21821
|
-
* The time when the point-in-time screenshot task is completed, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format).
|
|
21822
|
-
* @type {string || null}
|
|
21823
|
-
*/
|
|
21824
|
-
this.FinishTime = null;
|
|
21825
|
+
this.OutputFile = null;
|
|
21825
21826
|
|
|
21826
21827
|
}
|
|
21827
21828
|
|
|
@@ -21832,25 +21833,16 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
21832
21833
|
if (!params) {
|
|
21833
21834
|
return;
|
|
21834
21835
|
}
|
|
21835
|
-
this.
|
|
21836
|
-
this.ErrCodeExt = 'ErrCodeExt' in params ? params.ErrCodeExt : null;
|
|
21837
|
-
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
21838
|
-
this.Message = 'Message' in params ? params.Message : null;
|
|
21839
|
-
|
|
21840
|
-
if (params.Input) {
|
|
21841
|
-
let obj = new SnapshotByTimeOffsetTaskInput();
|
|
21842
|
-
obj.deserialize(params.Input)
|
|
21843
|
-
this.Input = obj;
|
|
21844
|
-
}
|
|
21836
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
21845
21837
|
|
|
21846
|
-
if (params.
|
|
21847
|
-
|
|
21848
|
-
|
|
21849
|
-
|
|
21838
|
+
if (params.OutputFile) {
|
|
21839
|
+
this.OutputFile = new Array();
|
|
21840
|
+
for (let z in params.OutputFile) {
|
|
21841
|
+
let obj = new MPSOutputFileInfo();
|
|
21842
|
+
obj.deserialize(params.OutputFile[z]);
|
|
21843
|
+
this.OutputFile.push(obj);
|
|
21844
|
+
}
|
|
21850
21845
|
}
|
|
21851
|
-
this.Progress = 'Progress' in params ? params.Progress : null;
|
|
21852
|
-
this.BeginProcessTime = 'BeginProcessTime' in params ? params.BeginProcessTime : null;
|
|
21853
|
-
this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
|
|
21854
21846
|
|
|
21855
21847
|
}
|
|
21856
21848
|
}
|
|
@@ -22602,6 +22594,41 @@ class BlurConfigureInfoForUpdate extends AbstractModel {
|
|
|
22602
22594
|
}
|
|
22603
22595
|
}
|
|
22604
22596
|
|
|
22597
|
+
/**
|
|
22598
|
+
* ProcessMediaByUrl response structure.
|
|
22599
|
+
* @class
|
|
22600
|
+
*/
|
|
22601
|
+
class ProcessMediaByUrlResponse extends AbstractModel {
|
|
22602
|
+
constructor(){
|
|
22603
|
+
super();
|
|
22604
|
+
|
|
22605
|
+
/**
|
|
22606
|
+
* Task ID
|
|
22607
|
+
* @type {string || null}
|
|
22608
|
+
*/
|
|
22609
|
+
this.TaskId = null;
|
|
22610
|
+
|
|
22611
|
+
/**
|
|
22612
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
22613
|
+
* @type {string || null}
|
|
22614
|
+
*/
|
|
22615
|
+
this.RequestId = null;
|
|
22616
|
+
|
|
22617
|
+
}
|
|
22618
|
+
|
|
22619
|
+
/**
|
|
22620
|
+
* @private
|
|
22621
|
+
*/
|
|
22622
|
+
deserialize(params) {
|
|
22623
|
+
if (!params) {
|
|
22624
|
+
return;
|
|
22625
|
+
}
|
|
22626
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
22627
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
22628
|
+
|
|
22629
|
+
}
|
|
22630
|
+
}
|
|
22631
|
+
|
|
22605
22632
|
/**
|
|
22606
22633
|
* Video stream configuration information
|
|
22607
22634
|
* @class
|
|
@@ -23606,6 +23633,102 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
23606
23633
|
}
|
|
23607
23634
|
}
|
|
23608
23635
|
|
|
23636
|
+
/**
|
|
23637
|
+
* Result type of time point screencapturing task
|
|
23638
|
+
* @class
|
|
23639
|
+
*/
|
|
23640
|
+
class MediaProcessTaskSnapshotByTimeOffsetResult extends AbstractModel {
|
|
23641
|
+
constructor(){
|
|
23642
|
+
super();
|
|
23643
|
+
|
|
23644
|
+
/**
|
|
23645
|
+
* Task status. Valid values: PROCESSING, SUCCESS, FAIL.
|
|
23646
|
+
* @type {string || null}
|
|
23647
|
+
*/
|
|
23648
|
+
this.Status = null;
|
|
23649
|
+
|
|
23650
|
+
/**
|
|
23651
|
+
* Error code. An empty string indicates the task is successful; other values indicate failure. For details, see [Video Processing Error Codes](https://intl.cloud.tencent.com/zh/document/product/266/39145).
|
|
23652
|
+
* @type {string || null}
|
|
23653
|
+
*/
|
|
23654
|
+
this.ErrCodeExt = null;
|
|
23655
|
+
|
|
23656
|
+
/**
|
|
23657
|
+
* Error code. 0 indicates the task is successful; other values indicate failure. You’re not recommended to use this parameter, but to use the new parameter `ErrCodeExt`.
|
|
23658
|
+
* @type {number || null}
|
|
23659
|
+
*/
|
|
23660
|
+
this.ErrCode = null;
|
|
23661
|
+
|
|
23662
|
+
/**
|
|
23663
|
+
* Error message.
|
|
23664
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
23665
|
+
* @type {string || null}
|
|
23666
|
+
*/
|
|
23667
|
+
this.Message = null;
|
|
23668
|
+
|
|
23669
|
+
/**
|
|
23670
|
+
* Input of time point screencapturing task.
|
|
23671
|
+
* @type {SnapshotByTimeOffsetTaskInput || null}
|
|
23672
|
+
*/
|
|
23673
|
+
this.Input = null;
|
|
23674
|
+
|
|
23675
|
+
/**
|
|
23676
|
+
* Output of time point screencapturing task.
|
|
23677
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
23678
|
+
* @type {MediaSnapshotByTimeOffsetItem || null}
|
|
23679
|
+
*/
|
|
23680
|
+
this.Output = null;
|
|
23681
|
+
|
|
23682
|
+
/**
|
|
23683
|
+
* The progress of a time point screenshot task. Value range: 0-100.
|
|
23684
|
+
* @type {number || null}
|
|
23685
|
+
*/
|
|
23686
|
+
this.Progress = null;
|
|
23687
|
+
|
|
23688
|
+
/**
|
|
23689
|
+
* The time when the point-in-time screenshot task started to be executed, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format).
|
|
23690
|
+
* @type {string || null}
|
|
23691
|
+
*/
|
|
23692
|
+
this.BeginProcessTime = null;
|
|
23693
|
+
|
|
23694
|
+
/**
|
|
23695
|
+
* The time when the point-in-time screenshot task is completed, using [ISO date format](https://www.tencentcloud.com/document/product/266/11732#iso-date-format).
|
|
23696
|
+
* @type {string || null}
|
|
23697
|
+
*/
|
|
23698
|
+
this.FinishTime = null;
|
|
23699
|
+
|
|
23700
|
+
}
|
|
23701
|
+
|
|
23702
|
+
/**
|
|
23703
|
+
* @private
|
|
23704
|
+
*/
|
|
23705
|
+
deserialize(params) {
|
|
23706
|
+
if (!params) {
|
|
23707
|
+
return;
|
|
23708
|
+
}
|
|
23709
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
23710
|
+
this.ErrCodeExt = 'ErrCodeExt' in params ? params.ErrCodeExt : null;
|
|
23711
|
+
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
23712
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
23713
|
+
|
|
23714
|
+
if (params.Input) {
|
|
23715
|
+
let obj = new SnapshotByTimeOffsetTaskInput();
|
|
23716
|
+
obj.deserialize(params.Input)
|
|
23717
|
+
this.Input = obj;
|
|
23718
|
+
}
|
|
23719
|
+
|
|
23720
|
+
if (params.Output) {
|
|
23721
|
+
let obj = new MediaSnapshotByTimeOffsetItem();
|
|
23722
|
+
obj.deserialize(params.Output)
|
|
23723
|
+
this.Output = obj;
|
|
23724
|
+
}
|
|
23725
|
+
this.Progress = 'Progress' in params ? params.Progress : null;
|
|
23726
|
+
this.BeginProcessTime = 'BeginProcessTime' in params ? params.BeginProcessTime : null;
|
|
23727
|
+
this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
|
|
23728
|
+
|
|
23729
|
+
}
|
|
23730
|
+
}
|
|
23731
|
+
|
|
23609
23732
|
/**
|
|
23610
23733
|
* The moderation result for politically sensitive content in an image.
|
|
23611
23734
|
* @class
|
|
@@ -29985,24 +30108,48 @@ class SemanticsSearchResult extends AbstractModel {
|
|
|
29985
30108
|
}
|
|
29986
30109
|
|
|
29987
30110
|
/**
|
|
29988
|
-
*
|
|
30111
|
+
* MPS intelligent task
|
|
29989
30112
|
* @class
|
|
29990
30113
|
*/
|
|
29991
|
-
class
|
|
30114
|
+
class MPSAiMediaTask extends AbstractModel {
|
|
29992
30115
|
constructor(){
|
|
29993
30116
|
super();
|
|
29994
30117
|
|
|
29995
30118
|
/**
|
|
29996
|
-
*
|
|
29997
|
-
* @type {
|
|
30119
|
+
* MPS intelligent task template ID
|
|
30120
|
+
* @type {number || null}
|
|
29998
30121
|
*/
|
|
29999
|
-
this.
|
|
30122
|
+
this.Definition = null;
|
|
30000
30123
|
|
|
30001
30124
|
/**
|
|
30002
|
-
*
|
|
30125
|
+
* MPS intelligent task output file collection
|
|
30126
|
+
* @type {Array.<MPSOutputFileInfo> || null}
|
|
30127
|
+
*/
|
|
30128
|
+
this.OutputFile = null;
|
|
30129
|
+
|
|
30130
|
+
/**
|
|
30131
|
+
* The returned result of the MPS intelligent task. This field corresponds to the Output result in the MPS task return and is returned in JSON format.
|
|
30132
|
+
Different MPS task output results have different structures. For the specific return content, see the MPS task output struct.
|
|
30133
|
+
[Intelligent classification result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskClassificationOutput)
|
|
30134
|
+
[Intelligent cover result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskCoverOutput)
|
|
30135
|
+
[Intelligent Tag Result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskTagOutput)
|
|
30136
|
+
[Intelligent frame tagging classification result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskFrameTagOutput)
|
|
30137
|
+
[Intelligent Highlight Result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskHighlightOutput)
|
|
30138
|
+
[Video Splitting Result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskSegmentOutput)
|
|
30139
|
+
[Intelligent video opening/closing credits result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskHeadTailOutput)
|
|
30140
|
+
[Intelligent summary result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskDescriptionOutput)
|
|
30141
|
+
[Horizontal-to-Vertical Video Transformation Result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskHorizontalToVerticalOutput)
|
|
30142
|
+
[Intelligent dubbing result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskDubbingOutput)
|
|
30143
|
+
[Intelligent video understanding result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskVideoComprehensionOutput)
|
|
30144
|
+
[Intelligent caption full speech recognition result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#SmartSubtitleTaskAsrFullTextResultOutput)
|
|
30145
|
+
[Intelligent caption translation result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#SmartSubtitleTaskTransTextResultOutput)
|
|
30146
|
+
[Intelligent caption pure srt translation result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#PureSubtitleTransResultOutput)
|
|
30147
|
+
[Smart subtitling text extraction result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#SmartSubtitleTaskTextResultOutput)
|
|
30148
|
+
|
|
30149
|
+
|
|
30003
30150
|
* @type {string || null}
|
|
30004
30151
|
*/
|
|
30005
|
-
this.
|
|
30152
|
+
this.OutputText = null;
|
|
30006
30153
|
|
|
30007
30154
|
}
|
|
30008
30155
|
|
|
@@ -30013,8 +30160,17 @@ class ProcessMediaByUrlResponse extends AbstractModel {
|
|
|
30013
30160
|
if (!params) {
|
|
30014
30161
|
return;
|
|
30015
30162
|
}
|
|
30016
|
-
this.
|
|
30017
|
-
|
|
30163
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
30164
|
+
|
|
30165
|
+
if (params.OutputFile) {
|
|
30166
|
+
this.OutputFile = new Array();
|
|
30167
|
+
for (let z in params.OutputFile) {
|
|
30168
|
+
let obj = new MPSOutputFileInfo();
|
|
30169
|
+
obj.deserialize(params.OutputFile[z]);
|
|
30170
|
+
this.OutputFile.push(obj);
|
|
30171
|
+
}
|
|
30172
|
+
}
|
|
30173
|
+
this.OutputText = 'OutputText' in params ? params.OutputText : null;
|
|
30018
30174
|
|
|
30019
30175
|
}
|
|
30020
30176
|
}
|
|
@@ -30258,99 +30414,24 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
30258
30414
|
}
|
|
30259
30415
|
|
|
30260
30416
|
/**
|
|
30261
|
-
*
|
|
30417
|
+
* face recognition task
|
|
30262
30418
|
* @class
|
|
30263
30419
|
*/
|
|
30264
|
-
class
|
|
30420
|
+
class FaceRecognitionTask extends AbstractModel {
|
|
30265
30421
|
constructor(){
|
|
30266
30422
|
super();
|
|
30267
30423
|
|
|
30268
30424
|
/**
|
|
30269
|
-
*
|
|
30270
|
-
* @type {number || null}
|
|
30271
|
-
*/
|
|
30272
|
-
this.StartTimeOffset = null;
|
|
30273
|
-
|
|
30274
|
-
/**
|
|
30275
|
-
* End time offset of a suspected segment in seconds.
|
|
30276
|
-
* @type {number || null}
|
|
30277
|
-
*/
|
|
30278
|
-
this.EndTimeOffset = null;
|
|
30279
|
-
|
|
30280
|
-
/**
|
|
30281
|
-
* Confidence score for the detected politically sensitive content
|
|
30282
|
-
* @type {number || null}
|
|
30283
|
-
*/
|
|
30284
|
-
this.Confidence = null;
|
|
30285
|
-
|
|
30286
|
-
/**
|
|
30287
|
-
* Processing suggestion for the detected politically sensitive content. Valid values:
|
|
30288
|
-
<li>pass</li>
|
|
30289
|
-
<li>review</li>
|
|
30290
|
-
<li>block</li>
|
|
30291
|
-
* @type {string || null}
|
|
30292
|
-
*/
|
|
30293
|
-
this.Suggestion = null;
|
|
30294
|
-
|
|
30295
|
-
/**
|
|
30296
|
-
* Name of the politically sensitive content or banned images
|
|
30297
|
-
* @type {string || null}
|
|
30298
|
-
*/
|
|
30299
|
-
this.Name = null;
|
|
30300
|
-
|
|
30301
|
-
/**
|
|
30302
|
-
* Labels for the detected politically sensitive content. The relationship between the values of this parameter and those of the `LabelSet` parameter in [PoliticalImgReviewTemplateInfo](https://intl.cloud.tencent.com/document/api/266/31773?from_cn_redirect=1#PoliticalImgReviewTemplateInfo) is as follows:
|
|
30303
|
-
violation_photo:
|
|
30304
|
-
<li>`violation_photo`: banned images</li>
|
|
30305
|
-
politician:
|
|
30306
|
-
<li>`nation_politician`: state leader of China</li>
|
|
30307
|
-
<li>`province_politician`: provincial officials</li>
|
|
30308
|
-
<li>`bureau_politician`: bureau-level officials</li>
|
|
30309
|
-
<li>`county_politician`: county-level officials</li>
|
|
30310
|
-
<li>`rural_politician`: township-level officials</li>
|
|
30311
|
-
<li>`sensitive_politician`: politically sensitive people</li>
|
|
30312
|
-
<li>`foreign_politician`: state leaders of other countries</li>
|
|
30313
|
-
entertainment:
|
|
30314
|
-
<li>`sensitive_entertainment`: banned people in the entertainment industry</li>
|
|
30315
|
-
sport:
|
|
30316
|
-
<li>`sensitive_sport`: banned sports celebrities</li>
|
|
30317
|
-
entrepreneur:
|
|
30318
|
-
<li>`sensitive_entrepreneur`: banned businesspeople</li>
|
|
30319
|
-
scholar:
|
|
30320
|
-
<li>sensitive_scholar: banned scholars</li>
|
|
30321
|
-
celebrity:
|
|
30322
|
-
<li>sensitive_celebrity: banned celebrities</li>
|
|
30323
|
-
<li>historical_celebrity: banned historical figures</li>
|
|
30324
|
-
military:
|
|
30325
|
-
<li>sensitive_military: banned people in military</li>
|
|
30326
|
-
* @type {string || null}
|
|
30327
|
-
*/
|
|
30328
|
-
this.Label = null;
|
|
30329
|
-
|
|
30330
|
-
/**
|
|
30331
|
-
* URL of a suspected image (which will not be permanently stored
|
|
30332
|
-
and will be deleted after `PicUrlExpireTime`).
|
|
30333
|
-
* @type {string || null}
|
|
30334
|
-
*/
|
|
30335
|
-
this.Url = null;
|
|
30336
|
-
|
|
30337
|
-
/**
|
|
30338
|
-
* Coordinates (pixel) of the detected politically sensitive content or banned icons. The format is [x1, y1, x2, y2], which indicates the coordinates of the top-left and bottom-right corners.
|
|
30339
|
-
* @type {Array.<number> || null}
|
|
30340
|
-
*/
|
|
30341
|
-
this.AreaCoordSet = null;
|
|
30342
|
-
|
|
30343
|
-
/**
|
|
30344
|
-
* This field has been disused. Please use `PicUrlExpireTime`.
|
|
30425
|
+
* <p>Face identification template No.</p>
|
|
30345
30426
|
* @type {number || null}
|
|
30346
30427
|
*/
|
|
30347
|
-
this.
|
|
30428
|
+
this.Definition = null;
|
|
30348
30429
|
|
|
30349
30430
|
/**
|
|
30350
|
-
*
|
|
30351
|
-
* @type {
|
|
30431
|
+
* <p>Output file information</p>
|
|
30432
|
+
* @type {Array.<FaceRecognitionOutputFileInfo> || null}
|
|
30352
30433
|
*/
|
|
30353
|
-
this.
|
|
30434
|
+
this.OutputFile = null;
|
|
30354
30435
|
|
|
30355
30436
|
}
|
|
30356
30437
|
|
|
@@ -30361,16 +30442,16 @@ military:
|
|
|
30361
30442
|
if (!params) {
|
|
30362
30443
|
return;
|
|
30363
30444
|
}
|
|
30364
|
-
this.
|
|
30365
|
-
|
|
30366
|
-
|
|
30367
|
-
|
|
30368
|
-
|
|
30369
|
-
|
|
30370
|
-
|
|
30371
|
-
|
|
30372
|
-
|
|
30373
|
-
|
|
30445
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
30446
|
+
|
|
30447
|
+
if (params.OutputFile) {
|
|
30448
|
+
this.OutputFile = new Array();
|
|
30449
|
+
for (let z in params.OutputFile) {
|
|
30450
|
+
let obj = new FaceRecognitionOutputFileInfo();
|
|
30451
|
+
obj.deserialize(params.OutputFile[z]);
|
|
30452
|
+
this.OutputFile.push(obj);
|
|
30453
|
+
}
|
|
30454
|
+
}
|
|
30374
30455
|
|
|
30375
30456
|
}
|
|
30376
30457
|
}
|
|
@@ -32115,6 +32196,41 @@ class CloneCDNDomainResponse extends AbstractModel {
|
|
|
32115
32196
|
}
|
|
32116
32197
|
}
|
|
32117
32198
|
|
|
32199
|
+
/**
|
|
32200
|
+
* Face recognition output file information
|
|
32201
|
+
* @class
|
|
32202
|
+
*/
|
|
32203
|
+
class FaceRecognitionOutputFileInfo extends AbstractModel {
|
|
32204
|
+
constructor(){
|
|
32205
|
+
super();
|
|
32206
|
+
|
|
32207
|
+
/**
|
|
32208
|
+
* <p>Face recognition output file type</p><p>Enumeration value:</p><ul><li>Output: Result output of task generation. The file corresponds to the result in the face recognition task return and is generated in JSON format.</li></ul>
|
|
32209
|
+
* @type {string || null}
|
|
32210
|
+
*/
|
|
32211
|
+
this.FileType = null;
|
|
32212
|
+
|
|
32213
|
+
/**
|
|
32214
|
+
* <p>File URL of face recognition output</p>
|
|
32215
|
+
* @type {string || null}
|
|
32216
|
+
*/
|
|
32217
|
+
this.Url = null;
|
|
32218
|
+
|
|
32219
|
+
}
|
|
32220
|
+
|
|
32221
|
+
/**
|
|
32222
|
+
* @private
|
|
32223
|
+
*/
|
|
32224
|
+
deserialize(params) {
|
|
32225
|
+
if (!params) {
|
|
32226
|
+
return;
|
|
32227
|
+
}
|
|
32228
|
+
this.FileType = 'FileType' in params ? params.FileType : null;
|
|
32229
|
+
this.Url = 'Url' in params ? params.Url : null;
|
|
32230
|
+
|
|
32231
|
+
}
|
|
32232
|
+
}
|
|
32233
|
+
|
|
32118
32234
|
/**
|
|
32119
32235
|
* Basic information of VOD media file
|
|
32120
32236
|
* @class
|
|
@@ -32213,6 +32329,12 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
32213
32329
|
*/
|
|
32214
32330
|
this.StorageRegion = null;
|
|
32215
32331
|
|
|
32332
|
+
/**
|
|
32333
|
+
* Media storage path.
|
|
32334
|
+
* @type {string || null}
|
|
32335
|
+
*/
|
|
32336
|
+
this.StoragePath = null;
|
|
32337
|
+
|
|
32216
32338
|
/**
|
|
32217
32339
|
* Tag information of media file.
|
|
32218
32340
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
@@ -32278,6 +32400,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
32278
32400
|
this.SourceInfo = obj;
|
|
32279
32401
|
}
|
|
32280
32402
|
this.StorageRegion = 'StorageRegion' in params ? params.StorageRegion : null;
|
|
32403
|
+
this.StoragePath = 'StoragePath' in params ? params.StoragePath : null;
|
|
32281
32404
|
this.TagSet = 'TagSet' in params ? params.TagSet : null;
|
|
32282
32405
|
this.Vid = 'Vid' in params ? params.Vid : null;
|
|
32283
32406
|
this.Category = 'Category' in params ? params.Category : null;
|
|
@@ -35567,6 +35690,70 @@ class AccelerateAreaInfo extends AbstractModel {
|
|
|
35567
35690
|
}
|
|
35568
35691
|
}
|
|
35569
35692
|
|
|
35693
|
+
/**
|
|
35694
|
+
* Image sprite information
|
|
35695
|
+
* @class
|
|
35696
|
+
*/
|
|
35697
|
+
class MediaImageSpriteItem extends AbstractModel {
|
|
35698
|
+
constructor(){
|
|
35699
|
+
super();
|
|
35700
|
+
|
|
35701
|
+
/**
|
|
35702
|
+
* <p>Sprite sheet specification. Please refer to <a href="https://www.tencentcloud.com/document/product/266/33480?from_cn_redirect=1#.E9.9B.AA.E7.A2.A7.E5.9B.BE.E6.A8.A1.E6.9D.BF">sprite sheet parameter template</a>.</p>
|
|
35703
|
+
* @type {number || null}
|
|
35704
|
+
*/
|
|
35705
|
+
this.Definition = null;
|
|
35706
|
+
|
|
35707
|
+
/**
|
|
35708
|
+
* <p>Height of the sprite sheet.</p>
|
|
35709
|
+
* @type {number || null}
|
|
35710
|
+
*/
|
|
35711
|
+
this.Height = null;
|
|
35712
|
+
|
|
35713
|
+
/**
|
|
35714
|
+
* <p>Width of the sprite sheet.</p>
|
|
35715
|
+
* @type {number || null}
|
|
35716
|
+
*/
|
|
35717
|
+
this.Width = null;
|
|
35718
|
+
|
|
35719
|
+
/**
|
|
35720
|
+
* <p>The number of small images in each sprite sheet.</p>
|
|
35721
|
+
* @type {number || null}
|
|
35722
|
+
*/
|
|
35723
|
+
this.TotalCount = null;
|
|
35724
|
+
|
|
35725
|
+
/**
|
|
35726
|
+
* <p>The domain names or IP addresses of each sprite sheet.</p>
|
|
35727
|
+
* @type {Array.<string> || null}
|
|
35728
|
+
*/
|
|
35729
|
+
this.ImageUrlSet = null;
|
|
35730
|
+
|
|
35731
|
+
/**
|
|
35732
|
+
* Address of WebVtt file for the position-time relationship among subimages in an image sprite. The WebVtt file indicates the corresponding time points of each subimage and their coordinates in the image sprite, which is typically used by the player for implementing preview.
|
|
35733
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
35734
|
+
* @type {string || null}
|
|
35735
|
+
*/
|
|
35736
|
+
this.WebVttUrl = null;
|
|
35737
|
+
|
|
35738
|
+
}
|
|
35739
|
+
|
|
35740
|
+
/**
|
|
35741
|
+
* @private
|
|
35742
|
+
*/
|
|
35743
|
+
deserialize(params) {
|
|
35744
|
+
if (!params) {
|
|
35745
|
+
return;
|
|
35746
|
+
}
|
|
35747
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
35748
|
+
this.Height = 'Height' in params ? params.Height : null;
|
|
35749
|
+
this.Width = 'Width' in params ? params.Width : null;
|
|
35750
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
35751
|
+
this.ImageUrlSet = 'ImageUrlSet' in params ? params.ImageUrlSet : null;
|
|
35752
|
+
this.WebVttUrl = 'WebVttUrl' in params ? params.WebVttUrl : null;
|
|
35753
|
+
|
|
35754
|
+
}
|
|
35755
|
+
}
|
|
35756
|
+
|
|
35570
35757
|
/**
|
|
35571
35758
|
* Source file information.
|
|
35572
35759
|
* @class
|
|
@@ -35576,31 +35763,40 @@ class MediaSourceData extends AbstractModel {
|
|
|
35576
35763
|
super();
|
|
35577
35764
|
|
|
35578
35765
|
/**
|
|
35579
|
-
* Media
|
|
35766
|
+
* Media file source category:
|
|
35767
|
+
<li>Record: comes from recording, such as live recording, live streaming time shift recording.</li>
|
|
35768
|
+
<li>Upload: Comes from upload, such as pull upload, server-side upload, and client UGC upload.</li>
|
|
35769
|
+
<li>VideoProcessing: comes from video processing, such as video splicing, video editing.</li>
|
|
35770
|
+
<li>TrtcRecord: Comes from TRTC simultaneous recording.</li>
|
|
35771
|
+
<li>WebPageRecord: comes from panoramic recording.</li>
|
|
35772
|
+
<li>Unknown: Unknown source.</li>
|
|
35580
35773
|
* @type {string || null}
|
|
35581
35774
|
*/
|
|
35582
35775
|
this.SourceType = null;
|
|
35583
35776
|
|
|
35584
35777
|
/**
|
|
35585
|
-
*
|
|
35778
|
+
* Field passed through when the user creates a file.
|
|
35586
35779
|
* @type {string || null}
|
|
35587
35780
|
*/
|
|
35588
35781
|
this.SourceContext = null;
|
|
35589
35782
|
|
|
35590
35783
|
/**
|
|
35591
|
-
* Live
|
|
35784
|
+
* Live recording information is valid when file source is Record.
|
|
35785
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35592
35786
|
* @type {LiveRecordInfo || null}
|
|
35593
35787
|
*/
|
|
35594
35788
|
this.LiveRecordInfo = null;
|
|
35595
35789
|
|
|
35596
35790
|
/**
|
|
35597
|
-
* TRTC
|
|
35791
|
+
* TRTC Companion Recording Information. Valid at that time when the file source is TrtcRecord.
|
|
35792
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35598
35793
|
* @type {TrtcRecordInfo || null}
|
|
35599
35794
|
*/
|
|
35600
35795
|
this.TrtcRecordInfo = null;
|
|
35601
35796
|
|
|
35602
35797
|
/**
|
|
35603
|
-
* Panoramic recording information
|
|
35798
|
+
* Panoramic recording information. Valid when the file source is WebPageRecord.
|
|
35799
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
35604
35800
|
* @type {WebPageRecordInfo || null}
|
|
35605
35801
|
*/
|
|
35606
35802
|
this.WebPageRecordInfo = null;
|
|
@@ -35760,6 +35956,124 @@ class PushUrlCacheRequest extends AbstractModel {
|
|
|
35760
35956
|
}
|
|
35761
35957
|
}
|
|
35762
35958
|
|
|
35959
|
+
/**
|
|
35960
|
+
* Video segment containing detected politically sensitive content
|
|
35961
|
+
* @class
|
|
35962
|
+
*/
|
|
35963
|
+
class MediaContentReviewPoliticalSegmentItem extends AbstractModel {
|
|
35964
|
+
constructor(){
|
|
35965
|
+
super();
|
|
35966
|
+
|
|
35967
|
+
/**
|
|
35968
|
+
* Start time offset of a suspected segment in seconds.
|
|
35969
|
+
* @type {number || null}
|
|
35970
|
+
*/
|
|
35971
|
+
this.StartTimeOffset = null;
|
|
35972
|
+
|
|
35973
|
+
/**
|
|
35974
|
+
* End time offset of a suspected segment in seconds.
|
|
35975
|
+
* @type {number || null}
|
|
35976
|
+
*/
|
|
35977
|
+
this.EndTimeOffset = null;
|
|
35978
|
+
|
|
35979
|
+
/**
|
|
35980
|
+
* Confidence score for the detected politically sensitive content
|
|
35981
|
+
* @type {number || null}
|
|
35982
|
+
*/
|
|
35983
|
+
this.Confidence = null;
|
|
35984
|
+
|
|
35985
|
+
/**
|
|
35986
|
+
* Processing suggestion for the detected politically sensitive content. Valid values:
|
|
35987
|
+
<li>pass</li>
|
|
35988
|
+
<li>review</li>
|
|
35989
|
+
<li>block</li>
|
|
35990
|
+
* @type {string || null}
|
|
35991
|
+
*/
|
|
35992
|
+
this.Suggestion = null;
|
|
35993
|
+
|
|
35994
|
+
/**
|
|
35995
|
+
* Name of the politically sensitive content or banned images
|
|
35996
|
+
* @type {string || null}
|
|
35997
|
+
*/
|
|
35998
|
+
this.Name = null;
|
|
35999
|
+
|
|
36000
|
+
/**
|
|
36001
|
+
* Labels for the detected politically sensitive content. The relationship between the values of this parameter and those of the `LabelSet` parameter in [PoliticalImgReviewTemplateInfo](https://intl.cloud.tencent.com/document/api/266/31773?from_cn_redirect=1#PoliticalImgReviewTemplateInfo) is as follows:
|
|
36002
|
+
violation_photo:
|
|
36003
|
+
<li>`violation_photo`: banned images</li>
|
|
36004
|
+
politician:
|
|
36005
|
+
<li>`nation_politician`: state leader of China</li>
|
|
36006
|
+
<li>`province_politician`: provincial officials</li>
|
|
36007
|
+
<li>`bureau_politician`: bureau-level officials</li>
|
|
36008
|
+
<li>`county_politician`: county-level officials</li>
|
|
36009
|
+
<li>`rural_politician`: township-level officials</li>
|
|
36010
|
+
<li>`sensitive_politician`: politically sensitive people</li>
|
|
36011
|
+
<li>`foreign_politician`: state leaders of other countries</li>
|
|
36012
|
+
entertainment:
|
|
36013
|
+
<li>`sensitive_entertainment`: banned people in the entertainment industry</li>
|
|
36014
|
+
sport:
|
|
36015
|
+
<li>`sensitive_sport`: banned sports celebrities</li>
|
|
36016
|
+
entrepreneur:
|
|
36017
|
+
<li>`sensitive_entrepreneur`: banned businesspeople</li>
|
|
36018
|
+
scholar:
|
|
36019
|
+
<li>sensitive_scholar: banned scholars</li>
|
|
36020
|
+
celebrity:
|
|
36021
|
+
<li>sensitive_celebrity: banned celebrities</li>
|
|
36022
|
+
<li>historical_celebrity: banned historical figures</li>
|
|
36023
|
+
military:
|
|
36024
|
+
<li>sensitive_military: banned people in military</li>
|
|
36025
|
+
* @type {string || null}
|
|
36026
|
+
*/
|
|
36027
|
+
this.Label = null;
|
|
36028
|
+
|
|
36029
|
+
/**
|
|
36030
|
+
* URL of a suspected image (which will not be permanently stored
|
|
36031
|
+
and will be deleted after `PicUrlExpireTime`).
|
|
36032
|
+
* @type {string || null}
|
|
36033
|
+
*/
|
|
36034
|
+
this.Url = null;
|
|
36035
|
+
|
|
36036
|
+
/**
|
|
36037
|
+
* Coordinates (pixel) of the detected politically sensitive content or banned icons. The format is [x1, y1, x2, y2], which indicates the coordinates of the top-left and bottom-right corners.
|
|
36038
|
+
* @type {Array.<number> || null}
|
|
36039
|
+
*/
|
|
36040
|
+
this.AreaCoordSet = null;
|
|
36041
|
+
|
|
36042
|
+
/**
|
|
36043
|
+
* This field has been disused. Please use `PicUrlExpireTime`.
|
|
36044
|
+
* @type {number || null}
|
|
36045
|
+
*/
|
|
36046
|
+
this.PicUrlExpireTimeStamp = null;
|
|
36047
|
+
|
|
36048
|
+
/**
|
|
36049
|
+
* Expiration time of suspected image URL in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#I).
|
|
36050
|
+
* @type {string || null}
|
|
36051
|
+
*/
|
|
36052
|
+
this.PicUrlExpireTime = null;
|
|
36053
|
+
|
|
36054
|
+
}
|
|
36055
|
+
|
|
36056
|
+
/**
|
|
36057
|
+
* @private
|
|
36058
|
+
*/
|
|
36059
|
+
deserialize(params) {
|
|
36060
|
+
if (!params) {
|
|
36061
|
+
return;
|
|
36062
|
+
}
|
|
36063
|
+
this.StartTimeOffset = 'StartTimeOffset' in params ? params.StartTimeOffset : null;
|
|
36064
|
+
this.EndTimeOffset = 'EndTimeOffset' in params ? params.EndTimeOffset : null;
|
|
36065
|
+
this.Confidence = 'Confidence' in params ? params.Confidence : null;
|
|
36066
|
+
this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
|
|
36067
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
36068
|
+
this.Label = 'Label' in params ? params.Label : null;
|
|
36069
|
+
this.Url = 'Url' in params ? params.Url : null;
|
|
36070
|
+
this.AreaCoordSet = 'AreaCoordSet' in params ? params.AreaCoordSet : null;
|
|
36071
|
+
this.PicUrlExpireTimeStamp = 'PicUrlExpireTimeStamp' in params ? params.PicUrlExpireTimeStamp : null;
|
|
36072
|
+
this.PicUrlExpireTime = 'PicUrlExpireTime' in params ? params.PicUrlExpireTime : null;
|
|
36073
|
+
|
|
36074
|
+
}
|
|
36075
|
+
}
|
|
36076
|
+
|
|
35763
36077
|
/**
|
|
35764
36078
|
* CreateAIAnalysisTemplate response structure.
|
|
35765
36079
|
* @class
|
|
@@ -36891,6 +37205,62 @@ class DescribeQualityInspectTemplatesRequest extends AbstractModel {
|
|
|
36891
37205
|
}
|
|
36892
37206
|
}
|
|
36893
37207
|
|
|
37208
|
+
/**
|
|
37209
|
+
* MPS output file information
|
|
37210
|
+
* @class
|
|
37211
|
+
*/
|
|
37212
|
+
class MPSOutputFileInfo extends AbstractModel {
|
|
37213
|
+
constructor(){
|
|
37214
|
+
super();
|
|
37215
|
+
|
|
37216
|
+
/**
|
|
37217
|
+
* MPS output file type. Valid values:
|
|
37218
|
+
<li>Video: the generated video file of the task.</li>
|
|
37219
|
+
<li>Cover: cover file generated by task generation.</li>
|
|
37220
|
+
<li>Audio: audio file generated by task generation.</li>
|
|
37221
|
+
<li>Output: The result output of task generation. The file corresponds to the Output result in the MPS task response and is generated in JSON format.</li>
|
|
37222
|
+
|
|
37223
|
+
Output file. Different MPS tasks have different output results. For specific return content, refer to the MPS task output struct. The struct is JSON-serialized to generate the Output file.
|
|
37224
|
+
[Intelligent classification result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskClassificationOutput)
|
|
37225
|
+
[Intelligent cover result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskCoverOutput)
|
|
37226
|
+
[Intelligent Tag Result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskTagOutput)
|
|
37227
|
+
[Intelligent frame tagging classification result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskFrameTagOutput)
|
|
37228
|
+
[Intelligent Highlight Result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskHighlightOutput)
|
|
37229
|
+
[Video Splitting Result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskSegmentOutput)
|
|
37230
|
+
[Intelligent video opening/closing credits result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskHeadTailOutput)
|
|
37231
|
+
[Intelligent summary result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskDescriptionOutput)
|
|
37232
|
+
[Horizontal-to-Vertical Video Transformation Result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskHorizontalToVerticalOutput)
|
|
37233
|
+
[Intelligent dubbing result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskDubbingOutput)
|
|
37234
|
+
[Intelligent video understanding result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#AiAnalysisTaskVideoComprehensionOutput)
|
|
37235
|
+
[Intelligent caption full speech recognition result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#SmartSubtitleTaskAsrFullTextResultOutput)
|
|
37236
|
+
[Intelligent caption translation result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#SmartSubtitleTaskTransTextResultOutput)
|
|
37237
|
+
[Intelligent caption pure srt translation result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#PureSubtitleTransResultOutput)
|
|
37238
|
+
[Smart subtitling text extraction result](https://www.tencentcloud.com/document/product/862/37615?from_cn_redirect=1#SmartSubtitleTaskTextResultOutput)
|
|
37239
|
+
* @type {string || null}
|
|
37240
|
+
*/
|
|
37241
|
+
this.FileType = null;
|
|
37242
|
+
|
|
37243
|
+
/**
|
|
37244
|
+
* MPS output file URL
|
|
37245
|
+
* @type {string || null}
|
|
37246
|
+
*/
|
|
37247
|
+
this.Url = null;
|
|
37248
|
+
|
|
37249
|
+
}
|
|
37250
|
+
|
|
37251
|
+
/**
|
|
37252
|
+
* @private
|
|
37253
|
+
*/
|
|
37254
|
+
deserialize(params) {
|
|
37255
|
+
if (!params) {
|
|
37256
|
+
return;
|
|
37257
|
+
}
|
|
37258
|
+
this.FileType = 'FileType' in params ? params.FileType : null;
|
|
37259
|
+
this.Url = 'Url' in params ? params.Url : null;
|
|
37260
|
+
|
|
37261
|
+
}
|
|
37262
|
+
}
|
|
37263
|
+
|
|
36894
37264
|
/**
|
|
36895
37265
|
* DescribeMediaInfos request structure.
|
|
36896
37266
|
* @class
|
|
@@ -37523,6 +37893,42 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
37523
37893
|
}
|
|
37524
37894
|
}
|
|
37525
37895
|
|
|
37896
|
+
/**
|
|
37897
|
+
* Intelligent media information processed with MPS
|
|
37898
|
+
* @class
|
|
37899
|
+
*/
|
|
37900
|
+
class MPSAiMediaInfo extends AbstractModel {
|
|
37901
|
+
constructor(){
|
|
37902
|
+
super();
|
|
37903
|
+
|
|
37904
|
+
/**
|
|
37905
|
+
* List of intelligent media information processed by MPS
|
|
37906
|
+
* @type {Array.<MPSAiMediaItem> || null}
|
|
37907
|
+
*/
|
|
37908
|
+
this.AiMediaList = null;
|
|
37909
|
+
|
|
37910
|
+
}
|
|
37911
|
+
|
|
37912
|
+
/**
|
|
37913
|
+
* @private
|
|
37914
|
+
*/
|
|
37915
|
+
deserialize(params) {
|
|
37916
|
+
if (!params) {
|
|
37917
|
+
return;
|
|
37918
|
+
}
|
|
37919
|
+
|
|
37920
|
+
if (params.AiMediaList) {
|
|
37921
|
+
this.AiMediaList = new Array();
|
|
37922
|
+
for (let z in params.AiMediaList) {
|
|
37923
|
+
let obj = new MPSAiMediaItem();
|
|
37924
|
+
obj.deserialize(params.AiMediaList[z]);
|
|
37925
|
+
this.AiMediaList.push(obj);
|
|
37926
|
+
}
|
|
37927
|
+
}
|
|
37928
|
+
|
|
37929
|
+
}
|
|
37930
|
+
}
|
|
37931
|
+
|
|
37526
37932
|
/**
|
|
37527
37933
|
* Output for intelligent recognition of pornographic content
|
|
37528
37934
|
* @class
|
|
@@ -38597,61 +39003,77 @@ class AdaptiveDynamicStreamingInfoItem extends AbstractModel {
|
|
|
38597
39003
|
super();
|
|
38598
39004
|
|
|
38599
39005
|
/**
|
|
38600
|
-
*
|
|
39006
|
+
* <p>Convert to adaptive bitrate streaming specification.</p>
|
|
38601
39007
|
* @type {number || null}
|
|
38602
39008
|
*/
|
|
38603
39009
|
this.Definition = null;
|
|
38604
39010
|
|
|
38605
39011
|
/**
|
|
38606
|
-
*
|
|
38607
|
-
<li>`HLS`</li>
|
|
38608
|
-
<li>`DASH`</li>
|
|
39012
|
+
* <p>Packaging format. Value ranges from:</p><li>HLS;</li><li>DASH.</li>
|
|
38609
39013
|
* @type {string || null}
|
|
38610
39014
|
*/
|
|
38611
39015
|
this.Package = null;
|
|
38612
39016
|
|
|
38613
39017
|
/**
|
|
38614
|
-
* Encryption type
|
|
39018
|
+
* <p>Encryption type.</p>
|
|
38615
39019
|
* @type {string || null}
|
|
38616
39020
|
*/
|
|
38617
39021
|
this.DrmType = null;
|
|
38618
39022
|
|
|
38619
39023
|
/**
|
|
38620
|
-
* Playback address
|
|
39024
|
+
* <p>Playback address.</p>
|
|
38621
39025
|
* @type {string || null}
|
|
38622
39026
|
*/
|
|
38623
39027
|
this.Url = null;
|
|
38624
39028
|
|
|
38625
39029
|
/**
|
|
38626
|
-
*
|
|
38627
|
-
<li>If the file is an HLS file, the value of this parameter is the sum of the size of the M3U8 and TS files.</li>
|
|
38628
|
-
<li>If the file is a DASH file, the value of this parameter is the sum of the size of the MPD and segment files.</li>
|
|
38629
|
-
<li><font color=red>Note</font>: For adaptive bitrate streaming files generated before 2022-01-10T16:00:00Z, the value of this parameter is `0`.</li>
|
|
39030
|
+
* <p>Media file size, unit: byte.</p><li>When the media file is HLS, the size is the sum of m3u8 and ts file sizes.</li><li>When the media file is DASH, the size is the sum of mpd and fragment file sizes.</li><li><font color="red">Note</font>: This field is 0 for adaptive bitrate stream files generated through pre-processing before 2022-01-10T16:00:00Z.</li>
|
|
38630
39031
|
* @type {number || null}
|
|
38631
39032
|
*/
|
|
38632
39033
|
this.Size = null;
|
|
38633
39034
|
|
|
38634
39035
|
/**
|
|
38635
|
-
*
|
|
38636
|
-
<li>Trace means traceability watermark processing; </li>
|
|
38637
|
-
<li>CopyRight means copyright watermark processing; </li>
|
|
38638
|
-
<li>None means no digital watermark processing. </li>
|
|
39036
|
+
* <p>Watermark type. Available values:</p><li>Trace means transit watermark processing;</li><li>CopyRight means copyright watermark processing;</li><li>None means no watermark processing.</li>
|
|
38639
39037
|
* @type {string || null}
|
|
38640
39038
|
*/
|
|
38641
39039
|
this.DigitalWatermarkType = null;
|
|
38642
39040
|
|
|
38643
39041
|
/**
|
|
38644
|
-
*
|
|
39042
|
+
* <p>Substream info list.</p>
|
|
38645
39043
|
* @type {Array.<MediaSubStreamInfoItem> || null}
|
|
38646
39044
|
*/
|
|
38647
39045
|
this.SubStreamSet = null;
|
|
38648
39046
|
|
|
38649
39047
|
/**
|
|
38650
|
-
* Copyright
|
|
39048
|
+
* <p>Copyright information.</p>
|
|
38651
39049
|
* @type {string || null}
|
|
38652
39050
|
*/
|
|
38653
39051
|
this.CopyRightWatermarkText = null;
|
|
38654
39052
|
|
|
39053
|
+
/**
|
|
39054
|
+
* <p>Digital watermark template id.</p>
|
|
39055
|
+
* @type {number || null}
|
|
39056
|
+
*/
|
|
39057
|
+
this.BlindWatermarkDefinition = null;
|
|
39058
|
+
|
|
39059
|
+
/**
|
|
39060
|
+
* <p>Subtitle information list.</p>
|
|
39061
|
+
* @type {Array.<MediaSubtitleItem> || null}
|
|
39062
|
+
*/
|
|
39063
|
+
this.SubtitleSet = null;
|
|
39064
|
+
|
|
39065
|
+
/**
|
|
39066
|
+
* <p>Unique identifier for default subtitle.</p>
|
|
39067
|
+
* @type {string || null}
|
|
39068
|
+
*/
|
|
39069
|
+
this.DefaultSubtitleId = null;
|
|
39070
|
+
|
|
39071
|
+
/**
|
|
39072
|
+
* <p>DRM encryption method.</p>
|
|
39073
|
+
* @type {string || null}
|
|
39074
|
+
*/
|
|
39075
|
+
this.DrmEncryptType = null;
|
|
39076
|
+
|
|
38655
39077
|
}
|
|
38656
39078
|
|
|
38657
39079
|
/**
|
|
@@ -38677,6 +39099,18 @@ class AdaptiveDynamicStreamingInfoItem extends AbstractModel {
|
|
|
38677
39099
|
}
|
|
38678
39100
|
}
|
|
38679
39101
|
this.CopyRightWatermarkText = 'CopyRightWatermarkText' in params ? params.CopyRightWatermarkText : null;
|
|
39102
|
+
this.BlindWatermarkDefinition = 'BlindWatermarkDefinition' in params ? params.BlindWatermarkDefinition : null;
|
|
39103
|
+
|
|
39104
|
+
if (params.SubtitleSet) {
|
|
39105
|
+
this.SubtitleSet = new Array();
|
|
39106
|
+
for (let z in params.SubtitleSet) {
|
|
39107
|
+
let obj = new MediaSubtitleItem();
|
|
39108
|
+
obj.deserialize(params.SubtitleSet[z]);
|
|
39109
|
+
this.SubtitleSet.push(obj);
|
|
39110
|
+
}
|
|
39111
|
+
}
|
|
39112
|
+
this.DefaultSubtitleId = 'DefaultSubtitleId' in params ? params.DefaultSubtitleId : null;
|
|
39113
|
+
this.DrmEncryptType = 'DrmEncryptType' in params ? params.DrmEncryptType : null;
|
|
38680
39114
|
|
|
38681
39115
|
}
|
|
38682
39116
|
}
|
|
@@ -39103,95 +39537,120 @@ class MediaInfo extends AbstractModel {
|
|
|
39103
39537
|
super();
|
|
39104
39538
|
|
|
39105
39539
|
/**
|
|
39106
|
-
* Basic information
|
|
39107
|
-
Note:
|
|
39540
|
+
* <p>Basic information. Include video name, category, playback address, cover image.</p>
|
|
39541
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39108
39542
|
* @type {MediaBasicInfo || null}
|
|
39109
39543
|
*/
|
|
39110
39544
|
this.BasicInfo = null;
|
|
39111
39545
|
|
|
39112
39546
|
/**
|
|
39113
|
-
*
|
|
39114
|
-
Note:
|
|
39547
|
+
* <p>Meta information, including size, duration, video stream information, and audio stream information.</p>
|
|
39548
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39115
39549
|
* @type {MediaMetaData || null}
|
|
39116
39550
|
*/
|
|
39117
39551
|
this.MetaData = null;
|
|
39118
39552
|
|
|
39119
39553
|
/**
|
|
39120
|
-
*
|
|
39121
|
-
Note:
|
|
39554
|
+
* <p>Transcoding result information, including domain names or IP addresses, specifications, bitrates, and resolutions of various types of videos generated by video transcoding.</p>
|
|
39555
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39122
39556
|
* @type {MediaTranscodeInfo || null}
|
|
39123
39557
|
*/
|
|
39124
39558
|
this.TranscodeInfo = null;
|
|
39125
39559
|
|
|
39126
39560
|
/**
|
|
39127
|
-
*
|
|
39128
|
-
Note:
|
|
39561
|
+
* <p>AnimatedGraphicsInfo. Information related to the animated graphics (such as gif) after video-to-gif conversion.</p>
|
|
39562
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39129
39563
|
* @type {MediaAnimatedGraphicsInfo || null}
|
|
39130
39564
|
*/
|
|
39131
39565
|
this.AnimatedGraphicsInfo = null;
|
|
39132
39566
|
|
|
39133
39567
|
/**
|
|
39134
|
-
*
|
|
39135
|
-
Note:
|
|
39568
|
+
* <p>Sampling screenshot information. Screenshot information related to the video after sampling screenshot taking.</p>
|
|
39569
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39136
39570
|
* @type {MediaSampleSnapshotInfo || null}
|
|
39137
39571
|
*/
|
|
39138
39572
|
this.SampleSnapshotInfo = null;
|
|
39139
39573
|
|
|
39140
39574
|
/**
|
|
39141
|
-
*
|
|
39142
|
-
Note:
|
|
39575
|
+
* <p>Sprite image information. Relevant information of the sprite after capturing CSS sprites from the video.</p>
|
|
39576
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39143
39577
|
* @type {MediaImageSpriteInfo || null}
|
|
39144
39578
|
*/
|
|
39145
39579
|
this.ImageSpriteInfo = null;
|
|
39146
39580
|
|
|
39147
39581
|
/**
|
|
39148
|
-
*
|
|
39149
|
-
Note:
|
|
39582
|
+
* <p>Screenshot information at the specified time point. Information of each screenshot after capturing the video at the specified time point.</p>
|
|
39583
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39150
39584
|
* @type {MediaSnapshotByTimeOffsetInfo || null}
|
|
39151
39585
|
*/
|
|
39152
39586
|
this.SnapshotByTimeOffsetInfo = null;
|
|
39153
39587
|
|
|
39154
39588
|
/**
|
|
39155
|
-
*
|
|
39156
|
-
Note:
|
|
39589
|
+
* <p>Video timestamp information. Each dotting information set for the video.</p>
|
|
39590
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39157
39591
|
* @type {MediaKeyFrameDescInfo || null}
|
|
39158
39592
|
*/
|
|
39159
39593
|
this.KeyFrameDescInfo = null;
|
|
39160
39594
|
|
|
39161
39595
|
/**
|
|
39162
|
-
* Adaptive
|
|
39163
|
-
Note:
|
|
39596
|
+
* <p>Adaptive Bitrate Streaming information. Includes specification, encryption type, packaging format and information related to.</p>
|
|
39597
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39164
39598
|
* @type {MediaAdaptiveDynamicStreamingInfo || null}
|
|
39165
39599
|
*/
|
|
39166
39600
|
this.AdaptiveDynamicStreamingInfo = null;
|
|
39167
39601
|
|
|
39168
39602
|
/**
|
|
39169
|
-
*
|
|
39170
|
-
Note:
|
|
39603
|
+
* <p>miniProgramReviewInfo</p>
|
|
39604
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39171
39605
|
* @type {MediaMiniProgramReviewInfo || null}
|
|
39172
39606
|
*/
|
|
39173
39607
|
this.MiniProgramReviewInfo = null;
|
|
39174
39608
|
|
|
39175
39609
|
/**
|
|
39176
|
-
* Subtitle information
|
|
39177
|
-
Note:
|
|
39610
|
+
* <p>Subtitle information.</p>
|
|
39611
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39178
39612
|
* @type {MediaSubtitleInfo || null}
|
|
39179
39613
|
*/
|
|
39180
39614
|
this.SubtitleInfo = null;
|
|
39181
39615
|
|
|
39182
39616
|
/**
|
|
39183
|
-
*
|
|
39617
|
+
* <p>Media file unique identifier ID.</p>
|
|
39184
39618
|
* @type {string || null}
|
|
39185
39619
|
*/
|
|
39186
39620
|
this.FileId = null;
|
|
39187
39621
|
|
|
39188
39622
|
/**
|
|
39189
|
-
*
|
|
39623
|
+
* <p>Verification information.</p>
|
|
39190
39624
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39191
39625
|
* @type {FileReviewInfo || null}
|
|
39192
39626
|
*/
|
|
39193
39627
|
this.ReviewInfo = null;
|
|
39194
39628
|
|
|
39629
|
+
/**
|
|
39630
|
+
* <p>MPS intelligent media asset information</p>
|
|
39631
|
+
* @type {MPSAiMediaInfo || null}
|
|
39632
|
+
*/
|
|
39633
|
+
this.MPSAiMediaInfo = null;
|
|
39634
|
+
|
|
39635
|
+
/**
|
|
39636
|
+
* <p>Image understanding information.</p>
|
|
39637
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
39638
|
+
* @type {ImageUnderstandingInfo || null}
|
|
39639
|
+
*/
|
|
39640
|
+
this.ImageUnderstandingInfo = null;
|
|
39641
|
+
|
|
39642
|
+
/**
|
|
39643
|
+
* <p>Intelligent library information.</p>
|
|
39644
|
+
* @type {KnowledgeBasesInfo || null}
|
|
39645
|
+
*/
|
|
39646
|
+
this.KnowledgeBasesInfo = null;
|
|
39647
|
+
|
|
39648
|
+
/**
|
|
39649
|
+
* <p>Facial recognition information.</p>
|
|
39650
|
+
* @type {FaceRecognitionInfo || null}
|
|
39651
|
+
*/
|
|
39652
|
+
this.FaceRecognitionInfo = null;
|
|
39653
|
+
|
|
39195
39654
|
}
|
|
39196
39655
|
|
|
39197
39656
|
/**
|
|
@@ -39275,6 +39734,30 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
39275
39734
|
this.ReviewInfo = obj;
|
|
39276
39735
|
}
|
|
39277
39736
|
|
|
39737
|
+
if (params.MPSAiMediaInfo) {
|
|
39738
|
+
let obj = new MPSAiMediaInfo();
|
|
39739
|
+
obj.deserialize(params.MPSAiMediaInfo)
|
|
39740
|
+
this.MPSAiMediaInfo = obj;
|
|
39741
|
+
}
|
|
39742
|
+
|
|
39743
|
+
if (params.ImageUnderstandingInfo) {
|
|
39744
|
+
let obj = new ImageUnderstandingInfo();
|
|
39745
|
+
obj.deserialize(params.ImageUnderstandingInfo)
|
|
39746
|
+
this.ImageUnderstandingInfo = obj;
|
|
39747
|
+
}
|
|
39748
|
+
|
|
39749
|
+
if (params.KnowledgeBasesInfo) {
|
|
39750
|
+
let obj = new KnowledgeBasesInfo();
|
|
39751
|
+
obj.deserialize(params.KnowledgeBasesInfo)
|
|
39752
|
+
this.KnowledgeBasesInfo = obj;
|
|
39753
|
+
}
|
|
39754
|
+
|
|
39755
|
+
if (params.FaceRecognitionInfo) {
|
|
39756
|
+
let obj = new FaceRecognitionInfo();
|
|
39757
|
+
obj.deserialize(params.FaceRecognitionInfo)
|
|
39758
|
+
this.FaceRecognitionInfo = obj;
|
|
39759
|
+
}
|
|
39760
|
+
|
|
39278
39761
|
}
|
|
39279
39762
|
}
|
|
39280
39763
|
|
|
@@ -44338,22 +44821,19 @@ class MediaAudioStreamItem extends AbstractModel {
|
|
|
44338
44821
|
super();
|
|
44339
44822
|
|
|
44340
44823
|
/**
|
|
44341
|
-
* Bitrate of audio stream
|
|
44342
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
44824
|
+
* <p>Bitrate of the audio stream. Measurement unit: bps.</p>
|
|
44343
44825
|
* @type {number || null}
|
|
44344
44826
|
*/
|
|
44345
44827
|
this.Bitrate = null;
|
|
44346
44828
|
|
|
44347
44829
|
/**
|
|
44348
|
-
*
|
|
44349
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
44830
|
+
* <p>Sampling rate of the audio stream, unit: hz.</p>
|
|
44350
44831
|
* @type {number || null}
|
|
44351
44832
|
*/
|
|
44352
44833
|
this.SamplingRate = null;
|
|
44353
44834
|
|
|
44354
44835
|
/**
|
|
44355
|
-
* Audio stream
|
|
44356
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
44836
|
+
* <p>Audio stream encoding format, such as aac.</p>
|
|
44357
44837
|
* @type {string || null}
|
|
44358
44838
|
*/
|
|
44359
44839
|
this.Codec = null;
|
|
@@ -46153,6 +46633,65 @@ class TerrorismImgReviewTemplateInfo extends AbstractModel {
|
|
|
46153
46633
|
}
|
|
46154
46634
|
}
|
|
46155
46635
|
|
|
46636
|
+
/**
|
|
46637
|
+
* MPS AI media task item
|
|
46638
|
+
* @class
|
|
46639
|
+
*/
|
|
46640
|
+
class MPSAiMediaItem extends AbstractModel {
|
|
46641
|
+
constructor(){
|
|
46642
|
+
super();
|
|
46643
|
+
|
|
46644
|
+
/**
|
|
46645
|
+
* MPS intelligent processing task type. Valid values:
|
|
46646
|
+
<li>AiAnalysis.ClassificationTask: intelligent classification task.</li>
|
|
46647
|
+
<li>AiAnalysis.CoverTask: intelligent thumbnail generating.</li>
|
|
46648
|
+
<li>AiAnalysis.TagTask: intelligent tag task.</li>
|
|
46649
|
+
<li>AiAnalysis.FrameTagTask: intelligent frame-by-frame tagging task.</li>
|
|
46650
|
+
<li>AiAnalysis.HighlightTask: Intelligent highlight task.</li>
|
|
46651
|
+
<li>AiAnalysis.SegmentTask: Intelligent video splitting task.</li>
|
|
46652
|
+
<li>AiAnalysis.HeadTailTask: Intelligent opening and closing credits task.</li>
|
|
46653
|
+
<li>AiAnalysis.DescriptionTask: Intelligent summary task.</li>
|
|
46654
|
+
<li>AiAnalysis.HorizontalToVerticalTask: Intelligent Landscape to Portrait Task.</li>
|
|
46655
|
+
<li>AiAnalysis.DubbingTask: Intelligent dubbing task.</li>
|
|
46656
|
+
<li>AiAnalysis.VideoRemakeTask: Intelligent deduplication task.</li>
|
|
46657
|
+
<li>AiAnalysis.VideoComprehensionTask: Video understanding task.</li>
|
|
46658
|
+
<li>SmartSubtitle.AsrFullTextTask: Intelligent speech full-text recognition task.</li>
|
|
46659
|
+
<li>SmartSubtitle.TransTextTask: Translation result.</li>
|
|
46660
|
+
<li>SmartSubtitle.PureSubtitleTransTask: Returns the pure subtitle file translation result.</li>
|
|
46661
|
+
<li>SmartSubtitle.OcrFullTextTask: Intelligent text extraction subtitle task.</li>
|
|
46662
|
+
* @type {string || null}
|
|
46663
|
+
*/
|
|
46664
|
+
this.TaskType = null;
|
|
46665
|
+
|
|
46666
|
+
/**
|
|
46667
|
+
* MPS intelligent processing task result set
|
|
46668
|
+
* @type {Array.<MPSAiMediaTask> || null}
|
|
46669
|
+
*/
|
|
46670
|
+
this.AiMediaTasks = null;
|
|
46671
|
+
|
|
46672
|
+
}
|
|
46673
|
+
|
|
46674
|
+
/**
|
|
46675
|
+
* @private
|
|
46676
|
+
*/
|
|
46677
|
+
deserialize(params) {
|
|
46678
|
+
if (!params) {
|
|
46679
|
+
return;
|
|
46680
|
+
}
|
|
46681
|
+
this.TaskType = 'TaskType' in params ? params.TaskType : null;
|
|
46682
|
+
|
|
46683
|
+
if (params.AiMediaTasks) {
|
|
46684
|
+
this.AiMediaTasks = new Array();
|
|
46685
|
+
for (let z in params.AiMediaTasks) {
|
|
46686
|
+
let obj = new MPSAiMediaTask();
|
|
46687
|
+
obj.deserialize(params.AiMediaTasks[z]);
|
|
46688
|
+
this.AiMediaTasks.push(obj);
|
|
46689
|
+
}
|
|
46690
|
+
}
|
|
46691
|
+
|
|
46692
|
+
}
|
|
46693
|
+
}
|
|
46694
|
+
|
|
46156
46695
|
/**
|
|
46157
46696
|
* ApplyUpload response structure.
|
|
46158
46697
|
* @class
|
|
@@ -47927,11 +48466,17 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
47927
48466
|
this.DigitalWatermarkType = null;
|
|
47928
48467
|
|
|
47929
48468
|
/**
|
|
47930
|
-
*
|
|
48469
|
+
*
|
|
47931
48470
|
* @type {string || null}
|
|
47932
48471
|
*/
|
|
47933
48472
|
this.CopyRightWatermarkText = null;
|
|
47934
48473
|
|
|
48474
|
+
/**
|
|
48475
|
+
* Digital watermark template id.
|
|
48476
|
+
* @type {number || null}
|
|
48477
|
+
*/
|
|
48478
|
+
this.BlindWatermarkDefinition = null;
|
|
48479
|
+
|
|
47935
48480
|
}
|
|
47936
48481
|
|
|
47937
48482
|
/**
|
|
@@ -47970,6 +48515,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
47970
48515
|
}
|
|
47971
48516
|
this.DigitalWatermarkType = 'DigitalWatermarkType' in params ? params.DigitalWatermarkType : null;
|
|
47972
48517
|
this.CopyRightWatermarkText = 'CopyRightWatermarkText' in params ? params.CopyRightWatermarkText : null;
|
|
48518
|
+
this.BlindWatermarkDefinition = 'BlindWatermarkDefinition' in params ? params.BlindWatermarkDefinition : null;
|
|
47973
48519
|
|
|
47974
48520
|
}
|
|
47975
48521
|
}
|
|
@@ -48928,245 +49474,197 @@ class SearchMediaRequest extends AbstractModel {
|
|
|
48928
49474
|
super();
|
|
48929
49475
|
|
|
48930
49476
|
/**
|
|
48931
|
-
* <b>
|
|
49477
|
+
* <p><b>Video-on-demand (VOD) <a href="/document/product/266/33987">application</a> ID. For customers who activate on-demand services from December 25, 2023, they must fill this field with the app ID when accessing resources in on-demand applications (whether it's the default application or a newly created application).</b></p>
|
|
48932
49478
|
* @type {number || null}
|
|
48933
49479
|
*/
|
|
48934
49480
|
this.SubAppId = null;
|
|
48935
49481
|
|
|
48936
49482
|
/**
|
|
48937
|
-
* File
|
|
48938
|
-
<li>Array length limit: 10.</li>
|
|
48939
|
-
<li>ID length limit: 40 characters.</li>
|
|
49483
|
+
* <p>File id collection, match any element in the collection.</p><li>Array length limit: 10.</li><li>Single ID length limit: 40 character.</li>
|
|
48940
49484
|
* @type {Array.<string> || null}
|
|
48941
49485
|
*/
|
|
48942
49486
|
this.FileIds = null;
|
|
48943
49487
|
|
|
48944
49488
|
/**
|
|
48945
|
-
*
|
|
48946
|
-
<li>Name length limit: 100 characters.</li>
|
|
48947
|
-
<li>Array length limit: 10</li>
|
|
49489
|
+
* <p>File name collection. Fuzzy match media files by file name. The higher the matching degree, the higher the priority in sorting.</p><li>Single file name length limit: 100 characters.</li><li>Array length limit: 10.</li>
|
|
48948
49490
|
* @type {Array.<string> || null}
|
|
48949
49491
|
*/
|
|
48950
49492
|
this.Names = null;
|
|
48951
49493
|
|
|
48952
49494
|
/**
|
|
48953
|
-
*
|
|
48954
|
-
<li>Prefix length limit: 100 characters.</li>
|
|
48955
|
-
<li>Array length limit: 10.</li>
|
|
49495
|
+
* <p>File name prefix. Prefix match media files.</p><li>Single file name prefix length limit: 100 characters.</li><li>Array length limit: 10.</li>
|
|
48956
49496
|
* @type {Array.<string> || null}
|
|
48957
49497
|
*/
|
|
48958
49498
|
this.NamePrefixes = null;
|
|
48959
49499
|
|
|
48960
49500
|
/**
|
|
48961
|
-
* File description set
|
|
48962
|
-
<li>Length limit for a single description: 100 characters</li>
|
|
48963
|
-
<li>Array length limit: 10</li>
|
|
49501
|
+
* <p>File description set, fuzzy match media files. The higher the matching degree, higher priority in sorting.</p><li>Single description length limit: 100 characters.</li><li>Array length limit: 10.</li>
|
|
48964
49502
|
* @type {Array.<string> || null}
|
|
48965
49503
|
*/
|
|
48966
49504
|
this.Descriptions = null;
|
|
48967
49505
|
|
|
48968
49506
|
/**
|
|
48969
|
-
* Category
|
|
48970
|
-
<li>Array length limit: 10.</li>
|
|
49507
|
+
* <p>Category id collection, match the specified ID in the collection and all its subclasses.</p><li>Array length limit: 10.</li>
|
|
48971
49508
|
* @type {Array.<number> || null}
|
|
48972
49509
|
*/
|
|
48973
49510
|
this.ClassIds = null;
|
|
48974
49511
|
|
|
48975
49512
|
/**
|
|
48976
|
-
*
|
|
48977
|
-
<li>Tag length limit: 32 characters.</li>
|
|
48978
|
-
<li>Array length limit: 16.</li>
|
|
49513
|
+
* <p>Tag set, match any element in the collection.</p><li>Single tag length limit: 32 character.</li><li>Array length limit: 16.</li>
|
|
48979
49514
|
* @type {Array.<string> || null}
|
|
48980
49515
|
*/
|
|
48981
49516
|
this.Tags = null;
|
|
48982
49517
|
|
|
48983
49518
|
/**
|
|
48984
|
-
* File type.
|
|
48985
|
-
<li>Video: video file</li>
|
|
48986
|
-
<li>Audio: audio file</li>
|
|
48987
|
-
<li>Image: image file</li>
|
|
49519
|
+
* <p>File type. Match any element in the collection:</p><li>Video: video file</li><li>Audio: audio file</li><li>Image: image file</li>
|
|
48988
49520
|
* @type {Array.<string> || null}
|
|
48989
49521
|
*/
|
|
48990
49522
|
this.Categories = null;
|
|
48991
49523
|
|
|
48992
49524
|
/**
|
|
48993
|
-
* Media file source
|
|
48994
|
-
<li>Array length limit: 10.</li>
|
|
49525
|
+
* <p>Media file source collection. Source value reference <a href="https://www.tencentcloud.com/document/product/266/31773?from_cn_redirect=1#MediaSourceData">SourceType</a>.</p><li>Array length limit: 10.</li>
|
|
48995
49526
|
* @type {Array.<string> || null}
|
|
48996
49527
|
*/
|
|
48997
49528
|
this.SourceTypes = null;
|
|
48998
49529
|
|
|
48999
49530
|
/**
|
|
49000
|
-
*
|
|
49001
|
-
<li>Array length limit: 10</li>
|
|
49531
|
+
* <p>Push stream live code collection. Match any element in the collection.</p><li>Array length limit: 10.</li>
|
|
49002
49532
|
* @type {Array.<string> || null}
|
|
49003
49533
|
*/
|
|
49004
49534
|
this.StreamIds = null;
|
|
49005
49535
|
|
|
49006
49536
|
/**
|
|
49007
|
-
*
|
|
49008
|
-
<li>Includes specified start and end points in time.</li>
|
|
49537
|
+
* <p>Match files with creation time within this time period.</p><li>Include the specified start and end points in time.</li>
|
|
49009
49538
|
* @type {TimeRange || null}
|
|
49010
49539
|
*/
|
|
49011
49540
|
this.CreateTime = null;
|
|
49012
49541
|
|
|
49013
49542
|
/**
|
|
49014
|
-
*
|
|
49015
|
-
<li>The files whose expiration time points are on the start or end time of the specified range will also be returned.</li>
|
|
49543
|
+
* <p>Match files with expiration time within this period. Unable to retrieve expired files.</p><li>Include the specified start and end points in time.</li>
|
|
49016
49544
|
* @type {TimeRange || null}
|
|
49017
49545
|
*/
|
|
49018
49546
|
this.ExpireTime = null;
|
|
49019
49547
|
|
|
49020
49548
|
/**
|
|
49021
|
-
*
|
|
49022
|
-
<li>Length limit for a single region: 20 characters</li>
|
|
49023
|
-
<li>Array length limit: 20</li>
|
|
49549
|
+
* <p>Media file storage region, such as ap-chongqing. Please refer to <a href="https://www.tencentcloud.com/document/product/266/9760?from_cn_redirect=1#.E5.B7.B2.E6.94.AF.E6.8C.81.E5.9C.B0.E5.9F.9F.E5.88.97.E8.A1.A8">region list</a>.</p><li>Single storage region length limit: 20 characters.</li><li>Array length limit: 20.</li>
|
|
49024
49550
|
* @type {Array.<string> || null}
|
|
49025
49551
|
*/
|
|
49026
49552
|
this.StorageRegions = null;
|
|
49027
49553
|
|
|
49028
49554
|
/**
|
|
49029
|
-
*
|
|
49030
|
-
<li>STANDARD</li>
|
|
49031
|
-
<li>STANDARD_IA</li>
|
|
49032
|
-
<li>ARCHIVE</li>
|
|
49033
|
-
<li>DEEP_ARCHIVE</li>
|
|
49555
|
+
* <p>Storage type array. Optional values:</p><li> STANDARD: Standard storage.</li><li> STANDARD_IA: Infrequent storage.</li><li> ARCHIVE: Archive storage.</li><li> DEEP_ARCHIVE: Deep archive storage.</li>
|
|
49034
49556
|
* @type {Array.<string> || null}
|
|
49035
49557
|
*/
|
|
49036
49558
|
this.StorageClasses = null;
|
|
49037
49559
|
|
|
49038
49560
|
/**
|
|
49039
|
-
*
|
|
49040
|
-
<li>Array length limit: 10</li>
|
|
49561
|
+
* <p>Media file packaging format collection, match any element in the collection.</p><li>Array length limit: 10.</li>
|
|
49041
49562
|
* @type {Array.<string> || null}
|
|
49042
49563
|
*/
|
|
49043
49564
|
this.MediaTypes = null;
|
|
49044
49565
|
|
|
49045
49566
|
/**
|
|
49046
|
-
*
|
|
49047
|
-
<li>`Normal`</li>
|
|
49048
|
-
<li>`SystemForbidden` (blocked by VOD)</li>
|
|
49049
|
-
<li>`Forbidden` (blocked by you)</li>
|
|
49567
|
+
* <p>Media file status, match any element in the collection.</p><li> Normal: normal;</li><li> SystemForbidden: Platform Ban;</li><li> Forbidden: proactive ban.</li>
|
|
49050
49568
|
* @type {Array.<string> || null}
|
|
49051
49569
|
*/
|
|
49052
49570
|
this.Status = null;
|
|
49053
49571
|
|
|
49054
49572
|
/**
|
|
49055
|
-
*
|
|
49056
|
-
<li>`pass`</li>
|
|
49057
|
-
<li>`review` (the content may be non-compliant and needs to be reviewed)</li>
|
|
49058
|
-
<li>`block` (the content is non-compliant and should be blocked)</li>
|
|
49059
|
-
<li>`notModerated` (the file hasn't been moderated yet)</li>
|
|
49573
|
+
* <p>Media file review result, match any element in the collection.</p><li> pass: Pass review;</li><li> review: Suspected violation, suggest re-examination;</li><li> block: Confirmed violation, suggest banning;</li><li> notModerated: Not moderated.</li>
|
|
49060
49574
|
* @type {Array.<string> || null}
|
|
49061
49575
|
*/
|
|
49062
49576
|
this.ReviewResults = null;
|
|
49063
49577
|
|
|
49064
49578
|
/**
|
|
49065
|
-
*
|
|
49066
|
-
<li>Array length limit: 10</li>
|
|
49579
|
+
* <p>TRTC application ID collection. Matches any element in the collection.</p><li>Array length limit: 10.</li>
|
|
49067
49580
|
* @type {Array.<number> || null}
|
|
49068
49581
|
*/
|
|
49069
49582
|
this.TrtcSdkAppIds = null;
|
|
49070
49583
|
|
|
49071
49584
|
/**
|
|
49072
|
-
*
|
|
49073
|
-
<li>Element length limit: 64 characters.</li>
|
|
49074
|
-
<li>Array length limit: 10.</li>
|
|
49585
|
+
* <p>TRTC room ID collection. Matches any element in the collection.</p><li>Single room ID length limit: 64 characters;</li><li>Array length limit: 10.</li>
|
|
49075
49586
|
* @type {Array.<string> || null}
|
|
49076
49587
|
*/
|
|
49077
49588
|
this.TrtcRoomIds = null;
|
|
49078
49589
|
|
|
49079
49590
|
/**
|
|
49080
|
-
*
|
|
49081
|
-
<li>basicInfo (basic video information).</li>
|
|
49082
|
-
<li>metaData (video metadata).</li>
|
|
49083
|
-
<li>transcodeInfo (result information of video transcoding).</li>
|
|
49084
|
-
<li>animatedGraphicsInfo (result information of animated image generating task).</li>
|
|
49085
|
-
<li>imageSpriteInfo (image sprite information).</li>
|
|
49086
|
-
<li>snapshotByTimeOffsetInfo (point-in-time screenshot information).</li>
|
|
49087
|
-
<li>sampleSnapshotInfo (sampled screenshot information).</li>
|
|
49088
|
-
<li>keyFrameDescInfo (timestamp information).</li>
|
|
49089
|
-
<li>adaptiveDynamicStreamingInfo (information of adaptive bitrate streaming).</li>
|
|
49090
|
-
<li>miniProgramReviewInfo (WeChat Mini Program audit information).</li>
|
|
49591
|
+
* <p>Information to be returned for all specified media files, multiple information can be specified simultaneously, N starts incrementing from 0. If this field is not filled in, default return all information. Options include:</p><li>basicInfo (video basic information).</li><li>metaData (video metadata).</li><li>transcodeInfo (video transcoding result information).</li><li>animatedGraphicsInfo (video motion graphic result information).</li><li>imageSpriteInfo (video thumbnail information).</li><li>snapshotByTimeOffsetInfo (video screenshot by specified time point).</li><li>sampleSnapshotInfo (sampling screenshot information).</li><li>keyFrameDescInfo (Dotting Information).</li><li>adaptiveDynamicStreamingInfo (Adaptive Bitrate Streaming information).</li><li>miniProgramReviewInfo (miniProgramReviewInfo).</li>
|
|
49091
49592
|
* @type {Array.<string> || null}
|
|
49092
49593
|
*/
|
|
49093
49594
|
this.Filters = null;
|
|
49094
49595
|
|
|
49095
49596
|
/**
|
|
49096
|
-
* Sorting
|
|
49097
|
-
<li>Valid value of `Sort.Field`: CreateTime.</li>
|
|
49098
|
-
<li>If `Text`, `Names`, or `Descriptions` is not empty, the `Sort.Field` field will not take effect, and the search results will be sorted by match rate.</li>
|
|
49597
|
+
* <p>Sorting method.</p><li>Sort.Field optional CreateTime.</li><li>When Text, Names, or Descriptions is not empty, the Sort.Field field is invalid. Search results sorted by relevance.</li>
|
|
49099
49598
|
* @type {SortBy || null}
|
|
49100
49599
|
*/
|
|
49101
49600
|
this.Sort = null;
|
|
49102
49601
|
|
|
49103
49602
|
/**
|
|
49104
|
-
* <div id="p_offset">
|
|
49105
|
-
<li>Value range: "Offset + Limit" cannot be more than 5,000. (For more information, please see <a href="#maxResultsDesc">Limit on the Number of Results Returned by API</a>)</li></div>
|
|
49603
|
+
* <div id="p_offset">Starting offset amount for pagination return, default value: 0. Returns entries from Offset to Offset+Limit-1.<li>Value ranges from...to... Offset + Limit is no more than 5000. (See: <a href="#maxResultsDesc">API return result count limit</a>)</li></div>
|
|
49106
49604
|
* @type {number || null}
|
|
49107
49605
|
*/
|
|
49108
49606
|
this.Offset = null;
|
|
49109
49607
|
|
|
49110
49608
|
/**
|
|
49111
|
-
* <div id="p_limit">Number of
|
|
49112
|
-
<li>Value range: "Offset + Limit" cannot be more than 5,000. (For more information, please see <a href="#maxResultsDesc">Limit on the Number of Results Returned by API</a>)</li></div>
|
|
49609
|
+
* <div id="p_limit">Number of records returned in pages. Default value: 10. Records from Offset to Offset+Limit-1 will be returned.<li>Value ranges from...to... Offset + Limit is no more than 5000. (Refer to: <a href="#maxResultsDesc">API return result count limit</a>)</li></div>
|
|
49113
49610
|
* @type {number || null}
|
|
49114
49611
|
*/
|
|
49115
49612
|
this.Limit = null;
|
|
49116
49613
|
|
|
49117
49614
|
/**
|
|
49118
|
-
* (
|
|
49119
|
-
Search text, which fuzzily matches the media file name or description. The more matching items and the higher the match rate, the higher-ranked the result. It can contain up to 64 characters.
|
|
49615
|
+
* <p>(Not recommended: Use Names, NamePrefixes, or Descriptions as alternatives)<br>Search text, fuzzy match media file name or description information. The higher the matching degree and more matches, the higher priority in sorting. Length limit: 64 characters.</p>
|
|
49120
49616
|
* @type {string || null}
|
|
49121
49617
|
*/
|
|
49122
49618
|
this.Text = null;
|
|
49123
49619
|
|
|
49124
49620
|
/**
|
|
49125
|
-
* (
|
|
49126
|
-
Media file source. For valid values, please see [SourceType](https://intl.cloud.tencent.com/document/product/266/31773?from_cn_redirect=1#MediaSourceData).
|
|
49621
|
+
* <p>(Not recommended: Use SourceTypes as an alternative)<br>Media file source. Source value reference <a href="https://www.tencentcloud.com/document/product/266/31773?from_cn_redirect=1#MediaSourceData">SourceType</a>.</p>
|
|
49127
49622
|
* @type {string || null}
|
|
49128
49623
|
*/
|
|
49129
49624
|
this.SourceType = null;
|
|
49130
49625
|
|
|
49131
49626
|
/**
|
|
49132
|
-
* (Not recommended
|
|
49133
|
-
The live stream code.
|
|
49627
|
+
* <p>(Not recommended: Use StreamIds as an alternative)<br>Push stream live code.</p>
|
|
49134
49628
|
* @type {string || null}
|
|
49135
49629
|
*/
|
|
49136
49630
|
this.StreamId = null;
|
|
49137
49631
|
|
|
49138
49632
|
/**
|
|
49139
|
-
* (
|
|
49140
|
-
Start time in the creation time range.
|
|
49141
|
-
<li>After or at the start time.</li>
|
|
49142
|
-
<li>If `CreateTime.After` also exists, it will be used first.</li>
|
|
49143
|
-
<li>In ISO 8601 format. For more information, please see [ISO Date Format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#I).</li>
|
|
49633
|
+
* <p>(Not recommended: Use CreateTime instead)<br>Start time of creation time.</p><li>Greater than or equal to start time.</li><li>When CreateTime.After also exists, CreateTime.After will be used first.</li><li>Format according to ISO 8601 standard. For details, see [ISO date format description](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I).</li>
|
|
49144
49634
|
* @type {string || null}
|
|
49145
49635
|
*/
|
|
49146
49636
|
this.StartTime = null;
|
|
49147
49637
|
|
|
49148
49638
|
/**
|
|
49149
|
-
* (
|
|
49150
|
-
End time in the creation time range.
|
|
49151
|
-
<li>Before the end time.</li>
|
|
49152
|
-
<li>If `CreateTime.Before` also exists, it will be used first.</li>
|
|
49153
|
-
<li>In ISO 8601 format. For more information, please see [ISO Date Format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#I).</li>
|
|
49639
|
+
* <p>(Not recommended: Use CreateTime instead)<br>End time of creation time.</p><li>Less than end time.</li><li>When CreateTime.Before also exists, CreateTime.Before will be used first.</li><li>Format according to ISO 8601 standard. For details, see [ISO date format description](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I).</li>
|
|
49154
49640
|
* @type {string || null}
|
|
49155
49641
|
*/
|
|
49156
49642
|
this.EndTime = null;
|
|
49157
49643
|
|
|
49158
49644
|
/**
|
|
49159
|
-
* This
|
|
49645
|
+
* <p>This field is invalid.</p>
|
|
49160
49646
|
* @type {Array.<string> || null}
|
|
49161
49647
|
*/
|
|
49162
49648
|
this.Vids = null;
|
|
49163
49649
|
|
|
49164
49650
|
/**
|
|
49165
|
-
* This
|
|
49651
|
+
* <p>This field is invalid.</p>
|
|
49166
49652
|
* @type {string || null}
|
|
49167
49653
|
*/
|
|
49168
49654
|
this.Vid = null;
|
|
49169
49655
|
|
|
49656
|
+
/**
|
|
49657
|
+
* <p>Live streaming push Domain. Valid when the media source is Live streaming Recording.</p>
|
|
49658
|
+
* @type {Array.<string> || null}
|
|
49659
|
+
*/
|
|
49660
|
+
this.StreamDomains = null;
|
|
49661
|
+
|
|
49662
|
+
/**
|
|
49663
|
+
* <p>Live streaming push Path. Valid at that time when the source is live recording.</p>
|
|
49664
|
+
* @type {Array.<string> || null}
|
|
49665
|
+
*/
|
|
49666
|
+
this.StreamPaths = null;
|
|
49667
|
+
|
|
49170
49668
|
}
|
|
49171
49669
|
|
|
49172
49670
|
/**
|
|
@@ -49221,6 +49719,8 @@ End time in the creation time range.
|
|
|
49221
49719
|
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
49222
49720
|
this.Vids = 'Vids' in params ? params.Vids : null;
|
|
49223
49721
|
this.Vid = 'Vid' in params ? params.Vid : null;
|
|
49722
|
+
this.StreamDomains = 'StreamDomains' in params ? params.StreamDomains : null;
|
|
49723
|
+
this.StreamPaths = 'StreamPaths' in params ? params.StreamPaths : null;
|
|
49224
49724
|
|
|
49225
49725
|
}
|
|
49226
49726
|
}
|
|
@@ -53973,7 +54473,7 @@ module.exports = {
|
|
|
53973
54473
|
QualityEnhanceTaskInput: QualityEnhanceTaskInput,
|
|
53974
54474
|
ResetProcedureTemplateResponse: ResetProcedureTemplateResponse,
|
|
53975
54475
|
Origin: Origin,
|
|
53976
|
-
|
|
54476
|
+
FaceRecognitionInfo: FaceRecognitionInfo,
|
|
53977
54477
|
RebuildMediaTargetInfo: RebuildMediaTargetInfo,
|
|
53978
54478
|
ModifySampleSnapshotTemplateRequest: ModifySampleSnapshotTemplateRequest,
|
|
53979
54479
|
AiReviewPoliticalOcrTaskInput: AiReviewPoliticalOcrTaskInput,
|
|
@@ -54058,6 +54558,7 @@ module.exports = {
|
|
|
54058
54558
|
DeleteSuperPlayerConfigRequest: DeleteSuperPlayerConfigRequest,
|
|
54059
54559
|
AiReviewTerrorismOcrTaskInput: AiReviewTerrorismOcrTaskInput,
|
|
54060
54560
|
AiRecognitionTaskOcrWordsResultInput: AiRecognitionTaskOcrWordsResultInput,
|
|
54561
|
+
MediaSnapshotByTimeOffsetItem: MediaSnapshotByTimeOffsetItem,
|
|
54061
54562
|
SceneAigcImageTaskOutputFileInfo: SceneAigcImageTaskOutputFileInfo,
|
|
54062
54563
|
ModifyMediaStorageClassResponse: ModifyMediaStorageClassResponse,
|
|
54063
54564
|
AiReviewPornTaskInput: AiReviewPornTaskInput,
|
|
@@ -54104,7 +54605,7 @@ module.exports = {
|
|
|
54104
54605
|
CreateRebuildMediaTemplateResponse: CreateRebuildMediaTemplateResponse,
|
|
54105
54606
|
AiRecognitionTaskOcrWordsResultOutput: AiRecognitionTaskOcrWordsResultOutput,
|
|
54106
54607
|
AiSampleFaceInfo: AiSampleFaceInfo,
|
|
54107
|
-
|
|
54608
|
+
ImageUnderstandingInfo: ImageUnderstandingInfo,
|
|
54108
54609
|
CDNDomainInfo: CDNDomainInfo,
|
|
54109
54610
|
DescribeEnhanceMediaTemplatesResponse: DescribeEnhanceMediaTemplatesResponse,
|
|
54110
54611
|
ImageBlur: ImageBlur,
|
|
@@ -54264,6 +54765,7 @@ module.exports = {
|
|
|
54264
54765
|
CreateSuperPlayerConfigResponse: CreateSuperPlayerConfigResponse,
|
|
54265
54766
|
AiAnalysisTaskFrameTagOutput: AiAnalysisTaskFrameTagOutput,
|
|
54266
54767
|
CreateEnhanceMediaTemplateResponse: CreateEnhanceMediaTemplateResponse,
|
|
54768
|
+
KnowledgeBasesInfo: KnowledgeBasesInfo,
|
|
54267
54769
|
DeleteReviewTemplateResponse: DeleteReviewTemplateResponse,
|
|
54268
54770
|
DNSVerifyInfo: DNSVerifyInfo,
|
|
54269
54771
|
MediaAnimatedGraphicsItem: MediaAnimatedGraphicsItem,
|
|
@@ -54304,7 +54806,7 @@ module.exports = {
|
|
|
54304
54806
|
MediaTrackItem: MediaTrackItem,
|
|
54305
54807
|
ImportMediaKnowledgeResponse: ImportMediaKnowledgeResponse,
|
|
54306
54808
|
RestoreMediaResponse: RestoreMediaResponse,
|
|
54307
|
-
|
|
54809
|
+
ImageUnderstandingItem: ImageUnderstandingItem,
|
|
54308
54810
|
ModifyWordSampleResponse: ModifyWordSampleResponse,
|
|
54309
54811
|
EnhanceMediaByTemplateResponse: EnhanceMediaByTemplateResponse,
|
|
54310
54812
|
CreateJustInTimeTranscodeTemplateRequest: CreateJustInTimeTranscodeTemplateRequest,
|
|
@@ -54318,6 +54820,7 @@ module.exports = {
|
|
|
54318
54820
|
CreateLLMComprehendTemplateResponse: CreateLLMComprehendTemplateResponse,
|
|
54319
54821
|
MediaProcessTaskTranscodeResult: MediaProcessTaskTranscodeResult,
|
|
54320
54822
|
BlurConfigureInfoForUpdate: BlurConfigureInfoForUpdate,
|
|
54823
|
+
ProcessMediaByUrlResponse: ProcessMediaByUrlResponse,
|
|
54321
54824
|
EditMediaVideoStream: EditMediaVideoStream,
|
|
54322
54825
|
ExtractTraceWatermarkTask: ExtractTraceWatermarkTask,
|
|
54323
54826
|
AiRecognitionTaskSegmentResultOutput: AiRecognitionTaskSegmentResultOutput,
|
|
@@ -54335,6 +54838,7 @@ module.exports = {
|
|
|
54335
54838
|
SimpleHlsClipRequest: SimpleHlsClipRequest,
|
|
54336
54839
|
MediaDeleteItem: MediaDeleteItem,
|
|
54337
54840
|
EnhanceConfigForUpdate: EnhanceConfigForUpdate,
|
|
54841
|
+
MediaProcessTaskSnapshotByTimeOffsetResult: MediaProcessTaskSnapshotByTimeOffsetResult,
|
|
54338
54842
|
PoliticalImageResult: PoliticalImageResult,
|
|
54339
54843
|
AiSamplePerson: AiSamplePerson,
|
|
54340
54844
|
MediaAdaptiveDynamicStreamingInfo: MediaAdaptiveDynamicStreamingInfo,
|
|
@@ -54444,12 +54948,12 @@ module.exports = {
|
|
|
54444
54948
|
DomainDetailInfo: DomainDetailInfo,
|
|
54445
54949
|
AiReviewTaskTerrorismResult: AiReviewTaskTerrorismResult,
|
|
54446
54950
|
SemanticsSearchResult: SemanticsSearchResult,
|
|
54447
|
-
|
|
54951
|
+
MPSAiMediaTask: MPSAiMediaTask,
|
|
54448
54952
|
DescribeImageReviewUsageDataRequest: DescribeImageReviewUsageDataRequest,
|
|
54449
54953
|
MediaContentReviewAsrTextSegmentItem: MediaContentReviewAsrTextSegmentItem,
|
|
54450
54954
|
DescribeEventConfigResponse: DescribeEventConfigResponse,
|
|
54451
54955
|
DescribeCdnLogsResponse: DescribeCdnLogsResponse,
|
|
54452
|
-
|
|
54956
|
+
FaceRecognitionTask: FaceRecognitionTask,
|
|
54453
54957
|
AigcVideoTaskOutput: AigcVideoTaskOutput,
|
|
54454
54958
|
DeletePersonSampleResponse: DeletePersonSampleResponse,
|
|
54455
54959
|
ReviewInfo: ReviewInfo,
|
|
@@ -54483,6 +54987,7 @@ module.exports = {
|
|
|
54483
54987
|
ModifyCDNDomainConfigRequest: ModifyCDNDomainConfigRequest,
|
|
54484
54988
|
DeleteContentReviewTemplateResponse: DeleteContentReviewTemplateResponse,
|
|
54485
54989
|
CloneCDNDomainResponse: CloneCDNDomainResponse,
|
|
54990
|
+
FaceRecognitionOutputFileInfo: FaceRecognitionOutputFileInfo,
|
|
54486
54991
|
MediaBasicInfo: MediaBasicInfo,
|
|
54487
54992
|
AiReviewPoliticalAsrTaskInput: AiReviewPoliticalAsrTaskInput,
|
|
54488
54993
|
PullUploadRequest: PullUploadRequest,
|
|
@@ -54536,10 +55041,12 @@ module.exports = {
|
|
|
54536
55041
|
StatDataItem: StatDataItem,
|
|
54537
55042
|
CreateStorageRegionResponse: CreateStorageRegionResponse,
|
|
54538
55043
|
AccelerateAreaInfo: AccelerateAreaInfo,
|
|
55044
|
+
MediaImageSpriteItem: MediaImageSpriteItem,
|
|
54539
55045
|
MediaSourceData: MediaSourceData,
|
|
54540
55046
|
ProhibitedAsrReviewTemplateInfo: ProhibitedAsrReviewTemplateInfo,
|
|
54541
55047
|
HandleCurrentPlaylistResponse: HandleCurrentPlaylistResponse,
|
|
54542
55048
|
PushUrlCacheRequest: PushUrlCacheRequest,
|
|
55049
|
+
MediaContentReviewPoliticalSegmentItem: MediaContentReviewPoliticalSegmentItem,
|
|
54543
55050
|
CreateAIAnalysisTemplateResponse: CreateAIAnalysisTemplateResponse,
|
|
54544
55051
|
HeadTailConfigureInfo: HeadTailConfigureInfo,
|
|
54545
55052
|
EventContent: EventContent,
|
|
@@ -54557,6 +55064,7 @@ module.exports = {
|
|
|
54557
55064
|
SceneAigcImageTaskOutput: SceneAigcImageTaskOutput,
|
|
54558
55065
|
ComposeMediaTaskOutput: ComposeMediaTaskOutput,
|
|
54559
55066
|
DescribeQualityInspectTemplatesRequest: DescribeQualityInspectTemplatesRequest,
|
|
55067
|
+
MPSOutputFileInfo: MPSOutputFileInfo,
|
|
54560
55068
|
DescribeMediaInfosRequest: DescribeMediaInfosRequest,
|
|
54561
55069
|
CreateAigcApiTokenRequest: CreateAigcApiTokenRequest,
|
|
54562
55070
|
AsrFullTextConfigureInfo: AsrFullTextConfigureInfo,
|
|
@@ -54568,6 +55076,7 @@ module.exports = {
|
|
|
54568
55076
|
DescribeTaskDetailRequest: DescribeTaskDetailRequest,
|
|
54569
55077
|
MediaAiAnalysisClassificationItem: MediaAiAnalysisClassificationItem,
|
|
54570
55078
|
AiAnalysisTaskFrameTagResult: AiAnalysisTaskFrameTagResult,
|
|
55079
|
+
MPSAiMediaInfo: MPSAiMediaInfo,
|
|
54571
55080
|
AiReviewPornTaskOutput: AiReviewPornTaskOutput,
|
|
54572
55081
|
SDMCDrmKeyProviderInfo: SDMCDrmKeyProviderInfo,
|
|
54573
55082
|
AiRecognitionTaskAsrFullTextResult: AiRecognitionTaskAsrFullTextResult,
|
|
@@ -54704,6 +55213,7 @@ module.exports = {
|
|
|
54704
55213
|
AiContentReviewResult: AiContentReviewResult,
|
|
54705
55214
|
CreateAigcImageTaskRequest: CreateAigcImageTaskRequest,
|
|
54706
55215
|
TerrorismImgReviewTemplateInfo: TerrorismImgReviewTemplateInfo,
|
|
55216
|
+
MPSAiMediaItem: MPSAiMediaItem,
|
|
54707
55217
|
ApplyUploadResponse: ApplyUploadResponse,
|
|
54708
55218
|
ReviewAudioVideoResponse: ReviewAudioVideoResponse,
|
|
54709
55219
|
DeleteClassRequest: DeleteClassRequest,
|