tencentcloud-sdk-nodejs-intl-en 3.0.1303 → 3.0.1305
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/cdb/v20170320/models.js +4 -4
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/mps/v20190612/models.js +941 -231
- package/tencentcloud/mps/v20190612/mps_client.js +102 -45
- package/tencentcloud/mqtt/index.js +3 -0
- package/tencentcloud/mqtt/v20240516/index.js +4 -0
- package/tencentcloud/mqtt/v20240516/models.js +3565 -0
- package/tencentcloud/mqtt/v20240516/mqtt_client.js +388 -0
- package/tencentcloud/tcsas/v20250106/models.js +138 -336
- package/tencentcloud/vod/v20180717/models.js +241 -0
- package/tencentcloud/vod/v20180717/vod_client.js +27 -0
|
@@ -3872,6 +3872,34 @@ class MediaSnapshotByTimePicInfoItem extends AbstractModel {
|
|
|
3872
3872
|
}
|
|
3873
3873
|
}
|
|
3874
3874
|
|
|
3875
|
+
/**
|
|
3876
|
+
* DescribeAigcImageTask request structure.
|
|
3877
|
+
* @class
|
|
3878
|
+
*/
|
|
3879
|
+
class DescribeAigcImageTaskRequest extends AbstractModel {
|
|
3880
|
+
constructor(){
|
|
3881
|
+
super();
|
|
3882
|
+
|
|
3883
|
+
/**
|
|
3884
|
+
* AIGC image task processing task ID.
|
|
3885
|
+
* @type {string || null}
|
|
3886
|
+
*/
|
|
3887
|
+
this.TaskId = null;
|
|
3888
|
+
|
|
3889
|
+
}
|
|
3890
|
+
|
|
3891
|
+
/**
|
|
3892
|
+
* @private
|
|
3893
|
+
*/
|
|
3894
|
+
deserialize(params) {
|
|
3895
|
+
if (!params) {
|
|
3896
|
+
return;
|
|
3897
|
+
}
|
|
3898
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
3899
|
+
|
|
3900
|
+
}
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3875
3903
|
/**
|
|
3876
3904
|
* Control parameter of a custom figure audit task
|
|
3877
3905
|
* @class
|
|
@@ -6178,43 +6206,18 @@ class ModifyTranscodeTemplateRequest extends AbstractModel {
|
|
|
6178
6206
|
}
|
|
6179
6207
|
|
|
6180
6208
|
/**
|
|
6181
|
-
*
|
|
6209
|
+
* Input of video editing task.
|
|
6182
6210
|
* @class
|
|
6183
6211
|
*/
|
|
6184
|
-
class
|
|
6212
|
+
class EditMediaTaskInput extends AbstractModel {
|
|
6185
6213
|
constructor(){
|
|
6186
6214
|
super();
|
|
6187
6215
|
|
|
6188
6216
|
/**
|
|
6189
|
-
*
|
|
6190
|
-
* @type {
|
|
6191
|
-
*/
|
|
6192
|
-
this.Status = null;
|
|
6193
|
-
|
|
6194
|
-
/**
|
|
6195
|
-
* Error code. `0`: The task succeeded; other values: The task failed.
|
|
6196
|
-
* @type {number || null}
|
|
6197
|
-
*/
|
|
6198
|
-
this.ErrCode = null;
|
|
6199
|
-
|
|
6200
|
-
/**
|
|
6201
|
-
* The error message.
|
|
6202
|
-
* @type {string || null}
|
|
6203
|
-
*/
|
|
6204
|
-
this.Message = null;
|
|
6205
|
-
|
|
6206
|
-
/**
|
|
6207
|
-
* The input of the intelligent highlight generation task.
|
|
6208
|
-
* @type {AiAnalysisTaskHighlightInput || null}
|
|
6209
|
-
*/
|
|
6210
|
-
this.Input = null;
|
|
6211
|
-
|
|
6212
|
-
/**
|
|
6213
|
-
* The output of the intelligent highlight generation task.
|
|
6214
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6215
|
-
* @type {AiAnalysisTaskHighlightOutput || null}
|
|
6217
|
+
* Information of input video file.
|
|
6218
|
+
* @type {Array.<EditMediaFileInfo> || null}
|
|
6216
6219
|
*/
|
|
6217
|
-
this.
|
|
6220
|
+
this.FileInfoSet = null;
|
|
6218
6221
|
|
|
6219
6222
|
}
|
|
6220
6223
|
|
|
@@ -6225,20 +6228,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6225
6228
|
if (!params) {
|
|
6226
6229
|
return;
|
|
6227
6230
|
}
|
|
6228
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
6229
|
-
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
6230
|
-
this.Message = 'Message' in params ? params.Message : null;
|
|
6231
|
-
|
|
6232
|
-
if (params.Input) {
|
|
6233
|
-
let obj = new AiAnalysisTaskHighlightInput();
|
|
6234
|
-
obj.deserialize(params.Input)
|
|
6235
|
-
this.Input = obj;
|
|
6236
|
-
}
|
|
6237
6231
|
|
|
6238
|
-
if (params.
|
|
6239
|
-
|
|
6240
|
-
|
|
6241
|
-
|
|
6232
|
+
if (params.FileInfoSet) {
|
|
6233
|
+
this.FileInfoSet = new Array();
|
|
6234
|
+
for (let z in params.FileInfoSet) {
|
|
6235
|
+
let obj = new EditMediaFileInfo();
|
|
6236
|
+
obj.deserialize(params.FileInfoSet[z]);
|
|
6237
|
+
this.FileInfoSet.push(obj);
|
|
6238
|
+
}
|
|
6242
6239
|
}
|
|
6243
6240
|
|
|
6244
6241
|
}
|
|
@@ -7050,18 +7047,28 @@ class TagConfigureInfo extends AbstractModel {
|
|
|
7050
7047
|
}
|
|
7051
7048
|
|
|
7052
7049
|
/**
|
|
7053
|
-
*
|
|
7050
|
+
* The time information of an element on the output video track of a video editing/compositing task.
|
|
7054
7051
|
* @class
|
|
7055
7052
|
*/
|
|
7056
|
-
class
|
|
7053
|
+
class ComposeTrackTime extends AbstractModel {
|
|
7057
7054
|
constructor(){
|
|
7058
7055
|
super();
|
|
7059
7056
|
|
|
7060
7057
|
/**
|
|
7061
|
-
*
|
|
7062
|
-
|
|
7058
|
+
* The time when the element starts on the track.
|
|
7059
|
+
<li>The value of this parameter ends with `s`, which means seconds. For example, `3.5s` indicates the time when 3.5 seconds of the video elapses.</li>
|
|
7060
|
+
Note: If this parameter is not specified, the start time will be the end time of the previous element. Therefore, you can also use the placeholder parameter `ComposeEmptyItem` to configure the start time.
|
|
7061
|
+
* @type {string || null}
|
|
7063
7062
|
*/
|
|
7064
|
-
this.
|
|
7063
|
+
this.Start = null;
|
|
7064
|
+
|
|
7065
|
+
/**
|
|
7066
|
+
* The element duration.
|
|
7067
|
+
<li>The value of this parameter ends with `s`, which means seconds. For example, `3.5s` means 3.5 seconds.</li>
|
|
7068
|
+
The default value is the material duration, which is determined by `EndTime` and `StartTime` of `ComposeSourceMedia`. If `ComposeSourceMedia` is not specified, the duration will be 1 second.
|
|
7069
|
+
* @type {string || null}
|
|
7070
|
+
*/
|
|
7071
|
+
this.Duration = null;
|
|
7065
7072
|
|
|
7066
7073
|
}
|
|
7067
7074
|
|
|
@@ -7072,15 +7079,8 @@ class AiRecognitionTaskOcrWordsResultOutput extends AbstractModel {
|
|
|
7072
7079
|
if (!params) {
|
|
7073
7080
|
return;
|
|
7074
7081
|
}
|
|
7075
|
-
|
|
7076
|
-
|
|
7077
|
-
this.ResultSet = new Array();
|
|
7078
|
-
for (let z in params.ResultSet) {
|
|
7079
|
-
let obj = new AiRecognitionTaskOcrWordsResultItem();
|
|
7080
|
-
obj.deserialize(params.ResultSet[z]);
|
|
7081
|
-
this.ResultSet.push(obj);
|
|
7082
|
-
}
|
|
7083
|
-
}
|
|
7082
|
+
this.Start = 'Start' in params ? params.Start : null;
|
|
7083
|
+
this.Duration = 'Duration' in params ? params.Duration : null;
|
|
7084
7084
|
|
|
7085
7085
|
}
|
|
7086
7086
|
}
|
|
@@ -7396,6 +7396,41 @@ class EnableWorkflowRequest extends AbstractModel {
|
|
|
7396
7396
|
}
|
|
7397
7397
|
}
|
|
7398
7398
|
|
|
7399
|
+
/**
|
|
7400
|
+
*
|
|
7401
|
+
* @class
|
|
7402
|
+
*/
|
|
7403
|
+
class AigcImageExtraParam extends AbstractModel {
|
|
7404
|
+
constructor(){
|
|
7405
|
+
super();
|
|
7406
|
+
|
|
7407
|
+
/**
|
|
7408
|
+
*
|
|
7409
|
+
* @type {string || null}
|
|
7410
|
+
*/
|
|
7411
|
+
this.AspectRatio = null;
|
|
7412
|
+
|
|
7413
|
+
/**
|
|
7414
|
+
*
|
|
7415
|
+
* @type {string || null}
|
|
7416
|
+
*/
|
|
7417
|
+
this.Resolution = null;
|
|
7418
|
+
|
|
7419
|
+
}
|
|
7420
|
+
|
|
7421
|
+
/**
|
|
7422
|
+
* @private
|
|
7423
|
+
*/
|
|
7424
|
+
deserialize(params) {
|
|
7425
|
+
if (!params) {
|
|
7426
|
+
return;
|
|
7427
|
+
}
|
|
7428
|
+
this.AspectRatio = 'AspectRatio' in params ? params.AspectRatio : null;
|
|
7429
|
+
this.Resolution = 'Resolution' in params ? params.Resolution : null;
|
|
7430
|
+
|
|
7431
|
+
}
|
|
7432
|
+
}
|
|
7433
|
+
|
|
7399
7434
|
/**
|
|
7400
7435
|
* Result information of intelligent categorization
|
|
7401
7436
|
* @class
|
|
@@ -7536,18 +7571,43 @@ class AiRecognitionTaskOcrFullTextResultOutput extends AbstractModel {
|
|
|
7536
7571
|
}
|
|
7537
7572
|
|
|
7538
7573
|
/**
|
|
7539
|
-
*
|
|
7574
|
+
* The result of an intelligent highlight generation task.
|
|
7540
7575
|
* @class
|
|
7541
7576
|
*/
|
|
7542
|
-
class
|
|
7577
|
+
class AiAnalysisTaskHighlightResult extends AbstractModel {
|
|
7543
7578
|
constructor(){
|
|
7544
7579
|
super();
|
|
7545
7580
|
|
|
7546
7581
|
/**
|
|
7547
|
-
*
|
|
7548
|
-
* @type {
|
|
7582
|
+
* The task status. Valid values: `PROCESSING`, `SUCCESS`, `FAIL`.
|
|
7583
|
+
* @type {string || null}
|
|
7549
7584
|
*/
|
|
7550
|
-
this.
|
|
7585
|
+
this.Status = null;
|
|
7586
|
+
|
|
7587
|
+
/**
|
|
7588
|
+
* Error code. `0`: The task succeeded; other values: The task failed.
|
|
7589
|
+
* @type {number || null}
|
|
7590
|
+
*/
|
|
7591
|
+
this.ErrCode = null;
|
|
7592
|
+
|
|
7593
|
+
/**
|
|
7594
|
+
* The error message.
|
|
7595
|
+
* @type {string || null}
|
|
7596
|
+
*/
|
|
7597
|
+
this.Message = null;
|
|
7598
|
+
|
|
7599
|
+
/**
|
|
7600
|
+
* The input of the intelligent highlight generation task.
|
|
7601
|
+
* @type {AiAnalysisTaskHighlightInput || null}
|
|
7602
|
+
*/
|
|
7603
|
+
this.Input = null;
|
|
7604
|
+
|
|
7605
|
+
/**
|
|
7606
|
+
* The output of the intelligent highlight generation task.
|
|
7607
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7608
|
+
* @type {AiAnalysisTaskHighlightOutput || null}
|
|
7609
|
+
*/
|
|
7610
|
+
this.Output = null;
|
|
7551
7611
|
|
|
7552
7612
|
}
|
|
7553
7613
|
|
|
@@ -7558,14 +7618,20 @@ class EditMediaTaskInput extends AbstractModel {
|
|
|
7558
7618
|
if (!params) {
|
|
7559
7619
|
return;
|
|
7560
7620
|
}
|
|
7621
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
7622
|
+
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
7623
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
7561
7624
|
|
|
7562
|
-
if (params.
|
|
7563
|
-
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
|
|
7625
|
+
if (params.Input) {
|
|
7626
|
+
let obj = new AiAnalysisTaskHighlightInput();
|
|
7627
|
+
obj.deserialize(params.Input)
|
|
7628
|
+
this.Input = obj;
|
|
7629
|
+
}
|
|
7630
|
+
|
|
7631
|
+
if (params.Output) {
|
|
7632
|
+
let obj = new AiAnalysisTaskHighlightOutput();
|
|
7633
|
+
obj.deserialize(params.Output)
|
|
7634
|
+
this.Output = obj;
|
|
7569
7635
|
}
|
|
7570
7636
|
|
|
7571
7637
|
}
|
|
@@ -7638,6 +7704,41 @@ The audio transition, which connects two audio segments.
|
|
|
7638
7704
|
}
|
|
7639
7705
|
}
|
|
7640
7706
|
|
|
7707
|
+
/**
|
|
7708
|
+
* CreateAigcVideoTask response structure.
|
|
7709
|
+
* @class
|
|
7710
|
+
*/
|
|
7711
|
+
class CreateAigcVideoTaskResponse extends AbstractModel {
|
|
7712
|
+
constructor(){
|
|
7713
|
+
super();
|
|
7714
|
+
|
|
7715
|
+
/**
|
|
7716
|
+
* Upon successful task creation, the returned task ID can be used to invoke the query interface for polling task progress and retrieving generated results.
|
|
7717
|
+
* @type {string || null}
|
|
7718
|
+
*/
|
|
7719
|
+
this.TaskId = null;
|
|
7720
|
+
|
|
7721
|
+
/**
|
|
7722
|
+
* 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.
|
|
7723
|
+
* @type {string || null}
|
|
7724
|
+
*/
|
|
7725
|
+
this.RequestId = null;
|
|
7726
|
+
|
|
7727
|
+
}
|
|
7728
|
+
|
|
7729
|
+
/**
|
|
7730
|
+
* @private
|
|
7731
|
+
*/
|
|
7732
|
+
deserialize(params) {
|
|
7733
|
+
if (!params) {
|
|
7734
|
+
return;
|
|
7735
|
+
}
|
|
7736
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
7737
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7738
|
+
|
|
7739
|
+
}
|
|
7740
|
+
}
|
|
7741
|
+
|
|
7641
7742
|
/**
|
|
7642
7743
|
* Control parameter of a custom speech audit task
|
|
7643
7744
|
* @class
|
|
@@ -7691,28 +7792,18 @@ There can be up to 10 tags, each with a length limit of 16 characters.
|
|
|
7691
7792
|
}
|
|
7692
7793
|
|
|
7693
7794
|
/**
|
|
7694
|
-
*
|
|
7795
|
+
* DescribeAigcVideoTask request structure.
|
|
7695
7796
|
* @class
|
|
7696
7797
|
*/
|
|
7697
|
-
class
|
|
7798
|
+
class DescribeAigcVideoTaskRequest extends AbstractModel {
|
|
7698
7799
|
constructor(){
|
|
7699
7800
|
super();
|
|
7700
7801
|
|
|
7701
7802
|
/**
|
|
7702
|
-
*
|
|
7703
|
-
<li>The value of this parameter ends with `s`, which means seconds. For example, `3.5s` indicates the time when 3.5 seconds of the video elapses.</li>
|
|
7704
|
-
Note: If this parameter is not specified, the start time will be the end time of the previous element. Therefore, you can also use the placeholder parameter `ComposeEmptyItem` to configure the start time.
|
|
7705
|
-
* @type {string || null}
|
|
7706
|
-
*/
|
|
7707
|
-
this.Start = null;
|
|
7708
|
-
|
|
7709
|
-
/**
|
|
7710
|
-
* The element duration.
|
|
7711
|
-
<li>The value of this parameter ends with `s`, which means seconds. For example, `3.5s` means 3.5 seconds.</li>
|
|
7712
|
-
The default value is the material duration, which is determined by `EndTime` and `StartTime` of `ComposeSourceMedia`. If `ComposeSourceMedia` is not specified, the duration will be 1 second.
|
|
7803
|
+
* AIGC video task processing task ID.
|
|
7713
7804
|
* @type {string || null}
|
|
7714
7805
|
*/
|
|
7715
|
-
this.
|
|
7806
|
+
this.TaskId = null;
|
|
7716
7807
|
|
|
7717
7808
|
}
|
|
7718
7809
|
|
|
@@ -7723,8 +7814,7 @@ The default value is the material duration, which is determined by `EndTime` and
|
|
|
7723
7814
|
if (!params) {
|
|
7724
7815
|
return;
|
|
7725
7816
|
}
|
|
7726
|
-
this.
|
|
7727
|
-
this.Duration = 'Duration' in params ? params.Duration : null;
|
|
7817
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
7728
7818
|
|
|
7729
7819
|
}
|
|
7730
7820
|
}
|
|
@@ -8680,18 +8770,18 @@ Default value: `ON`.
|
|
|
8680
8770
|
}
|
|
8681
8771
|
|
|
8682
8772
|
/**
|
|
8683
|
-
*
|
|
8773
|
+
* MP4 configuration parameter.
|
|
8684
8774
|
* @class
|
|
8685
8775
|
*/
|
|
8686
|
-
class
|
|
8776
|
+
class MP4ConfigureInfo extends AbstractModel {
|
|
8687
8777
|
constructor(){
|
|
8688
8778
|
super();
|
|
8689
8779
|
|
|
8690
8780
|
/**
|
|
8691
|
-
*
|
|
8781
|
+
* Recording duration, in seconds. The interval can range from 10 minutes to 720 minutes. It is 60 minutes (3,600 seconds) by default.
|
|
8692
8782
|
* @type {number || null}
|
|
8693
8783
|
*/
|
|
8694
|
-
this.
|
|
8784
|
+
this.Interval = null;
|
|
8695
8785
|
|
|
8696
8786
|
}
|
|
8697
8787
|
|
|
@@ -8702,7 +8792,7 @@ class DeleteTranscodeTemplateRequest extends AbstractModel {
|
|
|
8702
8792
|
if (!params) {
|
|
8703
8793
|
return;
|
|
8704
8794
|
}
|
|
8705
|
-
this.
|
|
8795
|
+
this.Interval = 'Interval' in params ? params.Interval : null;
|
|
8706
8796
|
|
|
8707
8797
|
}
|
|
8708
8798
|
}
|
|
@@ -10421,6 +10511,41 @@ class PornAsrReviewTemplateInfo extends AbstractModel {
|
|
|
10421
10511
|
}
|
|
10422
10512
|
}
|
|
10423
10513
|
|
|
10514
|
+
/**
|
|
10515
|
+
* CreateAigcImageTask response structure.
|
|
10516
|
+
* @class
|
|
10517
|
+
*/
|
|
10518
|
+
class CreateAigcImageTaskResponse extends AbstractModel {
|
|
10519
|
+
constructor(){
|
|
10520
|
+
super();
|
|
10521
|
+
|
|
10522
|
+
/**
|
|
10523
|
+
* Returns the task ID.
|
|
10524
|
+
* @type {string || null}
|
|
10525
|
+
*/
|
|
10526
|
+
this.TaskId = null;
|
|
10527
|
+
|
|
10528
|
+
/**
|
|
10529
|
+
* 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.
|
|
10530
|
+
* @type {string || null}
|
|
10531
|
+
*/
|
|
10532
|
+
this.RequestId = null;
|
|
10533
|
+
|
|
10534
|
+
}
|
|
10535
|
+
|
|
10536
|
+
/**
|
|
10537
|
+
* @private
|
|
10538
|
+
*/
|
|
10539
|
+
deserialize(params) {
|
|
10540
|
+
if (!params) {
|
|
10541
|
+
return;
|
|
10542
|
+
}
|
|
10543
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
10544
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10545
|
+
|
|
10546
|
+
}
|
|
10547
|
+
}
|
|
10548
|
+
|
|
10424
10549
|
/**
|
|
10425
10550
|
* The video stream information of a video edit/compositing task.
|
|
10426
10551
|
* @class
|
|
@@ -13640,34 +13765,6 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
13640
13765
|
}
|
|
13641
13766
|
}
|
|
13642
13767
|
|
|
13643
|
-
/**
|
|
13644
|
-
* MP4 configuration parameter.
|
|
13645
|
-
* @class
|
|
13646
|
-
*/
|
|
13647
|
-
class MP4ConfigureInfo extends AbstractModel {
|
|
13648
|
-
constructor(){
|
|
13649
|
-
super();
|
|
13650
|
-
|
|
13651
|
-
/**
|
|
13652
|
-
* Recording duration, in seconds. The interval can range from 10 minutes to 720 minutes. It is 60 minutes (3,600 seconds) by default.
|
|
13653
|
-
* @type {number || null}
|
|
13654
|
-
*/
|
|
13655
|
-
this.Interval = null;
|
|
13656
|
-
|
|
13657
|
-
}
|
|
13658
|
-
|
|
13659
|
-
/**
|
|
13660
|
-
* @private
|
|
13661
|
-
*/
|
|
13662
|
-
deserialize(params) {
|
|
13663
|
-
if (!params) {
|
|
13664
|
-
return;
|
|
13665
|
-
}
|
|
13666
|
-
this.Interval = 'Interval' in params ? params.Interval : null;
|
|
13667
|
-
|
|
13668
|
-
}
|
|
13669
|
-
}
|
|
13670
|
-
|
|
13671
13768
|
/**
|
|
13672
13769
|
* Subtitle position information.
|
|
13673
13770
|
* @class
|
|
@@ -14345,6 +14442,83 @@ class ModifyWordSampleRequest extends AbstractModel {
|
|
|
14345
14442
|
}
|
|
14346
14443
|
}
|
|
14347
14444
|
|
|
14445
|
+
/**
|
|
14446
|
+
* Video editing task information
|
|
14447
|
+
* @class
|
|
14448
|
+
*/
|
|
14449
|
+
class EditMediaTask extends AbstractModel {
|
|
14450
|
+
constructor(){
|
|
14451
|
+
super();
|
|
14452
|
+
|
|
14453
|
+
/**
|
|
14454
|
+
* Task ID.
|
|
14455
|
+
* @type {string || null}
|
|
14456
|
+
*/
|
|
14457
|
+
this.TaskId = null;
|
|
14458
|
+
|
|
14459
|
+
/**
|
|
14460
|
+
* Task status. Valid values:
|
|
14461
|
+
<li>PROCESSING: processing;</li>
|
|
14462
|
+
<li>FINISH: completed.</li>
|
|
14463
|
+
* @type {string || null}
|
|
14464
|
+
*/
|
|
14465
|
+
this.Status = null;
|
|
14466
|
+
|
|
14467
|
+
/**
|
|
14468
|
+
* Error code
|
|
14469
|
+
<li>0: success;</li>
|
|
14470
|
+
<li>Other values: failure.</li>
|
|
14471
|
+
* @type {number || null}
|
|
14472
|
+
*/
|
|
14473
|
+
this.ErrCode = null;
|
|
14474
|
+
|
|
14475
|
+
/**
|
|
14476
|
+
* Error message.
|
|
14477
|
+
* @type {string || null}
|
|
14478
|
+
*/
|
|
14479
|
+
this.Message = null;
|
|
14480
|
+
|
|
14481
|
+
/**
|
|
14482
|
+
* Input of video editing task.
|
|
14483
|
+
* @type {EditMediaTaskInput || null}
|
|
14484
|
+
*/
|
|
14485
|
+
this.Input = null;
|
|
14486
|
+
|
|
14487
|
+
/**
|
|
14488
|
+
* Output of video editing task.
|
|
14489
|
+
* @type {EditMediaTaskOutput || null}
|
|
14490
|
+
*/
|
|
14491
|
+
this.Output = null;
|
|
14492
|
+
|
|
14493
|
+
}
|
|
14494
|
+
|
|
14495
|
+
/**
|
|
14496
|
+
* @private
|
|
14497
|
+
*/
|
|
14498
|
+
deserialize(params) {
|
|
14499
|
+
if (!params) {
|
|
14500
|
+
return;
|
|
14501
|
+
}
|
|
14502
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
14503
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
14504
|
+
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
14505
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
14506
|
+
|
|
14507
|
+
if (params.Input) {
|
|
14508
|
+
let obj = new EditMediaTaskInput();
|
|
14509
|
+
obj.deserialize(params.Input)
|
|
14510
|
+
this.Input = obj;
|
|
14511
|
+
}
|
|
14512
|
+
|
|
14513
|
+
if (params.Output) {
|
|
14514
|
+
let obj = new EditMediaTaskOutput();
|
|
14515
|
+
obj.deserialize(params.Output)
|
|
14516
|
+
this.Output = obj;
|
|
14517
|
+
}
|
|
14518
|
+
|
|
14519
|
+
}
|
|
14520
|
+
}
|
|
14521
|
+
|
|
14348
14522
|
/**
|
|
14349
14523
|
* Face recognition result segment
|
|
14350
14524
|
* @class
|
|
@@ -14495,6 +14669,60 @@ class AiAnalysisTaskDelLogoInput extends AbstractModel {
|
|
|
14495
14669
|
}
|
|
14496
14670
|
}
|
|
14497
14671
|
|
|
14672
|
+
/**
|
|
14673
|
+
* DescribeAigcImageTask response structure.
|
|
14674
|
+
* @class
|
|
14675
|
+
*/
|
|
14676
|
+
class DescribeAigcImageTaskResponse extends AbstractModel {
|
|
14677
|
+
constructor(){
|
|
14678
|
+
super();
|
|
14679
|
+
|
|
14680
|
+
/**
|
|
14681
|
+
* Current task status:
|
|
14682
|
+
WAIT: Pending,
|
|
14683
|
+
RUN: In progress,
|
|
14684
|
+
FAIL: Task failed,
|
|
14685
|
+
DONE: Task completed successfully.
|
|
14686
|
+
|
|
14687
|
+
* @type {string || null}
|
|
14688
|
+
*/
|
|
14689
|
+
this.Status = null;
|
|
14690
|
+
|
|
14691
|
+
/**
|
|
14692
|
+
* When the task status is DONE, the returned image URL list will be available for 12 hours. Please retrieve and utilize the images promptly.
|
|
14693
|
+
* @type {Array.<string> || null}
|
|
14694
|
+
*/
|
|
14695
|
+
this.ImageUrls = null;
|
|
14696
|
+
|
|
14697
|
+
/**
|
|
14698
|
+
* When the task status is FAIL, the failure information is returned.
|
|
14699
|
+
* @type {string || null}
|
|
14700
|
+
*/
|
|
14701
|
+
this.Message = null;
|
|
14702
|
+
|
|
14703
|
+
/**
|
|
14704
|
+
* 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.
|
|
14705
|
+
* @type {string || null}
|
|
14706
|
+
*/
|
|
14707
|
+
this.RequestId = null;
|
|
14708
|
+
|
|
14709
|
+
}
|
|
14710
|
+
|
|
14711
|
+
/**
|
|
14712
|
+
* @private
|
|
14713
|
+
*/
|
|
14714
|
+
deserialize(params) {
|
|
14715
|
+
if (!params) {
|
|
14716
|
+
return;
|
|
14717
|
+
}
|
|
14718
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
14719
|
+
this.ImageUrls = 'ImageUrls' in params ? params.ImageUrls : null;
|
|
14720
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
14721
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
14722
|
+
|
|
14723
|
+
}
|
|
14724
|
+
}
|
|
14725
|
+
|
|
14498
14726
|
/**
|
|
14499
14727
|
* Output information for smart subtitle tasks.
|
|
14500
14728
|
* @class
|
|
@@ -14891,6 +15119,84 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
14891
15119
|
}
|
|
14892
15120
|
}
|
|
14893
15121
|
|
|
15122
|
+
/**
|
|
15123
|
+
* CreateSnapshotByTimeOffsetTemplate request structure.
|
|
15124
|
+
* @class
|
|
15125
|
+
*/
|
|
15126
|
+
class CreateSnapshotByTimeOffsetTemplateRequest extends AbstractModel {
|
|
15127
|
+
constructor(){
|
|
15128
|
+
super();
|
|
15129
|
+
|
|
15130
|
+
/**
|
|
15131
|
+
* Name of a time point screencapturing template. Length limit: 64 characters.
|
|
15132
|
+
* @type {string || null}
|
|
15133
|
+
*/
|
|
15134
|
+
this.Name = null;
|
|
15135
|
+
|
|
15136
|
+
/**
|
|
15137
|
+
* Image width in px. Value range: [128, 4,096].
|
|
15138
|
+
* @type {number || null}
|
|
15139
|
+
*/
|
|
15140
|
+
this.Width = null;
|
|
15141
|
+
|
|
15142
|
+
/**
|
|
15143
|
+
* Image height in px. Value range: [128, 4,096].
|
|
15144
|
+
* @type {number || null}
|
|
15145
|
+
*/
|
|
15146
|
+
this.Height = null;
|
|
15147
|
+
|
|
15148
|
+
/**
|
|
15149
|
+
* Resolution adaption. Valid values:
|
|
15150
|
+
<li>open: enabled. In this case, `Width` represents the long side of a video, while `Height` the short side;</li>
|
|
15151
|
+
<li>close: disabled. In this case, `Width` represents the width of a video, while `Height` the height.</li>
|
|
15152
|
+
Default value: open.
|
|
15153
|
+
* @type {string || null}
|
|
15154
|
+
*/
|
|
15155
|
+
this.ResolutionAdaptive = null;
|
|
15156
|
+
|
|
15157
|
+
/**
|
|
15158
|
+
* The image format. Valid values: jpg (default), png, webp.
|
|
15159
|
+
* @type {string || null}
|
|
15160
|
+
*/
|
|
15161
|
+
this.Format = null;
|
|
15162
|
+
|
|
15163
|
+
/**
|
|
15164
|
+
* Template description. Length limit: 256 characters.
|
|
15165
|
+
* @type {string || null}
|
|
15166
|
+
*/
|
|
15167
|
+
this.Comment = null;
|
|
15168
|
+
|
|
15169
|
+
/**
|
|
15170
|
+
* Fill type. "Fill" refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. The following fill types are supported:
|
|
15171
|
+
<li> stretch: stretch. The screenshot will be stretched frame by frame to match the aspect ratio of the source video, which may make the screenshot "shorter" or "longer";</li>
|
|
15172
|
+
<li>black: fill with black. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with black color blocks.</li>
|
|
15173
|
+
<li>white: fill with white. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with white color blocks.</li>
|
|
15174
|
+
<li>gauss: fill with Gaussian blur. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with Gaussian blur.</li>
|
|
15175
|
+
Default value: black.
|
|
15176
|
+
* @type {string || null}
|
|
15177
|
+
*/
|
|
15178
|
+
this.FillType = null;
|
|
15179
|
+
|
|
15180
|
+
}
|
|
15181
|
+
|
|
15182
|
+
/**
|
|
15183
|
+
* @private
|
|
15184
|
+
*/
|
|
15185
|
+
deserialize(params) {
|
|
15186
|
+
if (!params) {
|
|
15187
|
+
return;
|
|
15188
|
+
}
|
|
15189
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
15190
|
+
this.Width = 'Width' in params ? params.Width : null;
|
|
15191
|
+
this.Height = 'Height' in params ? params.Height : null;
|
|
15192
|
+
this.ResolutionAdaptive = 'ResolutionAdaptive' in params ? params.ResolutionAdaptive : null;
|
|
15193
|
+
this.Format = 'Format' in params ? params.Format : null;
|
|
15194
|
+
this.Comment = 'Comment' in params ? params.Comment : null;
|
|
15195
|
+
this.FillType = 'FillType' in params ? params.FillType : null;
|
|
15196
|
+
|
|
15197
|
+
}
|
|
15198
|
+
}
|
|
15199
|
+
|
|
14894
15200
|
/**
|
|
14895
15201
|
* DescribeProcessImageTemplates response structure.
|
|
14896
15202
|
* @class
|
|
@@ -15676,6 +15982,168 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
15676
15982
|
}
|
|
15677
15983
|
}
|
|
15678
15984
|
|
|
15985
|
+
/**
|
|
15986
|
+
* CreateAigcVideoTask request structure.
|
|
15987
|
+
* @class
|
|
15988
|
+
*/
|
|
15989
|
+
class CreateAigcVideoTaskRequest extends AbstractModel {
|
|
15990
|
+
constructor(){
|
|
15991
|
+
super();
|
|
15992
|
+
|
|
15993
|
+
/**
|
|
15994
|
+
* Model Name. Currently supported models include: Hunyuan, Hailuo, Kling, Vidu, OS, GV
|
|
15995
|
+
* @type {string || null}
|
|
15996
|
+
*/
|
|
15997
|
+
this.ModelName = null;
|
|
15998
|
+
|
|
15999
|
+
/**
|
|
16000
|
+
* Specify the version number of a particular model. By default, the system uses the currently supported stable version of the model.
|
|
16001
|
+
1. Hailuo: Available options [02, 2.3].
|
|
16002
|
+
2. Kling: Available options [2.0, 2.1, 2.5, O1, 2.6].
|
|
16003
|
+
3. Vidu: Available options [q2, q2-pro, q2-turbo].
|
|
16004
|
+
4. GV: Available option [3.1].
|
|
16005
|
+
5. OS: Available option [2.0].
|
|
16006
|
+
* @type {string || null}
|
|
16007
|
+
*/
|
|
16008
|
+
this.ModelVersion = null;
|
|
16009
|
+
|
|
16010
|
+
/**
|
|
16011
|
+
* Generate video description. (Note: Maximum 2000 characters supported). This parameter is mandatory when no images are provided.
|
|
16012
|
+
* @type {string || null}
|
|
16013
|
+
*/
|
|
16014
|
+
this.Prompt = null;
|
|
16015
|
+
|
|
16016
|
+
/**
|
|
16017
|
+
* Used to specify the content you wish to prevent the model from generating.Note: Supported by select models.Examples:
|
|
16018
|
+
Overhead lighting, vibrant colors
|
|
16019
|
+
Human figures, animals
|
|
16020
|
+
Multiple vehicles, wind
|
|
16021
|
+
* @type {string || null}
|
|
16022
|
+
*/
|
|
16023
|
+
this.NegativePrompt = null;
|
|
16024
|
+
|
|
16025
|
+
/**
|
|
16026
|
+
* The default value is False, where the model strictly adheres to instructions. For optimal results with more refined prompts, setting this parameter to True will automatically optimize the input prompt to enhance generation quality.
|
|
16027
|
+
* @type {boolean || null}
|
|
16028
|
+
*/
|
|
16029
|
+
this.EnhancePrompt = null;
|
|
16030
|
+
|
|
16031
|
+
/**
|
|
16032
|
+
* The URL of the image used to guide video generation, which must be publicly accessible via the internet.
|
|
16033
|
+
Notes:
|
|
16034
|
+
1. The recommended image size should not exceed 10MB, though size limitations may vary across different models.
|
|
16035
|
+
2. Supported image formats: JPEG, PNG.
|
|
16036
|
+
3. When using the OS model, the input image dimensions must be either 1280x720 or 720x1280.
|
|
16037
|
+
* @type {string || null}
|
|
16038
|
+
*/
|
|
16039
|
+
this.ImageUrl = null;
|
|
16040
|
+
|
|
16041
|
+
/**
|
|
16042
|
+
* The model will utilize the image provided via this parameter as the ending frame for video generation.
|
|
16043
|
+
Supported models for this parameter:
|
|
16044
|
+
1. GV: When an ending frame image is provided, the ImageUrl parameter must also be specified as the starting frame.
|
|
16045
|
+
2. Kling: Under Resolution: 1080P, version 2.1 supports both start&end frames.
|
|
16046
|
+
3. Vidu, q2-pro, q2-turbo: Support start&end frames.
|
|
16047
|
+
Notes:
|
|
16048
|
+
1. It is recommended that the image size does not exceed 10MB, though specific model limitations may vary.
|
|
16049
|
+
2. Supported image formats: JPEG, PNG.
|
|
16050
|
+
* @type {string || null}
|
|
16051
|
+
*/
|
|
16052
|
+
this.LastImageUrl = null;
|
|
16053
|
+
|
|
16054
|
+
/**
|
|
16055
|
+
* A list comprising up to three material resource images, utilized to depict the reference images the model will employ for video generation.
|
|
16056
|
+
Models supporting multi-image input:
|
|
16057
|
+
1. GV: When utilizing multi-image input, neither ImageUrl nor LastImageUrl should be used.
|
|
16058
|
+
2. Vidu: Supports video generation with multiple reference images. For model q2, 1-7 images can be provided, with the subject ID specified via ReferenceType within ImageInfos.
|
|
16059
|
+
Notes:
|
|
16060
|
+
1. Each image must not exceed 10MB in size.
|
|
16061
|
+
2. Supported image formats: JPEG, PNG.
|
|
16062
|
+
* @type {Array.<AigcVideoReferenceImageInfo> || null}
|
|
16063
|
+
*/
|
|
16064
|
+
this.ImageInfos = null;
|
|
16065
|
+
|
|
16066
|
+
/**
|
|
16067
|
+
* Duration of generated videos.
|
|
16068
|
+
Notes:
|
|
16069
|
+
1. Kling supports 5 and 10 seconds. Default: 5 seconds.
|
|
16070
|
+
2. Hailuo's standard mode supports 6 and 10 seconds, while other modes only support 6 seconds. Default: 6 seconds.
|
|
16071
|
+
3. Vidu supports 1 to 10 seconds.
|
|
16072
|
+
4. GV supports 8 seconds. Default: 8 seconds.
|
|
16073
|
+
5. OS supports 4, 8, and 12 seconds. Default: 8 seconds.
|
|
16074
|
+
* @type {number || null}
|
|
16075
|
+
*/
|
|
16076
|
+
this.Duration = null;
|
|
16077
|
+
|
|
16078
|
+
/**
|
|
16079
|
+
* Used to pass additional parameters.
|
|
16080
|
+
* @type {AigcVideoExtraParam || null}
|
|
16081
|
+
*/
|
|
16082
|
+
this.ExtraParameters = null;
|
|
16083
|
+
|
|
16084
|
+
/**
|
|
16085
|
+
* The output files will be stored in the specified COS bucket. Note: COS service must be activated, and the MPS_QcsRole needs to be created and properly authorized.
|
|
16086
|
+
* @type {AigcStoreCosParam || null}
|
|
16087
|
+
*/
|
|
16088
|
+
this.StoreCosParam = null;
|
|
16089
|
+
|
|
16090
|
+
/**
|
|
16091
|
+
*
|
|
16092
|
+
Used to pass specific scenario parameters required by the model, serialized into a JSON format string. Example: {"camera_control":{"type":"simple"}}
|
|
16093
|
+
* @type {string || null}
|
|
16094
|
+
*/
|
|
16095
|
+
this.AdditionalParameters = null;
|
|
16096
|
+
|
|
16097
|
+
/**
|
|
16098
|
+
* Interface operator name.
|
|
16099
|
+
* @type {string || null}
|
|
16100
|
+
*/
|
|
16101
|
+
this.Operator = null;
|
|
16102
|
+
|
|
16103
|
+
}
|
|
16104
|
+
|
|
16105
|
+
/**
|
|
16106
|
+
* @private
|
|
16107
|
+
*/
|
|
16108
|
+
deserialize(params) {
|
|
16109
|
+
if (!params) {
|
|
16110
|
+
return;
|
|
16111
|
+
}
|
|
16112
|
+
this.ModelName = 'ModelName' in params ? params.ModelName : null;
|
|
16113
|
+
this.ModelVersion = 'ModelVersion' in params ? params.ModelVersion : null;
|
|
16114
|
+
this.Prompt = 'Prompt' in params ? params.Prompt : null;
|
|
16115
|
+
this.NegativePrompt = 'NegativePrompt' in params ? params.NegativePrompt : null;
|
|
16116
|
+
this.EnhancePrompt = 'EnhancePrompt' in params ? params.EnhancePrompt : null;
|
|
16117
|
+
this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
|
|
16118
|
+
this.LastImageUrl = 'LastImageUrl' in params ? params.LastImageUrl : null;
|
|
16119
|
+
|
|
16120
|
+
if (params.ImageInfos) {
|
|
16121
|
+
this.ImageInfos = new Array();
|
|
16122
|
+
for (let z in params.ImageInfos) {
|
|
16123
|
+
let obj = new AigcVideoReferenceImageInfo();
|
|
16124
|
+
obj.deserialize(params.ImageInfos[z]);
|
|
16125
|
+
this.ImageInfos.push(obj);
|
|
16126
|
+
}
|
|
16127
|
+
}
|
|
16128
|
+
this.Duration = 'Duration' in params ? params.Duration : null;
|
|
16129
|
+
|
|
16130
|
+
if (params.ExtraParameters) {
|
|
16131
|
+
let obj = new AigcVideoExtraParam();
|
|
16132
|
+
obj.deserialize(params.ExtraParameters)
|
|
16133
|
+
this.ExtraParameters = obj;
|
|
16134
|
+
}
|
|
16135
|
+
|
|
16136
|
+
if (params.StoreCosParam) {
|
|
16137
|
+
let obj = new AigcStoreCosParam();
|
|
16138
|
+
obj.deserialize(params.StoreCosParam)
|
|
16139
|
+
this.StoreCosParam = obj;
|
|
16140
|
+
}
|
|
16141
|
+
this.AdditionalParameters = 'AdditionalParameters' in params ? params.AdditionalParameters : null;
|
|
16142
|
+
this.Operator = 'Operator' in params ? params.Operator : null;
|
|
16143
|
+
|
|
16144
|
+
}
|
|
16145
|
+
}
|
|
16146
|
+
|
|
15679
16147
|
/**
|
|
15680
16148
|
* The translation input.
|
|
15681
16149
|
* @class
|
|
@@ -16946,6 +17414,41 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
16946
17414
|
}
|
|
16947
17415
|
}
|
|
16948
17416
|
|
|
17417
|
+
/**
|
|
17418
|
+
*
|
|
17419
|
+
* @class
|
|
17420
|
+
*/
|
|
17421
|
+
class AigcImageInfo extends AbstractModel {
|
|
17422
|
+
constructor(){
|
|
17423
|
+
super();
|
|
17424
|
+
|
|
17425
|
+
/**
|
|
17426
|
+
*
|
|
17427
|
+
* @type {string || null}
|
|
17428
|
+
*/
|
|
17429
|
+
this.ImageUrl = null;
|
|
17430
|
+
|
|
17431
|
+
/**
|
|
17432
|
+
*
|
|
17433
|
+
* @type {string || null}
|
|
17434
|
+
*/
|
|
17435
|
+
this.ReferenceType = null;
|
|
17436
|
+
|
|
17437
|
+
}
|
|
17438
|
+
|
|
17439
|
+
/**
|
|
17440
|
+
* @private
|
|
17441
|
+
*/
|
|
17442
|
+
deserialize(params) {
|
|
17443
|
+
if (!params) {
|
|
17444
|
+
return;
|
|
17445
|
+
}
|
|
17446
|
+
this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
|
|
17447
|
+
this.ReferenceType = 'ReferenceType' in params ? params.ReferenceType : null;
|
|
17448
|
+
|
|
17449
|
+
}
|
|
17450
|
+
}
|
|
17451
|
+
|
|
16949
17452
|
/**
|
|
16950
17453
|
* DeleteContentReviewTemplate response structure.
|
|
16951
17454
|
* @class
|
|
@@ -20596,52 +21099,18 @@ class DeleteBlindWatermarkTemplateRequest extends AbstractModel {
|
|
|
20596
21099
|
}
|
|
20597
21100
|
|
|
20598
21101
|
/**
|
|
20599
|
-
*
|
|
21102
|
+
* DeleteTranscodeTemplate request structure.
|
|
20600
21103
|
* @class
|
|
20601
21104
|
*/
|
|
20602
|
-
class
|
|
21105
|
+
class DeleteTranscodeTemplateRequest extends AbstractModel {
|
|
20603
21106
|
constructor(){
|
|
20604
21107
|
super();
|
|
20605
21108
|
|
|
20606
21109
|
/**
|
|
20607
|
-
*
|
|
20608
|
-
* @type {string || null}
|
|
20609
|
-
*/
|
|
20610
|
-
this.TaskId = null;
|
|
20611
|
-
|
|
20612
|
-
/**
|
|
20613
|
-
* Task status. Valid values:
|
|
20614
|
-
<li>PROCESSING: processing;</li>
|
|
20615
|
-
<li>FINISH: completed.</li>
|
|
20616
|
-
* @type {string || null}
|
|
20617
|
-
*/
|
|
20618
|
-
this.Status = null;
|
|
20619
|
-
|
|
20620
|
-
/**
|
|
20621
|
-
* Error code
|
|
20622
|
-
<li>0: success;</li>
|
|
20623
|
-
<li>Other values: failure.</li>
|
|
21110
|
+
* Unique ID of a transcoding template.
|
|
20624
21111
|
* @type {number || null}
|
|
20625
21112
|
*/
|
|
20626
|
-
this.
|
|
20627
|
-
|
|
20628
|
-
/**
|
|
20629
|
-
* Error message.
|
|
20630
|
-
* @type {string || null}
|
|
20631
|
-
*/
|
|
20632
|
-
this.Message = null;
|
|
20633
|
-
|
|
20634
|
-
/**
|
|
20635
|
-
* Input of video editing task.
|
|
20636
|
-
* @type {EditMediaTaskInput || null}
|
|
20637
|
-
*/
|
|
20638
|
-
this.Input = null;
|
|
20639
|
-
|
|
20640
|
-
/**
|
|
20641
|
-
* Output of video editing task.
|
|
20642
|
-
* @type {EditMediaTaskOutput || null}
|
|
20643
|
-
*/
|
|
20644
|
-
this.Output = null;
|
|
21113
|
+
this.Definition = null;
|
|
20645
21114
|
|
|
20646
21115
|
}
|
|
20647
21116
|
|
|
@@ -20652,22 +21121,7 @@ class EditMediaTask extends AbstractModel {
|
|
|
20652
21121
|
if (!params) {
|
|
20653
21122
|
return;
|
|
20654
21123
|
}
|
|
20655
|
-
this.
|
|
20656
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
20657
|
-
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
20658
|
-
this.Message = 'Message' in params ? params.Message : null;
|
|
20659
|
-
|
|
20660
|
-
if (params.Input) {
|
|
20661
|
-
let obj = new EditMediaTaskInput();
|
|
20662
|
-
obj.deserialize(params.Input)
|
|
20663
|
-
this.Input = obj;
|
|
20664
|
-
}
|
|
20665
|
-
|
|
20666
|
-
if (params.Output) {
|
|
20667
|
-
let obj = new EditMediaTaskOutput();
|
|
20668
|
-
obj.deserialize(params.Output)
|
|
20669
|
-
this.Output = obj;
|
|
20670
|
-
}
|
|
21124
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
20671
21125
|
|
|
20672
21126
|
}
|
|
20673
21127
|
}
|
|
@@ -21500,6 +21954,48 @@ class DescribeAIAnalysisTemplatesRequest extends AbstractModel {
|
|
|
21500
21954
|
}
|
|
21501
21955
|
}
|
|
21502
21956
|
|
|
21957
|
+
/**
|
|
21958
|
+
*
|
|
21959
|
+
* @class
|
|
21960
|
+
*/
|
|
21961
|
+
class AigcStoreCosParam extends AbstractModel {
|
|
21962
|
+
constructor(){
|
|
21963
|
+
super();
|
|
21964
|
+
|
|
21965
|
+
/**
|
|
21966
|
+
*
|
|
21967
|
+
* @type {string || null}
|
|
21968
|
+
*/
|
|
21969
|
+
this.CosBucketName = null;
|
|
21970
|
+
|
|
21971
|
+
/**
|
|
21972
|
+
*
|
|
21973
|
+
* @type {string || null}
|
|
21974
|
+
*/
|
|
21975
|
+
this.CosBucketRegion = null;
|
|
21976
|
+
|
|
21977
|
+
/**
|
|
21978
|
+
*
|
|
21979
|
+
* @type {string || null}
|
|
21980
|
+
*/
|
|
21981
|
+
this.CosBucketPath = null;
|
|
21982
|
+
|
|
21983
|
+
}
|
|
21984
|
+
|
|
21985
|
+
/**
|
|
21986
|
+
* @private
|
|
21987
|
+
*/
|
|
21988
|
+
deserialize(params) {
|
|
21989
|
+
if (!params) {
|
|
21990
|
+
return;
|
|
21991
|
+
}
|
|
21992
|
+
this.CosBucketName = 'CosBucketName' in params ? params.CosBucketName : null;
|
|
21993
|
+
this.CosBucketRegion = 'CosBucketRegion' in params ? params.CosBucketRegion : null;
|
|
21994
|
+
this.CosBucketPath = 'CosBucketPath' in params ? params.CosBucketPath : null;
|
|
21995
|
+
|
|
21996
|
+
}
|
|
21997
|
+
}
|
|
21998
|
+
|
|
21503
21999
|
/**
|
|
21504
22000
|
* Text keyword recognition result.
|
|
21505
22001
|
* @class
|
|
@@ -34907,6 +35403,119 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
34907
35403
|
}
|
|
34908
35404
|
}
|
|
34909
35405
|
|
|
35406
|
+
/**
|
|
35407
|
+
* CreateAigcImageTask request structure.
|
|
35408
|
+
* @class
|
|
35409
|
+
*/
|
|
35410
|
+
class CreateAigcImageTaskRequest extends AbstractModel {
|
|
35411
|
+
constructor(){
|
|
35412
|
+
super();
|
|
35413
|
+
|
|
35414
|
+
/**
|
|
35415
|
+
* Model Name. Currently supported models include: Hunyuan,GEM,Qwen.
|
|
35416
|
+
* @type {string || null}
|
|
35417
|
+
*/
|
|
35418
|
+
this.ModelName = null;
|
|
35419
|
+
|
|
35420
|
+
/**
|
|
35421
|
+
* Specify the version number of a particular model. By default, the system utilizes the currently supported stable version of the model.
|
|
35422
|
+
1. GEM, available options [2.5, 3.0].
|
|
35423
|
+
|
|
35424
|
+
* @type {string || null}
|
|
35425
|
+
*/
|
|
35426
|
+
this.ModelVersion = null;
|
|
35427
|
+
|
|
35428
|
+
/**
|
|
35429
|
+
*
|
|
35430
|
+
Generate a description of the image. (Note: The maximum supported length is 1000 characters.) This parameter is mandatory when no reference image is provided.
|
|
35431
|
+
|
|
35432
|
+
* @type {string || null}
|
|
35433
|
+
*/
|
|
35434
|
+
this.Prompt = null;
|
|
35435
|
+
|
|
35436
|
+
/**
|
|
35437
|
+
* Used to specify the content you wish to prevent the model from generating.Note: Supported by select models.Examples:
|
|
35438
|
+
Overhead lighting, vibrant colors
|
|
35439
|
+
Human figures, animals
|
|
35440
|
+
Multiple vehicles, wind
|
|
35441
|
+
* @type {string || null}
|
|
35442
|
+
*/
|
|
35443
|
+
this.NegativePrompt = null;
|
|
35444
|
+
|
|
35445
|
+
/**
|
|
35446
|
+
* The default value is False, where the model strictly adheres to instructions. For optimal results with more refined prompts, setting this parameter to True will automatically optimize the input prompt to enhance generation quality.
|
|
35447
|
+
|
|
35448
|
+
* @type {boolean || null}
|
|
35449
|
+
*/
|
|
35450
|
+
this.EnhancePrompt = null;
|
|
35451
|
+
|
|
35452
|
+
/**
|
|
35453
|
+
*
|
|
35454
|
+
Supports single image input by default. Models supporting multi-image input include GEM (up to 3 images).
|
|
35455
|
+
Recommended image size should be under 7MB, with support for JPEG, PNG, and WebP formats.
|
|
35456
|
+
|
|
35457
|
+
* @type {Array.<AigcImageInfo> || null}
|
|
35458
|
+
*/
|
|
35459
|
+
this.ImageInfos = null;
|
|
35460
|
+
|
|
35461
|
+
/**
|
|
35462
|
+
* Used to pass additional parameters.
|
|
35463
|
+
* @type {AigcImageExtraParam || null}
|
|
35464
|
+
*/
|
|
35465
|
+
this.ExtraParameters = null;
|
|
35466
|
+
|
|
35467
|
+
/**
|
|
35468
|
+
* The output files will be stored in the specified COS bucket. Note: COS service must be activated, and the MPS_QcsRole needs to be created and properly authorized.
|
|
35469
|
+
* @type {AigcStoreCosParam || null}
|
|
35470
|
+
*/
|
|
35471
|
+
this.StoreCosParam = null;
|
|
35472
|
+
|
|
35473
|
+
/**
|
|
35474
|
+
* Interface operator name.
|
|
35475
|
+
* @type {string || null}
|
|
35476
|
+
*/
|
|
35477
|
+
this.Operator = null;
|
|
35478
|
+
|
|
35479
|
+
}
|
|
35480
|
+
|
|
35481
|
+
/**
|
|
35482
|
+
* @private
|
|
35483
|
+
*/
|
|
35484
|
+
deserialize(params) {
|
|
35485
|
+
if (!params) {
|
|
35486
|
+
return;
|
|
35487
|
+
}
|
|
35488
|
+
this.ModelName = 'ModelName' in params ? params.ModelName : null;
|
|
35489
|
+
this.ModelVersion = 'ModelVersion' in params ? params.ModelVersion : null;
|
|
35490
|
+
this.Prompt = 'Prompt' in params ? params.Prompt : null;
|
|
35491
|
+
this.NegativePrompt = 'NegativePrompt' in params ? params.NegativePrompt : null;
|
|
35492
|
+
this.EnhancePrompt = 'EnhancePrompt' in params ? params.EnhancePrompt : null;
|
|
35493
|
+
|
|
35494
|
+
if (params.ImageInfos) {
|
|
35495
|
+
this.ImageInfos = new Array();
|
|
35496
|
+
for (let z in params.ImageInfos) {
|
|
35497
|
+
let obj = new AigcImageInfo();
|
|
35498
|
+
obj.deserialize(params.ImageInfos[z]);
|
|
35499
|
+
this.ImageInfos.push(obj);
|
|
35500
|
+
}
|
|
35501
|
+
}
|
|
35502
|
+
|
|
35503
|
+
if (params.ExtraParameters) {
|
|
35504
|
+
let obj = new AigcImageExtraParam();
|
|
35505
|
+
obj.deserialize(params.ExtraParameters)
|
|
35506
|
+
this.ExtraParameters = obj;
|
|
35507
|
+
}
|
|
35508
|
+
|
|
35509
|
+
if (params.StoreCosParam) {
|
|
35510
|
+
let obj = new AigcStoreCosParam();
|
|
35511
|
+
obj.deserialize(params.StoreCosParam)
|
|
35512
|
+
this.StoreCosParam = obj;
|
|
35513
|
+
}
|
|
35514
|
+
this.Operator = 'Operator' in params ? params.Operator : null;
|
|
35515
|
+
|
|
35516
|
+
}
|
|
35517
|
+
}
|
|
35518
|
+
|
|
34910
35519
|
/**
|
|
34911
35520
|
* The parameters for detecting sensitive information in images.
|
|
34912
35521
|
* @class
|
|
@@ -36610,62 +37219,24 @@ class DescribeAIAnalysisTemplatesResponse extends AbstractModel {
|
|
|
36610
37219
|
}
|
|
36611
37220
|
|
|
36612
37221
|
/**
|
|
36613
|
-
*
|
|
37222
|
+
*
|
|
36614
37223
|
* @class
|
|
36615
37224
|
*/
|
|
36616
|
-
class
|
|
37225
|
+
class AigcVideoExtraParam extends AbstractModel {
|
|
36617
37226
|
constructor(){
|
|
36618
37227
|
super();
|
|
36619
37228
|
|
|
36620
37229
|
/**
|
|
36621
|
-
*
|
|
36622
|
-
* @type {string || null}
|
|
36623
|
-
*/
|
|
36624
|
-
this.Name = null;
|
|
36625
|
-
|
|
36626
|
-
/**
|
|
36627
|
-
* Image width in px. Value range: [128, 4,096].
|
|
36628
|
-
* @type {number || null}
|
|
36629
|
-
*/
|
|
36630
|
-
this.Width = null;
|
|
36631
|
-
|
|
36632
|
-
/**
|
|
36633
|
-
* Image height in px. Value range: [128, 4,096].
|
|
36634
|
-
* @type {number || null}
|
|
36635
|
-
*/
|
|
36636
|
-
this.Height = null;
|
|
36637
|
-
|
|
36638
|
-
/**
|
|
36639
|
-
* Resolution adaption. Valid values:
|
|
36640
|
-
<li>open: enabled. In this case, `Width` represents the long side of a video, while `Height` the short side;</li>
|
|
36641
|
-
<li>close: disabled. In this case, `Width` represents the width of a video, while `Height` the height.</li>
|
|
36642
|
-
Default value: open.
|
|
36643
|
-
* @type {string || null}
|
|
36644
|
-
*/
|
|
36645
|
-
this.ResolutionAdaptive = null;
|
|
36646
|
-
|
|
36647
|
-
/**
|
|
36648
|
-
* The image format. Valid values: jpg (default), png, webp.
|
|
36649
|
-
* @type {string || null}
|
|
36650
|
-
*/
|
|
36651
|
-
this.Format = null;
|
|
36652
|
-
|
|
36653
|
-
/**
|
|
36654
|
-
* Template description. Length limit: 256 characters.
|
|
37230
|
+
*
|
|
36655
37231
|
* @type {string || null}
|
|
36656
37232
|
*/
|
|
36657
|
-
this.
|
|
37233
|
+
this.Resolution = null;
|
|
36658
37234
|
|
|
36659
37235
|
/**
|
|
36660
|
-
*
|
|
36661
|
-
<li> stretch: stretch. The screenshot will be stretched frame by frame to match the aspect ratio of the source video, which may make the screenshot "shorter" or "longer";</li>
|
|
36662
|
-
<li>black: fill with black. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with black color blocks.</li>
|
|
36663
|
-
<li>white: fill with white. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with white color blocks.</li>
|
|
36664
|
-
<li>gauss: fill with Gaussian blur. This option retains the aspect ratio of the source video for the screenshot and fills the unmatched area with Gaussian blur.</li>
|
|
36665
|
-
Default value: black.
|
|
37236
|
+
*
|
|
36666
37237
|
* @type {string || null}
|
|
36667
37238
|
*/
|
|
36668
|
-
this.
|
|
37239
|
+
this.AspectRatio = null;
|
|
36669
37240
|
|
|
36670
37241
|
}
|
|
36671
37242
|
|
|
@@ -36676,13 +37247,8 @@ Default value: black.
|
|
|
36676
37247
|
if (!params) {
|
|
36677
37248
|
return;
|
|
36678
37249
|
}
|
|
36679
|
-
this.
|
|
36680
|
-
this.
|
|
36681
|
-
this.Height = 'Height' in params ? params.Height : null;
|
|
36682
|
-
this.ResolutionAdaptive = 'ResolutionAdaptive' in params ? params.ResolutionAdaptive : null;
|
|
36683
|
-
this.Format = 'Format' in params ? params.Format : null;
|
|
36684
|
-
this.Comment = 'Comment' in params ? params.Comment : null;
|
|
36685
|
-
this.FillType = 'FillType' in params ? params.FillType : null;
|
|
37250
|
+
this.Resolution = 'Resolution' in params ? params.Resolution : null;
|
|
37251
|
+
this.AspectRatio = 'AspectRatio' in params ? params.AspectRatio : null;
|
|
36686
37252
|
|
|
36687
37253
|
}
|
|
36688
37254
|
}
|
|
@@ -37130,6 +37696,66 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
37130
37696
|
}
|
|
37131
37697
|
}
|
|
37132
37698
|
|
|
37699
|
+
/**
|
|
37700
|
+
* DescribeAigcVideoTask response structure.
|
|
37701
|
+
* @class
|
|
37702
|
+
*/
|
|
37703
|
+
class DescribeAigcVideoTaskResponse extends AbstractModel {
|
|
37704
|
+
constructor(){
|
|
37705
|
+
super();
|
|
37706
|
+
|
|
37707
|
+
/**
|
|
37708
|
+
* Current task status:
|
|
37709
|
+
WAIT: Pending,
|
|
37710
|
+
RUN: In progress,
|
|
37711
|
+
FAIL: Task failed,
|
|
37712
|
+
DONE: Task completed successfully.
|
|
37713
|
+
* @type {string || null}
|
|
37714
|
+
*/
|
|
37715
|
+
this.Status = null;
|
|
37716
|
+
|
|
37717
|
+
/**
|
|
37718
|
+
* When the task status is DONE, the returned video URL list will be available for 12 hours. Please retrieve and utilize the video promptly.
|
|
37719
|
+
* @type {Array.<string> || null}
|
|
37720
|
+
*/
|
|
37721
|
+
this.VideoUrls = null;
|
|
37722
|
+
|
|
37723
|
+
/**
|
|
37724
|
+
* The resolution of the output video. Example: 1080*720.
|
|
37725
|
+
* @type {string || null}
|
|
37726
|
+
*/
|
|
37727
|
+
this.Resolution = null;
|
|
37728
|
+
|
|
37729
|
+
/**
|
|
37730
|
+
* When the task status is FAIL, the failure information is returned.
|
|
37731
|
+
* @type {string || null}
|
|
37732
|
+
*/
|
|
37733
|
+
this.Message = null;
|
|
37734
|
+
|
|
37735
|
+
/**
|
|
37736
|
+
* 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.
|
|
37737
|
+
* @type {string || null}
|
|
37738
|
+
*/
|
|
37739
|
+
this.RequestId = null;
|
|
37740
|
+
|
|
37741
|
+
}
|
|
37742
|
+
|
|
37743
|
+
/**
|
|
37744
|
+
* @private
|
|
37745
|
+
*/
|
|
37746
|
+
deserialize(params) {
|
|
37747
|
+
if (!params) {
|
|
37748
|
+
return;
|
|
37749
|
+
}
|
|
37750
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
37751
|
+
this.VideoUrls = 'VideoUrls' in params ? params.VideoUrls : null;
|
|
37752
|
+
this.Resolution = 'Resolution' in params ? params.Resolution : null;
|
|
37753
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
37754
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
37755
|
+
|
|
37756
|
+
}
|
|
37757
|
+
}
|
|
37758
|
+
|
|
37133
37759
|
/**
|
|
37134
37760
|
* DeleteSmartEraseTemplate response structure.
|
|
37135
37761
|
* @class
|
|
@@ -40281,6 +40907,42 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40281
40907
|
}
|
|
40282
40908
|
}
|
|
40283
40909
|
|
|
40910
|
+
/**
|
|
40911
|
+
* Output of text keyword recognition.
|
|
40912
|
+
* @class
|
|
40913
|
+
*/
|
|
40914
|
+
class AiRecognitionTaskOcrWordsResultOutput extends AbstractModel {
|
|
40915
|
+
constructor(){
|
|
40916
|
+
super();
|
|
40917
|
+
|
|
40918
|
+
/**
|
|
40919
|
+
* Text keyword recognition result set.
|
|
40920
|
+
* @type {Array.<AiRecognitionTaskOcrWordsResultItem> || null}
|
|
40921
|
+
*/
|
|
40922
|
+
this.ResultSet = null;
|
|
40923
|
+
|
|
40924
|
+
}
|
|
40925
|
+
|
|
40926
|
+
/**
|
|
40927
|
+
* @private
|
|
40928
|
+
*/
|
|
40929
|
+
deserialize(params) {
|
|
40930
|
+
if (!params) {
|
|
40931
|
+
return;
|
|
40932
|
+
}
|
|
40933
|
+
|
|
40934
|
+
if (params.ResultSet) {
|
|
40935
|
+
this.ResultSet = new Array();
|
|
40936
|
+
for (let z in params.ResultSet) {
|
|
40937
|
+
let obj = new AiRecognitionTaskOcrWordsResultItem();
|
|
40938
|
+
obj.deserialize(params.ResultSet[z]);
|
|
40939
|
+
this.ResultSet.push(obj);
|
|
40940
|
+
}
|
|
40941
|
+
}
|
|
40942
|
+
|
|
40943
|
+
}
|
|
40944
|
+
}
|
|
40945
|
+
|
|
40284
40946
|
/**
|
|
40285
40947
|
* The translation result.
|
|
40286
40948
|
* @class
|
|
@@ -40894,6 +41556,41 @@ class DescribeMediaMetaDataRequest extends AbstractModel {
|
|
|
40894
41556
|
}
|
|
40895
41557
|
}
|
|
40896
41558
|
|
|
41559
|
+
/**
|
|
41560
|
+
*
|
|
41561
|
+
* @class
|
|
41562
|
+
*/
|
|
41563
|
+
class AigcVideoReferenceImageInfo extends AbstractModel {
|
|
41564
|
+
constructor(){
|
|
41565
|
+
super();
|
|
41566
|
+
|
|
41567
|
+
/**
|
|
41568
|
+
*
|
|
41569
|
+
* @type {string || null}
|
|
41570
|
+
*/
|
|
41571
|
+
this.ImageUrl = null;
|
|
41572
|
+
|
|
41573
|
+
/**
|
|
41574
|
+
*
|
|
41575
|
+
* @type {string || null}
|
|
41576
|
+
*/
|
|
41577
|
+
this.ReferenceType = null;
|
|
41578
|
+
|
|
41579
|
+
}
|
|
41580
|
+
|
|
41581
|
+
/**
|
|
41582
|
+
* @private
|
|
41583
|
+
*/
|
|
41584
|
+
deserialize(params) {
|
|
41585
|
+
if (!params) {
|
|
41586
|
+
return;
|
|
41587
|
+
}
|
|
41588
|
+
this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
|
|
41589
|
+
this.ReferenceType = 'ReferenceType' in params ? params.ReferenceType : null;
|
|
41590
|
+
|
|
41591
|
+
}
|
|
41592
|
+
}
|
|
41593
|
+
|
|
40897
41594
|
/**
|
|
40898
41595
|
* Control parameter of intelligent frame-specific tagging task
|
|
40899
41596
|
* @class
|
|
@@ -41313,6 +42010,7 @@ module.exports = {
|
|
|
41313
42010
|
CreateImageSpriteTemplateRequest: CreateImageSpriteTemplateRequest,
|
|
41314
42011
|
SmartErasePrivacyConfig: SmartErasePrivacyConfig,
|
|
41315
42012
|
MediaSnapshotByTimePicInfoItem: MediaSnapshotByTimePicInfoItem,
|
|
42013
|
+
DescribeAigcImageTaskRequest: DescribeAigcImageTaskRequest,
|
|
41316
42014
|
UserDefineFaceReviewTemplateInfo: UserDefineFaceReviewTemplateInfo,
|
|
41317
42015
|
ContentReviewTemplateItem: ContentReviewTemplateItem,
|
|
41318
42016
|
ModifySmartEraseTemplateResponse: ModifySmartEraseTemplateResponse,
|
|
@@ -41346,7 +42044,7 @@ module.exports = {
|
|
|
41346
42044
|
CreateProcessImageTemplateResponse: CreateProcessImageTemplateResponse,
|
|
41347
42045
|
TerrorismImgReviewTemplateInfoForUpdate: TerrorismImgReviewTemplateInfoForUpdate,
|
|
41348
42046
|
ModifyTranscodeTemplateRequest: ModifyTranscodeTemplateRequest,
|
|
41349
|
-
|
|
42047
|
+
EditMediaTaskInput: EditMediaTaskInput,
|
|
41350
42048
|
DeleteAIAnalysisTemplateResponse: DeleteAIAnalysisTemplateResponse,
|
|
41351
42049
|
TimeSpotCheck: TimeSpotCheck,
|
|
41352
42050
|
TextWatermarkTemplateInputForUpdate: TextWatermarkTemplateInputForUpdate,
|
|
@@ -41364,7 +42062,7 @@ module.exports = {
|
|
|
41364
42062
|
CosInputInfo: CosInputInfo,
|
|
41365
42063
|
DescribeBlindWatermarkTemplatesRequest: DescribeBlindWatermarkTemplatesRequest,
|
|
41366
42064
|
TagConfigureInfo: TagConfigureInfo,
|
|
41367
|
-
|
|
42065
|
+
ComposeTrackTime: ComposeTrackTime,
|
|
41368
42066
|
ModifyLiveRecordTemplateResponse: ModifyLiveRecordTemplateResponse,
|
|
41369
42067
|
AiParagraphInfo: AiParagraphInfo,
|
|
41370
42068
|
AudioSeparateConfig: AudioSeparateConfig,
|
|
@@ -41372,13 +42070,15 @@ module.exports = {
|
|
|
41372
42070
|
AiAnalysisTaskCoverResult: AiAnalysisTaskCoverResult,
|
|
41373
42071
|
AudioBeautifyConfig: AudioBeautifyConfig,
|
|
41374
42072
|
EnableWorkflowRequest: EnableWorkflowRequest,
|
|
42073
|
+
AigcImageExtraParam: AigcImageExtraParam,
|
|
41375
42074
|
AiAnalysisTaskClassificationOutput: AiAnalysisTaskClassificationOutput,
|
|
41376
42075
|
DescribeSmartSubtitleTemplatesRequest: DescribeSmartSubtitleTemplatesRequest,
|
|
41377
42076
|
AiRecognitionTaskOcrFullTextResultOutput: AiRecognitionTaskOcrFullTextResultOutput,
|
|
41378
|
-
|
|
42077
|
+
AiAnalysisTaskHighlightResult: AiAnalysisTaskHighlightResult,
|
|
41379
42078
|
ComposeTransitionOperation: ComposeTransitionOperation,
|
|
42079
|
+
CreateAigcVideoTaskResponse: CreateAigcVideoTaskResponse,
|
|
41380
42080
|
UserDefineAsrTextReviewTemplateInfo: UserDefineAsrTextReviewTemplateInfo,
|
|
41381
|
-
|
|
42081
|
+
DescribeAigcVideoTaskRequest: DescribeAigcVideoTaskRequest,
|
|
41382
42082
|
AiSampleFaceInfo: AiSampleFaceInfo,
|
|
41383
42083
|
MediaTranscodeItem: MediaTranscodeItem,
|
|
41384
42084
|
CreateBlindWatermarkTemplateRequest: CreateBlindWatermarkTemplateRequest,
|
|
@@ -41396,7 +42096,7 @@ module.exports = {
|
|
|
41396
42096
|
PoliticalOcrReviewTemplateInfoForUpdate: PoliticalOcrReviewTemplateInfoForUpdate,
|
|
41397
42097
|
ExtractBlindWatermarkResponse: ExtractBlindWatermarkResponse,
|
|
41398
42098
|
AudioDenoiseConfig: AudioDenoiseConfig,
|
|
41399
|
-
|
|
42099
|
+
MP4ConfigureInfo: MP4ConfigureInfo,
|
|
41400
42100
|
PornAsrReviewTemplateInfoForUpdate: PornAsrReviewTemplateInfoForUpdate,
|
|
41401
42101
|
LiveRecordTemplate: LiveRecordTemplate,
|
|
41402
42102
|
DescribeSnapshotByTimeOffsetTemplatesRequest: DescribeSnapshotByTimeOffsetTemplatesRequest,
|
|
@@ -41425,6 +42125,7 @@ module.exports = {
|
|
|
41425
42125
|
Rules: Rules,
|
|
41426
42126
|
AiRecognitionTaskOcrWordsResult: AiRecognitionTaskOcrWordsResult,
|
|
41427
42127
|
PornAsrReviewTemplateInfo: PornAsrReviewTemplateInfo,
|
|
42128
|
+
CreateAigcImageTaskResponse: CreateAigcImageTaskResponse,
|
|
41428
42129
|
ComposeVideoStream: ComposeVideoStream,
|
|
41429
42130
|
ProhibitedAsrReviewTemplateInfoForUpdate: ProhibitedAsrReviewTemplateInfoForUpdate,
|
|
41430
42131
|
DisableScheduleResponse: DisableScheduleResponse,
|
|
@@ -41480,7 +42181,6 @@ module.exports = {
|
|
|
41480
42181
|
TaskOutputStorage: TaskOutputStorage,
|
|
41481
42182
|
ModifyAIAnalysisTemplateRequest: ModifyAIAnalysisTemplateRequest,
|
|
41482
42183
|
UserDefineConfigureInfo: UserDefineConfigureInfo,
|
|
41483
|
-
MP4ConfigureInfo: MP4ConfigureInfo,
|
|
41484
42184
|
SubtitlePosition: SubtitlePosition,
|
|
41485
42185
|
DeleteQualityControlTemplateRequest: DeleteQualityControlTemplateRequest,
|
|
41486
42186
|
ColorEnhanceConfig: ColorEnhanceConfig,
|
|
@@ -41493,15 +42193,18 @@ module.exports = {
|
|
|
41493
42193
|
MediaAnimatedGraphicsItem: MediaAnimatedGraphicsItem,
|
|
41494
42194
|
DescribeQualityControlTemplatesRequest: DescribeQualityControlTemplatesRequest,
|
|
41495
42195
|
ModifyWordSampleRequest: ModifyWordSampleRequest,
|
|
42196
|
+
EditMediaTask: EditMediaTask,
|
|
41496
42197
|
AiRecognitionTaskFaceSegmentItem: AiRecognitionTaskFaceSegmentItem,
|
|
41497
42198
|
AiAnalysisTaskTagResult: AiAnalysisTaskTagResult,
|
|
41498
42199
|
AiAnalysisTaskDelLogoInput: AiAnalysisTaskDelLogoInput,
|
|
42200
|
+
DescribeAigcImageTaskResponse: DescribeAigcImageTaskResponse,
|
|
41499
42201
|
SmartSubtitleTaskBatchOutput: SmartSubtitleTaskBatchOutput,
|
|
41500
42202
|
PureSubtitleTransResult: PureSubtitleTransResult,
|
|
41501
42203
|
AiAnalysisTaskTagOutput: AiAnalysisTaskTagOutput,
|
|
41502
42204
|
CreateAsrHotwordsResponse: CreateAsrHotwordsResponse,
|
|
41503
42205
|
DeleteBlindWatermarkTemplateResponse: DeleteBlindWatermarkTemplateResponse,
|
|
41504
42206
|
QualityControlItemConfig: QualityControlItemConfig,
|
|
42207
|
+
CreateSnapshotByTimeOffsetTemplateRequest: CreateSnapshotByTimeOffsetTemplateRequest,
|
|
41505
42208
|
DescribeProcessImageTemplatesResponse: DescribeProcessImageTemplatesResponse,
|
|
41506
42209
|
ProcessMediaRequest: ProcessMediaRequest,
|
|
41507
42210
|
ProcessImageResponse: ProcessImageResponse,
|
|
@@ -41513,6 +42216,7 @@ module.exports = {
|
|
|
41513
42216
|
LiveStreamOcrFullTextRecognitionResult: LiveStreamOcrFullTextRecognitionResult,
|
|
41514
42217
|
VODOutputStorage: VODOutputStorage,
|
|
41515
42218
|
MediaProcessTaskSnapshotByTimeOffsetResult: MediaProcessTaskSnapshotByTimeOffsetResult,
|
|
42219
|
+
CreateAigcVideoTaskRequest: CreateAigcVideoTaskRequest,
|
|
41516
42220
|
AiRecognitionTaskTransTextResultInput: AiRecognitionTaskTransTextResultInput,
|
|
41517
42221
|
DescribeSchedulesResponse: DescribeSchedulesResponse,
|
|
41518
42222
|
ImageQualityEnhanceConfig: ImageQualityEnhanceConfig,
|
|
@@ -41529,6 +42233,7 @@ module.exports = {
|
|
|
41529
42233
|
MediaProcessTaskTranscodeResult: MediaProcessTaskTranscodeResult,
|
|
41530
42234
|
SnapshotByTimeOffsetTaskInput: SnapshotByTimeOffsetTaskInput,
|
|
41531
42235
|
ImageSpriteTaskInput: ImageSpriteTaskInput,
|
|
42236
|
+
AigcImageInfo: AigcImageInfo,
|
|
41532
42237
|
DeleteContentReviewTemplateResponse: DeleteContentReviewTemplateResponse,
|
|
41533
42238
|
VODInputInfo: VODInputInfo,
|
|
41534
42239
|
ImageWatermarkTemplate: ImageWatermarkTemplate,
|
|
@@ -41584,7 +42289,7 @@ module.exports = {
|
|
|
41584
42289
|
ScheduleExecRuleTaskResult: ScheduleExecRuleTaskResult,
|
|
41585
42290
|
CreateAIRecognitionTemplateResponse: CreateAIRecognitionTemplateResponse,
|
|
41586
42291
|
DeleteBlindWatermarkTemplateRequest: DeleteBlindWatermarkTemplateRequest,
|
|
41587
|
-
|
|
42292
|
+
DeleteTranscodeTemplateRequest: DeleteTranscodeTemplateRequest,
|
|
41588
42293
|
AiReviewTerrorismTaskOutput: AiReviewTerrorismTaskOutput,
|
|
41589
42294
|
ModifyAsrHotwordsRequest: ModifyAsrHotwordsRequest,
|
|
41590
42295
|
PornImgReviewTemplateInfo: PornImgReviewTemplateInfo,
|
|
@@ -41598,6 +42303,7 @@ module.exports = {
|
|
|
41598
42303
|
ImageWatermarkInputForUpdate: ImageWatermarkInputForUpdate,
|
|
41599
42304
|
CreateScheduleResponse: CreateScheduleResponse,
|
|
41600
42305
|
DescribeAIAnalysisTemplatesRequest: DescribeAIAnalysisTemplatesRequest,
|
|
42306
|
+
AigcStoreCosParam: AigcStoreCosParam,
|
|
41601
42307
|
AiRecognitionTaskOcrWordsResultItem: AiRecognitionTaskOcrWordsResultItem,
|
|
41602
42308
|
ProcessImageRequest: ProcessImageRequest,
|
|
41603
42309
|
DeleteSampleSnapshotTemplateResponse: DeleteSampleSnapshotTemplateResponse,
|
|
@@ -41804,6 +42510,7 @@ module.exports = {
|
|
|
41804
42510
|
MediaContentReviewSegmentItem: MediaContentReviewSegmentItem,
|
|
41805
42511
|
AiContentReviewResult: AiContentReviewResult,
|
|
41806
42512
|
LiveActivityResult: LiveActivityResult,
|
|
42513
|
+
CreateAigcImageTaskRequest: CreateAigcImageTaskRequest,
|
|
41807
42514
|
TerrorismImgReviewTemplateInfo: TerrorismImgReviewTemplateInfo,
|
|
41808
42515
|
AsrHotwordsSet: AsrHotwordsSet,
|
|
41809
42516
|
AiAnalysisTaskHeadTailInput: AiAnalysisTaskHeadTailInput,
|
|
@@ -41834,12 +42541,13 @@ module.exports = {
|
|
|
41834
42541
|
VideoDenoiseConfig: VideoDenoiseConfig,
|
|
41835
42542
|
AiRecognitionTaskObjectResult: AiRecognitionTaskObjectResult,
|
|
41836
42543
|
DescribeAIAnalysisTemplatesResponse: DescribeAIAnalysisTemplatesResponse,
|
|
41837
|
-
|
|
42544
|
+
AigcVideoExtraParam: AigcVideoExtraParam,
|
|
41838
42545
|
ParseLiveStreamProcessNotificationRequest: ParseLiveStreamProcessNotificationRequest,
|
|
41839
42546
|
AiRecognitionTaskAsrWordsResult: AiRecognitionTaskAsrWordsResult,
|
|
41840
42547
|
AiAnalysisTaskHeadTailResult: AiAnalysisTaskHeadTailResult,
|
|
41841
42548
|
CreateSampleSnapshotTemplateRequest: CreateSampleSnapshotTemplateRequest,
|
|
41842
42549
|
WorkflowTask: WorkflowTask,
|
|
42550
|
+
DescribeAigcVideoTaskResponse: DescribeAigcVideoTaskResponse,
|
|
41843
42551
|
DeleteSmartEraseTemplateResponse: DeleteSmartEraseTemplateResponse,
|
|
41844
42552
|
AiReviewTaskPornAsrResult: AiReviewTaskPornAsrResult,
|
|
41845
42553
|
EditMediaFileInfo: EditMediaFileInfo,
|
|
@@ -41885,6 +42593,7 @@ module.exports = {
|
|
|
41885
42593
|
ComposeAudioOperation: ComposeAudioOperation,
|
|
41886
42594
|
CreateSmartSubtitleTemplateResponse: CreateSmartSubtitleTemplateResponse,
|
|
41887
42595
|
LiveStreamAiAnalysisResultItem: LiveStreamAiAnalysisResultItem,
|
|
42596
|
+
AiRecognitionTaskOcrWordsResultOutput: AiRecognitionTaskOcrWordsResultOutput,
|
|
41888
42597
|
AiRecognitionTaskTransTextResult: AiRecognitionTaskTransTextResult,
|
|
41889
42598
|
EditMediaTaskOutput: EditMediaTaskOutput,
|
|
41890
42599
|
ProcessImageTemplate: ProcessImageTemplate,
|
|
@@ -41894,6 +42603,7 @@ module.exports = {
|
|
|
41894
42603
|
ModifyImageSpriteTemplateRequest: ModifyImageSpriteTemplateRequest,
|
|
41895
42604
|
LowLightEnhanceConfig: LowLightEnhanceConfig,
|
|
41896
42605
|
DescribeMediaMetaDataRequest: DescribeMediaMetaDataRequest,
|
|
42606
|
+
AigcVideoReferenceImageInfo: AigcVideoReferenceImageInfo,
|
|
41897
42607
|
FrameTagConfigureInfoForUpdate: FrameTagConfigureInfoForUpdate,
|
|
41898
42608
|
CreateImageSpriteTemplateResponse: CreateImageSpriteTemplateResponse,
|
|
41899
42609
|
DescribeAIRecognitionTemplatesRequest: DescribeAIRecognitionTemplatesRequest,
|