tencentcloud-sdk-nodejs-intl-en 3.0.1256 → 3.0.1257
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/cdz/index.js +3 -0
- package/tencentcloud/cdz/v20221123/cdz_client.js +49 -0
- package/tencentcloud/cdz/v20221123/index.js +4 -0
- package/tencentcloud/cdz/v20221123/models.js +285 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/faceid_client.js +2 -2
- package/tencentcloud/faceid/v20180301/models.js +1 -2
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/mps/v20190612/models.js +1642 -485
- package/tencentcloud/mps/v20190612/mps_client.js +51 -29
- package/tencentcloud/teo/v20220901/teo_client.js +3 -3
|
@@ -1846,6 +1846,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
1846
1846
|
*/
|
|
1847
1847
|
this.SubtitlePath = null;
|
|
1848
1848
|
|
|
1849
|
+
/**
|
|
1850
|
+
* Subtitle file storage location.
|
|
1851
|
+
* @type {TaskOutputStorage || null}
|
|
1852
|
+
*/
|
|
1853
|
+
this.OutputStorage = null;
|
|
1854
|
+
|
|
1849
1855
|
}
|
|
1850
1856
|
|
|
1851
1857
|
/**
|
|
@@ -1866,6 +1872,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
1866
1872
|
}
|
|
1867
1873
|
this.SubtitlePath = 'SubtitlePath' in params ? params.SubtitlePath : null;
|
|
1868
1874
|
|
|
1875
|
+
if (params.OutputStorage) {
|
|
1876
|
+
let obj = new TaskOutputStorage();
|
|
1877
|
+
obj.deserialize(params.OutputStorage)
|
|
1878
|
+
this.OutputStorage = obj;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1869
1881
|
}
|
|
1870
1882
|
}
|
|
1871
1883
|
|
|
@@ -2004,54 +2016,6 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2004
2016
|
}
|
|
2005
2017
|
}
|
|
2006
2018
|
|
|
2007
|
-
/**
|
|
2008
|
-
* Result information of intelligent cover generating
|
|
2009
|
-
* @class
|
|
2010
|
-
*/
|
|
2011
|
-
class AiAnalysisTaskCoverOutput extends AbstractModel {
|
|
2012
|
-
constructor(){
|
|
2013
|
-
super();
|
|
2014
|
-
|
|
2015
|
-
/**
|
|
2016
|
-
* List of intelligently generated covers.
|
|
2017
|
-
* @type {Array.<MediaAiAnalysisCoverItem> || null}
|
|
2018
|
-
*/
|
|
2019
|
-
this.CoverSet = null;
|
|
2020
|
-
|
|
2021
|
-
/**
|
|
2022
|
-
* Storage location of intelligently generated cover.
|
|
2023
|
-
* @type {TaskOutputStorage || null}
|
|
2024
|
-
*/
|
|
2025
|
-
this.OutputStorage = null;
|
|
2026
|
-
|
|
2027
|
-
}
|
|
2028
|
-
|
|
2029
|
-
/**
|
|
2030
|
-
* @private
|
|
2031
|
-
*/
|
|
2032
|
-
deserialize(params) {
|
|
2033
|
-
if (!params) {
|
|
2034
|
-
return;
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
if (params.CoverSet) {
|
|
2038
|
-
this.CoverSet = new Array();
|
|
2039
|
-
for (let z in params.CoverSet) {
|
|
2040
|
-
let obj = new MediaAiAnalysisCoverItem();
|
|
2041
|
-
obj.deserialize(params.CoverSet[z]);
|
|
2042
|
-
this.CoverSet.push(obj);
|
|
2043
|
-
}
|
|
2044
|
-
}
|
|
2045
|
-
|
|
2046
|
-
if (params.OutputStorage) {
|
|
2047
|
-
let obj = new TaskOutputStorage();
|
|
2048
|
-
obj.deserialize(params.OutputStorage)
|
|
2049
|
-
this.OutputStorage = obj;
|
|
2050
|
-
}
|
|
2051
|
-
|
|
2052
|
-
}
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
2019
|
/**
|
|
2056
2020
|
* Information of the time point screenshots in a VOD file
|
|
2057
2021
|
* @class
|
|
@@ -2426,10 +2390,11 @@ class MediaInputInfo extends AbstractModel {
|
|
|
2426
2390
|
super();
|
|
2427
2391
|
|
|
2428
2392
|
/**
|
|
2429
|
-
*
|
|
2430
|
-
<
|
|
2431
|
-
<
|
|
2432
|
-
<
|
|
2393
|
+
* Type of input source object. valid values:.
|
|
2394
|
+
<Li>COS: specifies the cos origin.</li>
|
|
2395
|
+
<Li>URL: the url source.</li>
|
|
2396
|
+
<Li>AWS-S3: aws source. currently only supports transcoding tasks.</li>
|
|
2397
|
+
<Li>VOD: video-on-demand pro edition (VOD Pro). </li>
|
|
2433
2398
|
* @type {string || null}
|
|
2434
2399
|
*/
|
|
2435
2400
|
this.Type = null;
|
|
@@ -2454,6 +2419,13 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
2454
2419
|
*/
|
|
2455
2420
|
this.S3InputInfo = null;
|
|
2456
2421
|
|
|
2422
|
+
/**
|
|
2423
|
+
* The information of the VOD Pro object processed. This parameter is required if `Type` is `VOD`.
|
|
2424
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
2425
|
+
* @type {VODInputInfo || null}
|
|
2426
|
+
*/
|
|
2427
|
+
this.VODInputInfo = null;
|
|
2428
|
+
|
|
2457
2429
|
}
|
|
2458
2430
|
|
|
2459
2431
|
/**
|
|
@@ -2483,6 +2455,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
2483
2455
|
this.S3InputInfo = obj;
|
|
2484
2456
|
}
|
|
2485
2457
|
|
|
2458
|
+
if (params.VODInputInfo) {
|
|
2459
|
+
let obj = new VODInputInfo();
|
|
2460
|
+
obj.deserialize(params.VODInputInfo)
|
|
2461
|
+
this.VODInputInfo = obj;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2486
2464
|
}
|
|
2487
2465
|
}
|
|
2488
2466
|
|
|
@@ -2904,6 +2882,76 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2904
2882
|
}
|
|
2905
2883
|
}
|
|
2906
2884
|
|
|
2885
|
+
/**
|
|
2886
|
+
* Smart erasure task.
|
|
2887
|
+
* @class
|
|
2888
|
+
*/
|
|
2889
|
+
class SmartEraseTaskInput extends AbstractModel {
|
|
2890
|
+
constructor(){
|
|
2891
|
+
super();
|
|
2892
|
+
|
|
2893
|
+
/**
|
|
2894
|
+
* Smart erasure template id.
|
|
2895
|
+
* @type {number || null}
|
|
2896
|
+
*/
|
|
2897
|
+
this.Definition = null;
|
|
2898
|
+
|
|
2899
|
+
/**
|
|
2900
|
+
* Intelligent erasure custom parameter. valid when Definition is 0. this parameter is used for highly custom scenarios. we recommend you prioritize using Definition to specify intelligent erasure parameters.
|
|
2901
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
2902
|
+
* @type {RawSmartEraseParameter || null}
|
|
2903
|
+
*/
|
|
2904
|
+
this.RawParameter = null;
|
|
2905
|
+
|
|
2906
|
+
/**
|
|
2907
|
+
* Specifies the target storage for files. if left blank, it inherits the upper-level OutputStorage value.
|
|
2908
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
2909
|
+
* @type {TaskOutputStorage || null}
|
|
2910
|
+
*/
|
|
2911
|
+
this.OutputStorage = null;
|
|
2912
|
+
|
|
2913
|
+
/**
|
|
2914
|
+
* Output path of the file, which can be a relative or absolute path.
|
|
2915
|
+
Specifies the output path must end with `.{format}`. variable names, please refer to [filename variable explanation](https://www.tencentcloud.com/document/product/1041/33495?has_map=1).
|
|
2916
|
+
**Relative path example**:
|
|
2917
|
+
<Li>Filename_{Variable name}.{format}</li>
|
|
2918
|
+
<li>Filename.{format}</li>
|
|
2919
|
+
|
|
2920
|
+
**Absolute path example**:
|
|
2921
|
+
<Li>/Custom path/filename_{variable name}.{format}</li>
|
|
2922
|
+
|
|
2923
|
+
**Note**: currently does not support the `BatchProcessMedia` api.
|
|
2924
|
+
* @type {string || null}
|
|
2925
|
+
*/
|
|
2926
|
+
this.OutputObjectPath = null;
|
|
2927
|
+
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
/**
|
|
2931
|
+
* @private
|
|
2932
|
+
*/
|
|
2933
|
+
deserialize(params) {
|
|
2934
|
+
if (!params) {
|
|
2935
|
+
return;
|
|
2936
|
+
}
|
|
2937
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
2938
|
+
|
|
2939
|
+
if (params.RawParameter) {
|
|
2940
|
+
let obj = new RawSmartEraseParameter();
|
|
2941
|
+
obj.deserialize(params.RawParameter)
|
|
2942
|
+
this.RawParameter = obj;
|
|
2943
|
+
}
|
|
2944
|
+
|
|
2945
|
+
if (params.OutputStorage) {
|
|
2946
|
+
let obj = new TaskOutputStorage();
|
|
2947
|
+
obj.deserialize(params.OutputStorage)
|
|
2948
|
+
this.OutputStorage = obj;
|
|
2949
|
+
}
|
|
2950
|
+
this.OutputObjectPath = 'OutputObjectPath' in params ? params.OutputObjectPath : null;
|
|
2951
|
+
|
|
2952
|
+
}
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2907
2955
|
/**
|
|
2908
2956
|
* Custom watermark specifications.
|
|
2909
2957
|
* @class
|
|
@@ -3991,74 +4039,6 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3991
4039
|
}
|
|
3992
4040
|
}
|
|
3993
4041
|
|
|
3994
|
-
/**
|
|
3995
|
-
* DescribePersonSamples request structure.
|
|
3996
|
-
* @class
|
|
3997
|
-
*/
|
|
3998
|
-
class DescribePersonSamplesRequest extends AbstractModel {
|
|
3999
|
-
constructor(){
|
|
4000
|
-
super();
|
|
4001
|
-
|
|
4002
|
-
/**
|
|
4003
|
-
* Type of images to pull. Valid values:
|
|
4004
|
-
<li>UserDefine: custom image library</li>
|
|
4005
|
-
<li>Default: default image library</li>
|
|
4006
|
-
|
|
4007
|
-
Default value: UserDefine. Samples in the custom image library will be pulled.
|
|
4008
|
-
Note: you can pull the default image library only using the image name or a combination of the image name and ID, and only one face image is returned.
|
|
4009
|
-
* @type {string || null}
|
|
4010
|
-
*/
|
|
4011
|
-
this.Type = null;
|
|
4012
|
-
|
|
4013
|
-
/**
|
|
4014
|
-
* Image ID. Array length limit: 100
|
|
4015
|
-
* @type {Array.<string> || null}
|
|
4016
|
-
*/
|
|
4017
|
-
this.PersonIds = null;
|
|
4018
|
-
|
|
4019
|
-
/**
|
|
4020
|
-
* Image name. Array length limit: 20
|
|
4021
|
-
* @type {Array.<string> || null}
|
|
4022
|
-
*/
|
|
4023
|
-
this.Names = null;
|
|
4024
|
-
|
|
4025
|
-
/**
|
|
4026
|
-
* Image tag. Array length limit: 20
|
|
4027
|
-
* @type {Array.<string> || null}
|
|
4028
|
-
*/
|
|
4029
|
-
this.Tags = null;
|
|
4030
|
-
|
|
4031
|
-
/**
|
|
4032
|
-
* Paging offset. Default value: 0.
|
|
4033
|
-
* @type {number || null}
|
|
4034
|
-
*/
|
|
4035
|
-
this.Offset = null;
|
|
4036
|
-
|
|
4037
|
-
/**
|
|
4038
|
-
* Number of returned entries. Default value: 100. Maximum value: 100.
|
|
4039
|
-
* @type {number || null}
|
|
4040
|
-
*/
|
|
4041
|
-
this.Limit = null;
|
|
4042
|
-
|
|
4043
|
-
}
|
|
4044
|
-
|
|
4045
|
-
/**
|
|
4046
|
-
* @private
|
|
4047
|
-
*/
|
|
4048
|
-
deserialize(params) {
|
|
4049
|
-
if (!params) {
|
|
4050
|
-
return;
|
|
4051
|
-
}
|
|
4052
|
-
this.Type = 'Type' in params ? params.Type : null;
|
|
4053
|
-
this.PersonIds = 'PersonIds' in params ? params.PersonIds : null;
|
|
4054
|
-
this.Names = 'Names' in params ? params.Names : null;
|
|
4055
|
-
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
4056
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
4057
|
-
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
4058
|
-
|
|
4059
|
-
}
|
|
4060
|
-
}
|
|
4061
|
-
|
|
4062
4042
|
/**
|
|
4063
4043
|
* Control parameter of intelligent categorization task
|
|
4064
4044
|
* @class
|
|
@@ -4506,6 +4486,95 @@ Note: when this field return null, means no valid values can be obtained.
|
|
|
4506
4486
|
}
|
|
4507
4487
|
}
|
|
4508
4488
|
|
|
4489
|
+
/**
|
|
4490
|
+
* Smart erasure task result.
|
|
4491
|
+
* @class
|
|
4492
|
+
*/
|
|
4493
|
+
class SmartEraseTaskResult extends AbstractModel {
|
|
4494
|
+
constructor(){
|
|
4495
|
+
super();
|
|
4496
|
+
|
|
4497
|
+
/**
|
|
4498
|
+
* Task status, including PROCESSING, SUCCESS, and FAIL.
|
|
4499
|
+
* @type {string || null}
|
|
4500
|
+
*/
|
|
4501
|
+
this.Status = null;
|
|
4502
|
+
|
|
4503
|
+
/**
|
|
4504
|
+
* Error code. An empty string indicates that the task is successful, and other values indicate that the task has failed. For specific values, see [Error Codes] (https://www.tencentcloud.comom/document/product/862/50369?from_cn_redirect=1#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81).
|
|
4505
|
+
* @type {string || null}
|
|
4506
|
+
*/
|
|
4507
|
+
this.ErrCodeExt = null;
|
|
4508
|
+
|
|
4509
|
+
/**
|
|
4510
|
+
* Error message.
|
|
4511
|
+
* @type {string || null}
|
|
4512
|
+
*/
|
|
4513
|
+
this.Message = null;
|
|
4514
|
+
|
|
4515
|
+
/**
|
|
4516
|
+
* Input of the smart erasure task.
|
|
4517
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
4518
|
+
* @type {SmartEraseTaskInput || null}
|
|
4519
|
+
*/
|
|
4520
|
+
this.Input = null;
|
|
4521
|
+
|
|
4522
|
+
/**
|
|
4523
|
+
* Output of the smart erasure task.
|
|
4524
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
4525
|
+
* @type {AiAnalysisTaskDelLogoOutput || null}
|
|
4526
|
+
*/
|
|
4527
|
+
this.Output = null;
|
|
4528
|
+
|
|
4529
|
+
/**
|
|
4530
|
+
* Task progress.
|
|
4531
|
+
* @type {number || null}
|
|
4532
|
+
*/
|
|
4533
|
+
this.Progress = null;
|
|
4534
|
+
|
|
4535
|
+
/**
|
|
4536
|
+
* Task execution start time in ISO datetime format.
|
|
4537
|
+
* @type {string || null}
|
|
4538
|
+
*/
|
|
4539
|
+
this.BeginProcessTime = null;
|
|
4540
|
+
|
|
4541
|
+
/**
|
|
4542
|
+
* Task execution completion time in ISO datetime format.
|
|
4543
|
+
* @type {string || null}
|
|
4544
|
+
*/
|
|
4545
|
+
this.FinishTime = null;
|
|
4546
|
+
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4549
|
+
/**
|
|
4550
|
+
* @private
|
|
4551
|
+
*/
|
|
4552
|
+
deserialize(params) {
|
|
4553
|
+
if (!params) {
|
|
4554
|
+
return;
|
|
4555
|
+
}
|
|
4556
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
4557
|
+
this.ErrCodeExt = 'ErrCodeExt' in params ? params.ErrCodeExt : null;
|
|
4558
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
4559
|
+
|
|
4560
|
+
if (params.Input) {
|
|
4561
|
+
let obj = new SmartEraseTaskInput();
|
|
4562
|
+
obj.deserialize(params.Input)
|
|
4563
|
+
this.Input = obj;
|
|
4564
|
+
}
|
|
4565
|
+
|
|
4566
|
+
if (params.Output) {
|
|
4567
|
+
let obj = new AiAnalysisTaskDelLogoOutput();
|
|
4568
|
+
obj.deserialize(params.Output)
|
|
4569
|
+
this.Output = obj;
|
|
4570
|
+
}
|
|
4571
|
+
this.Progress = 'Progress' in params ? params.Progress : null;
|
|
4572
|
+
this.BeginProcessTime = 'BeginProcessTime' in params ? params.BeginProcessTime : null;
|
|
4573
|
+
this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
|
|
4574
|
+
|
|
4575
|
+
}
|
|
4576
|
+
}
|
|
4577
|
+
|
|
4509
4578
|
/**
|
|
4510
4579
|
* Input parameter type of video content recognition
|
|
4511
4580
|
* @class
|
|
@@ -8091,18 +8160,69 @@ class MediaProcessTaskInput extends AbstractModel {
|
|
|
8091
8160
|
}
|
|
8092
8161
|
|
|
8093
8162
|
/**
|
|
8094
|
-
*
|
|
8163
|
+
* Extract video digital watermark task information.
|
|
8095
8164
|
* @class
|
|
8096
8165
|
*/
|
|
8097
|
-
class
|
|
8166
|
+
class ExtractBlindWatermarkTask extends AbstractModel {
|
|
8098
8167
|
constructor(){
|
|
8099
8168
|
super();
|
|
8100
8169
|
|
|
8101
8170
|
/**
|
|
8102
|
-
*
|
|
8171
|
+
* Media processing task ID.
|
|
8172
|
+
* @type {string || null}
|
|
8173
|
+
*/
|
|
8174
|
+
this.TaskId = null;
|
|
8175
|
+
|
|
8176
|
+
/**
|
|
8177
|
+
* Task flow status. valid values:.
|
|
8178
|
+
<Li>WAITING: waiting.</li>.
|
|
8179
|
+
<Li>PROCESSING: processing.</li>.
|
|
8180
|
+
<li>FINISH: completed</li>
|
|
8181
|
+
* @type {string || null}
|
|
8182
|
+
*/
|
|
8183
|
+
this.Status = null;
|
|
8184
|
+
|
|
8185
|
+
/**
|
|
8186
|
+
* Error code. `0` indicates success. other values indicate failure.
|
|
8103
8187
|
* @type {number || null}
|
|
8104
8188
|
*/
|
|
8105
|
-
this.
|
|
8189
|
+
this.ErrCode = null;
|
|
8190
|
+
|
|
8191
|
+
/**
|
|
8192
|
+
* Error message.
|
|
8193
|
+
* @type {string || null}
|
|
8194
|
+
*/
|
|
8195
|
+
this.Message = null;
|
|
8196
|
+
|
|
8197
|
+
/**
|
|
8198
|
+
* Target file information for media processing.
|
|
8199
|
+
* @type {MediaInputInfo || null}
|
|
8200
|
+
*/
|
|
8201
|
+
this.InputInfo = null;
|
|
8202
|
+
|
|
8203
|
+
/**
|
|
8204
|
+
* Specifies the digital watermark type. valid values: <li>blind-basic: basic version copyright digital watermark;</li> <li>blind-ab: ab copyright digital watermark.</li>.
|
|
8205
|
+
* @type {string || null}
|
|
8206
|
+
*/
|
|
8207
|
+
this.Type = null;
|
|
8208
|
+
|
|
8209
|
+
/**
|
|
8210
|
+
* Indicates whether a watermark is detected. if this parameter is true, the Result field will return the watermark extraction Result. if this parameter is false, the Result field will not return.
|
|
8211
|
+
* @type {boolean || null}
|
|
8212
|
+
*/
|
|
8213
|
+
this.IsDetected = null;
|
|
8214
|
+
|
|
8215
|
+
/**
|
|
8216
|
+
* Fetched watermark content. this field will not be returned when no detection.
|
|
8217
|
+
* @type {string || null}
|
|
8218
|
+
*/
|
|
8219
|
+
this.Result = null;
|
|
8220
|
+
|
|
8221
|
+
/**
|
|
8222
|
+
* Extracts the digital watermark configuration.
|
|
8223
|
+
* @type {ExtractBlindWatermarkTaskConfig || null}
|
|
8224
|
+
*/
|
|
8225
|
+
this.ExtractBlindWatermarkConfig = null;
|
|
8106
8226
|
|
|
8107
8227
|
}
|
|
8108
8228
|
|
|
@@ -8113,7 +8233,25 @@ class DisableScheduleRequest extends AbstractModel {
|
|
|
8113
8233
|
if (!params) {
|
|
8114
8234
|
return;
|
|
8115
8235
|
}
|
|
8116
|
-
this.
|
|
8236
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
8237
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
8238
|
+
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
8239
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
8240
|
+
|
|
8241
|
+
if (params.InputInfo) {
|
|
8242
|
+
let obj = new MediaInputInfo();
|
|
8243
|
+
obj.deserialize(params.InputInfo)
|
|
8244
|
+
this.InputInfo = obj;
|
|
8245
|
+
}
|
|
8246
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
8247
|
+
this.IsDetected = 'IsDetected' in params ? params.IsDetected : null;
|
|
8248
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
8249
|
+
|
|
8250
|
+
if (params.ExtractBlindWatermarkConfig) {
|
|
8251
|
+
let obj = new ExtractBlindWatermarkTaskConfig();
|
|
8252
|
+
obj.deserialize(params.ExtractBlindWatermarkConfig)
|
|
8253
|
+
this.ExtractBlindWatermarkConfig = obj;
|
|
8254
|
+
}
|
|
8117
8255
|
|
|
8118
8256
|
}
|
|
8119
8257
|
}
|
|
@@ -8600,6 +8738,86 @@ class CreateWordSamplesRequest extends AbstractModel {
|
|
|
8600
8738
|
}
|
|
8601
8739
|
}
|
|
8602
8740
|
|
|
8741
|
+
/**
|
|
8742
|
+
* smart erasure template watermark configuration.
|
|
8743
|
+
* @class
|
|
8744
|
+
*/
|
|
8745
|
+
class SmartEraseWatermarkConfig extends AbstractModel {
|
|
8746
|
+
constructor(){
|
|
8747
|
+
super();
|
|
8748
|
+
|
|
8749
|
+
/**
|
|
8750
|
+
* Specifies the watermark removal method.
|
|
8751
|
+
**Auto-Removal:** automatically identifies watermarks in the video using model a and generates a new video after removal. suitable for dynamic watermarks.
|
|
8752
|
+
When using automated removal, if you do not specify AutoAreas, the full-screen video will be erased automatically. if AutoAreas is specified, it will change to erase the designated areas.
|
|
8753
|
+
**Specified area erasure:** for static watermarks with fixed locations, we recommend you directly specify the erasure area.
|
|
8754
|
+
When you choose specified area erasure, import at least one specified region.
|
|
8755
|
+
|
|
8756
|
+
-Automated removal.
|
|
8757
|
+
-Specifies the custom specified area erasure.
|
|
8758
|
+
* @type {string || null}
|
|
8759
|
+
*/
|
|
8760
|
+
this.WatermarkEraseMethod = null;
|
|
8761
|
+
|
|
8762
|
+
/**
|
|
8763
|
+
* Specifies the watermark removal model.
|
|
8764
|
+
Basic version: average effect, cost-effective, suitable for videos with clean backgrounds or animations.
|
|
8765
|
+
Advanced edition: better effectiveness, suitable for mini-drama and reality style video.
|
|
8766
|
+
**Supported values**:
|
|
8767
|
+
- basic
|
|
8768
|
+
- advanced
|
|
8769
|
+
* @type {string || null}
|
|
8770
|
+
*/
|
|
8771
|
+
this.WatermarkModel = null;
|
|
8772
|
+
|
|
8773
|
+
/**
|
|
8774
|
+
* Specifies automatic removal of a custom region.
|
|
8775
|
+
Specifies the use of an AI model to automatically detect and erase existing targets in the specified region.
|
|
8776
|
+
Note that this parameter will not take effect when the removal method is custom.
|
|
8777
|
+
* @type {Array.<EraseArea> || null}
|
|
8778
|
+
*/
|
|
8779
|
+
this.AutoAreas = null;
|
|
8780
|
+
|
|
8781
|
+
/**
|
|
8782
|
+
* Specifies erasure of a custom region.
|
|
8783
|
+
Detects and directly performs removal within a specified time range for the selected region.
|
|
8784
|
+
* @type {Array.<EraseTimeArea> || null}
|
|
8785
|
+
*/
|
|
8786
|
+
this.CustomAreas = null;
|
|
8787
|
+
|
|
8788
|
+
}
|
|
8789
|
+
|
|
8790
|
+
/**
|
|
8791
|
+
* @private
|
|
8792
|
+
*/
|
|
8793
|
+
deserialize(params) {
|
|
8794
|
+
if (!params) {
|
|
8795
|
+
return;
|
|
8796
|
+
}
|
|
8797
|
+
this.WatermarkEraseMethod = 'WatermarkEraseMethod' in params ? params.WatermarkEraseMethod : null;
|
|
8798
|
+
this.WatermarkModel = 'WatermarkModel' in params ? params.WatermarkModel : null;
|
|
8799
|
+
|
|
8800
|
+
if (params.AutoAreas) {
|
|
8801
|
+
this.AutoAreas = new Array();
|
|
8802
|
+
for (let z in params.AutoAreas) {
|
|
8803
|
+
let obj = new EraseArea();
|
|
8804
|
+
obj.deserialize(params.AutoAreas[z]);
|
|
8805
|
+
this.AutoAreas.push(obj);
|
|
8806
|
+
}
|
|
8807
|
+
}
|
|
8808
|
+
|
|
8809
|
+
if (params.CustomAreas) {
|
|
8810
|
+
this.CustomAreas = new Array();
|
|
8811
|
+
for (let z in params.CustomAreas) {
|
|
8812
|
+
let obj = new EraseTimeArea();
|
|
8813
|
+
obj.deserialize(params.CustomAreas[z]);
|
|
8814
|
+
this.CustomAreas.push(obj);
|
|
8815
|
+
}
|
|
8816
|
+
}
|
|
8817
|
+
|
|
8818
|
+
}
|
|
8819
|
+
}
|
|
8820
|
+
|
|
8603
8821
|
/**
|
|
8604
8822
|
* The parameters for detecting sensitive information based on ASR.
|
|
8605
8823
|
* @class
|
|
@@ -11458,6 +11676,45 @@ The default value is an empty string, which means the subtitles will not have a
|
|
|
11458
11676
|
}
|
|
11459
11677
|
}
|
|
11460
11678
|
|
|
11679
|
+
/**
|
|
11680
|
+
* Intelligent erasure template privacy protection configuration.
|
|
11681
|
+
* @class
|
|
11682
|
+
*/
|
|
11683
|
+
class SmartErasePrivacyConfig extends AbstractModel {
|
|
11684
|
+
constructor(){
|
|
11685
|
+
super();
|
|
11686
|
+
|
|
11687
|
+
/**
|
|
11688
|
+
* Specifies the privacy protection removal method.
|
|
11689
|
+
-Blur: specifies the blur detection.
|
|
11690
|
+
-Specifies the mosaic.
|
|
11691
|
+
* @type {string || null}
|
|
11692
|
+
*/
|
|
11693
|
+
this.PrivacyModel = null;
|
|
11694
|
+
|
|
11695
|
+
/**
|
|
11696
|
+
* Privacy protection objective. no need to import an array when in use on API Explorer. just add the corresponding item and fill in the value.
|
|
11697
|
+
-Human face.
|
|
11698
|
+
-License plate.
|
|
11699
|
+
* @type {Array.<string> || null}
|
|
11700
|
+
*/
|
|
11701
|
+
this.PrivacyTargets = null;
|
|
11702
|
+
|
|
11703
|
+
}
|
|
11704
|
+
|
|
11705
|
+
/**
|
|
11706
|
+
* @private
|
|
11707
|
+
*/
|
|
11708
|
+
deserialize(params) {
|
|
11709
|
+
if (!params) {
|
|
11710
|
+
return;
|
|
11711
|
+
}
|
|
11712
|
+
this.PrivacyModel = 'PrivacyModel' in params ? params.PrivacyModel : null;
|
|
11713
|
+
this.PrivacyTargets = 'PrivacyTargets' in params ? params.PrivacyTargets : null;
|
|
11714
|
+
|
|
11715
|
+
}
|
|
11716
|
+
}
|
|
11717
|
+
|
|
11461
11718
|
/**
|
|
11462
11719
|
* Control parameter of a porn information detection in text task.
|
|
11463
11720
|
* @class
|
|
@@ -11757,9 +12014,10 @@ class TaskOutputStorage extends AbstractModel {
|
|
|
11757
12014
|
super();
|
|
11758
12015
|
|
|
11759
12016
|
/**
|
|
11760
|
-
*
|
|
11761
|
-
<
|
|
11762
|
-
<
|
|
12017
|
+
* Specifies the type of storage location for the media processing service output object. valid values:.
|
|
12018
|
+
<Li>COS: cos storage.</li>.
|
|
12019
|
+
<Li>AWS-S3: aws storage, suitable for aws tasks only and requires the same region.</li>.
|
|
12020
|
+
<Li>VOD: video-on-demand (vod) pro edition</li>.
|
|
11763
12021
|
* @type {string || null}
|
|
11764
12022
|
*/
|
|
11765
12023
|
this.Type = null;
|
|
@@ -11778,6 +12036,13 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
11778
12036
|
*/
|
|
11779
12037
|
this.S3OutputStorage = null;
|
|
11780
12038
|
|
|
12039
|
+
/**
|
|
12040
|
+
* The VOD Pro application and bucket to save the output file. This parameter is required if `Type` is `VOD`.
|
|
12041
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
12042
|
+
* @type {VODOutputStorage || null}
|
|
12043
|
+
*/
|
|
12044
|
+
this.VODOutputStorage = null;
|
|
12045
|
+
|
|
11781
12046
|
}
|
|
11782
12047
|
|
|
11783
12048
|
/**
|
|
@@ -11801,6 +12066,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
11801
12066
|
this.S3OutputStorage = obj;
|
|
11802
12067
|
}
|
|
11803
12068
|
|
|
12069
|
+
if (params.VODOutputStorage) {
|
|
12070
|
+
let obj = new VODOutputStorage();
|
|
12071
|
+
obj.deserialize(params.VODOutputStorage)
|
|
12072
|
+
this.VODOutputStorage = obj;
|
|
12073
|
+
}
|
|
12074
|
+
|
|
11804
12075
|
}
|
|
11805
12076
|
}
|
|
11806
12077
|
|
|
@@ -12279,6 +12550,54 @@ class AiAnalysisTaskFrameTagOutput extends AbstractModel {
|
|
|
12279
12550
|
}
|
|
12280
12551
|
}
|
|
12281
12552
|
|
|
12553
|
+
/**
|
|
12554
|
+
* Intelligent translation result information.
|
|
12555
|
+
* @class
|
|
12556
|
+
*/
|
|
12557
|
+
class AiAnalysisTaskDubbingOutput extends AbstractModel {
|
|
12558
|
+
constructor(){
|
|
12559
|
+
super();
|
|
12560
|
+
|
|
12561
|
+
/**
|
|
12562
|
+
* Specifies the video path for translation.
|
|
12563
|
+
* @type {string || null}
|
|
12564
|
+
*/
|
|
12565
|
+
this.VideoPath = null;
|
|
12566
|
+
|
|
12567
|
+
/**
|
|
12568
|
+
* Specifies the file path of the tag.
|
|
12569
|
+
|
|
12570
|
+
* @type {string || null}
|
|
12571
|
+
*/
|
|
12572
|
+
this.SpeakerPath = null;
|
|
12573
|
+
|
|
12574
|
+
/**
|
|
12575
|
+
* Specifies the storage location of the transcoded video.
|
|
12576
|
+
* @type {TaskOutputStorage || null}
|
|
12577
|
+
*/
|
|
12578
|
+
this.OutputStorage = null;
|
|
12579
|
+
|
|
12580
|
+
}
|
|
12581
|
+
|
|
12582
|
+
/**
|
|
12583
|
+
* @private
|
|
12584
|
+
*/
|
|
12585
|
+
deserialize(params) {
|
|
12586
|
+
if (!params) {
|
|
12587
|
+
return;
|
|
12588
|
+
}
|
|
12589
|
+
this.VideoPath = 'VideoPath' in params ? params.VideoPath : null;
|
|
12590
|
+
this.SpeakerPath = 'SpeakerPath' in params ? params.SpeakerPath : null;
|
|
12591
|
+
|
|
12592
|
+
if (params.OutputStorage) {
|
|
12593
|
+
let obj = new TaskOutputStorage();
|
|
12594
|
+
obj.deserialize(params.OutputStorage)
|
|
12595
|
+
this.OutputStorage = obj;
|
|
12596
|
+
}
|
|
12597
|
+
|
|
12598
|
+
}
|
|
12599
|
+
}
|
|
12600
|
+
|
|
12282
12601
|
/**
|
|
12283
12602
|
* ModifyAdaptiveDynamicStreamingTemplate request structure.
|
|
12284
12603
|
* @class
|
|
@@ -12965,68 +13284,70 @@ class QualityControlItemConfig extends AbstractModel {
|
|
|
12965
13284
|
super();
|
|
12966
13285
|
|
|
12967
13286
|
/**
|
|
12968
|
-
* Quality
|
|
12969
|
-
<li>LowEvaluation:
|
|
12970
|
-
<li>
|
|
12971
|
-
<
|
|
12972
|
-
<
|
|
12973
|
-
<
|
|
12974
|
-
<
|
|
12975
|
-
<
|
|
12976
|
-
<
|
|
12977
|
-
<
|
|
12978
|
-
<
|
|
12979
|
-
<
|
|
12980
|
-
<
|
|
12981
|
-
<
|
|
12982
|
-
<
|
|
12983
|
-
<
|
|
12984
|
-
<
|
|
12985
|
-
<
|
|
12986
|
-
<
|
|
12987
|
-
<
|
|
12988
|
-
<
|
|
12989
|
-
<
|
|
12990
|
-
<
|
|
12991
|
-
<
|
|
12992
|
-
<li>
|
|
12993
|
-
<li>
|
|
12994
|
-
<li>
|
|
12995
|
-
<
|
|
12996
|
-
<
|
|
12997
|
-
<
|
|
12998
|
-
<
|
|
12999
|
-
<
|
|
13000
|
-
<
|
|
13001
|
-
<
|
|
13002
|
-
<li>
|
|
13003
|
-
<
|
|
13004
|
-
<
|
|
13005
|
-
<
|
|
13006
|
-
<li>
|
|
13007
|
-
<
|
|
13008
|
-
<li>
|
|
13009
|
-
<
|
|
13010
|
-
<
|
|
13011
|
-
<
|
|
13012
|
-
<
|
|
13013
|
-
<
|
|
13014
|
-
<
|
|
13015
|
-
<
|
|
13016
|
-
<
|
|
13017
|
-
<
|
|
13018
|
-
<
|
|
13019
|
-
<
|
|
13020
|
-
<
|
|
13021
|
-
<li>
|
|
13022
|
-
<li>
|
|
13023
|
-
<
|
|
13024
|
-
<
|
|
13025
|
-
<
|
|
13026
|
-
<
|
|
13027
|
-
<
|
|
13028
|
-
<li>
|
|
13029
|
-
<
|
|
13287
|
+
* Quality inspection item name. valid values:.
|
|
13288
|
+
<li>LowEvaluation: specifies the no-reference MOS score of the video.</li>.
|
|
13289
|
+
<li>AudioEvaluation: specifies the no-reference MOS score of the audio.</li>.
|
|
13290
|
+
<Li>Mosaic: mosaic detection.</li>.
|
|
13291
|
+
<Li>CrashScreen: specifies screen glitch detection.</li>.
|
|
13292
|
+
<Li>Blur: specifies blur detection.</li>.
|
|
13293
|
+
<Li>Jitter: jitter detection.</li>.
|
|
13294
|
+
<Li>Noise: noise detection.</li>.
|
|
13295
|
+
<Li>QRCode: qr code detection.</li>.
|
|
13296
|
+
<Li>BarCode: specifies barcode detection.</li>.
|
|
13297
|
+
<Li>AppletCode: specifies mini program code detection.</li>.
|
|
13298
|
+
<Li>BlackWhiteEdge: specifies black and white edge detection.</li>.
|
|
13299
|
+
<Li>SolidColorScreen: specifies solid color screen detection.</li>.
|
|
13300
|
+
<Li>LowLighting: specifies low light.</li>.
|
|
13301
|
+
<Li>HighLighting: overexposure.</li>.
|
|
13302
|
+
<Li>NoVoice: specifies silence detection.</li>.
|
|
13303
|
+
<Li>LowVoice: specifies bass detection.</li>.
|
|
13304
|
+
<Li>HighVoice: explosion noise detection.</li>.
|
|
13305
|
+
<Li>AudioNoise: specifies audio noise detection.</li>.
|
|
13306
|
+
<Li>VideoResolutionChanged: specifies the video resolution change.</li>.
|
|
13307
|
+
<Li>AudioSampleRateChanged: specifies the audio sample rate change.</li>.
|
|
13308
|
+
<Li>AudioChannelsChanged: indicates the audio channel quantity change.</li>.
|
|
13309
|
+
<Li>ParameterSetsChanged: indicates the stream parameter set information has changed.</li>.
|
|
13310
|
+
<Li>DarOrSarInvalid: indicates an abnormal video aspect ratio.</li>.
|
|
13311
|
+
<li>TimestampFallback: specifies DTS timestamp rollback.</li>.
|
|
13312
|
+
<li>DtsJitter: specifies excessive DTS jitter.</li>.
|
|
13313
|
+
<li>PtsJitter: indicates excessive PTS jitter.</li>.
|
|
13314
|
+
<Li>AACDurationDeviation: specifies an improper aac frame timestamp interval.</li>.
|
|
13315
|
+
<Li>AudioDroppingFrames: indicates audio frame dropping.</li>.
|
|
13316
|
+
<Li>VideoDroppingFrames: specifies video frame dropping.</li>.
|
|
13317
|
+
<Li>AVTimestampInterleave: improper audio-video interleaving.</li>.
|
|
13318
|
+
<Li>PtsLessThanDts: specifies that the pts of the media stream is less than the dts.</li>.
|
|
13319
|
+
<Li>ReceiveFpsJitter: specifies excessive jitter in the network received frame rate.</li>.
|
|
13320
|
+
<Li>ReceiveFpsTooSmall: indicates the network received video frame rate is too low.</li>.
|
|
13321
|
+
<li>FpsJitter: specifies excessive jitter in the stream frame rate calculated via PTS.</li>.
|
|
13322
|
+
<Li>StreamOpenFailed: indicates the stream open failure.</li>.
|
|
13323
|
+
<Li>StreamEnd: specifies the stream end.</li>.
|
|
13324
|
+
<Li>StreamParseFailed: specifies the stream parsing failure.</li>.
|
|
13325
|
+
<li>VideoFirstFrameNotIdr: first frame not an IDR frame.</li>.
|
|
13326
|
+
<Li>StreamNALUError: indicates an nalu start code error.</li>.
|
|
13327
|
+
<li>TsStreamNoAud: specifies whether the mpegts H26x stream misses AUD NALU.</li>.
|
|
13328
|
+
<Li>AudioStreamLack: no audio stream.</li>.
|
|
13329
|
+
<Li>VideoStreamLack: no video stream.</li>.
|
|
13330
|
+
<Li>LackAudioRecover: specifies missing audio stream recovery.</li>.
|
|
13331
|
+
<Li>LackVideoRecover: missing video stream recovery.</li>.
|
|
13332
|
+
<Li>VideoBitrateOutofRange: video stream bitrate (kbps) out of range.</li>.
|
|
13333
|
+
<Li>AudioBitrateOutofRange: audio stream bitrate (kbps) out of range.</li>.
|
|
13334
|
+
<Li>VideoDecodeFailed: indicates a video decoding error.</li>.
|
|
13335
|
+
<Li>AudioDecodeFailed: audio decoding error.</li>.
|
|
13336
|
+
<Li>AudioOutOfPhase: specifies opposite phase in dual-channel audio.</li>.
|
|
13337
|
+
<Li>VideoDuplicatedFrame: indicates duplicate frames in video streams.</li>.
|
|
13338
|
+
<Li>AudioDuplicatedFrame: indicates duplicate frames in audio streams.</li>.
|
|
13339
|
+
<Li>VideoRotation: specifies video rotation.</li>.
|
|
13340
|
+
<li>TsMultiPrograms: specifies multiple programs in MPEG2-TS streams.</li>.
|
|
13341
|
+
<li>Mp4InvalidCodecFourcc: specifies the codec fourcc in Mp4 does not meet Apple HLS requirements.</li>.
|
|
13342
|
+
<Li>HLSBadM3u8Format: invalid m3u8 file.</li>.
|
|
13343
|
+
<Li>HLSInvalidMasterM3u8: invalid main m3u8 file.</li>.
|
|
13344
|
+
<Li>HLSInvalidMediaM3u8: invalid media m3u8 file.</li>.
|
|
13345
|
+
<Li>HLSMasterM3u8Recommended: parameters recommended by standards missing in main m3u8.</li>.
|
|
13346
|
+
<Li>HLSMediaM3u8Recommended: parameters recommended by standards missing in media m3u8.</li>.
|
|
13347
|
+
<li>HLSMediaM3u8DiscontinuityExist: indicates the existence of EXT-X-DISCONTINUITY in media m3u8.</li>.
|
|
13348
|
+
<Li>HLSMediaSegmentsStreamNumChange: indicates the number of streams in segments changes.</li>.
|
|
13349
|
+
<li>HLSMediaSegmentsPTSJitterDeviation: indicates PTS jumps between segments without EXT-X-DISCONTINUITY.</li>.
|
|
13350
|
+
<li>HLSMediaSegmentsDTSJitterDeviation: indicates DTS jumps between segments without EXT-X-DISCONTINUITY.</li>.
|
|
13030
13351
|
<li>TimecodeTrackExist: TMCD track in MP4.</li>
|
|
13031
13352
|
* @type {string || null}
|
|
13032
13353
|
*/
|
|
@@ -13164,6 +13485,18 @@ Note 3: The trigger configured for an orchestration is for automatically startin
|
|
|
13164
13485
|
*/
|
|
13165
13486
|
this.AiQualityControlTask = null;
|
|
13166
13487
|
|
|
13488
|
+
/**
|
|
13489
|
+
* Smart subtitle task.
|
|
13490
|
+
* @type {SmartSubtitlesTaskInput || null}
|
|
13491
|
+
*/
|
|
13492
|
+
this.SmartSubtitlesTask = null;
|
|
13493
|
+
|
|
13494
|
+
/**
|
|
13495
|
+
* Smart erase task parameter.
|
|
13496
|
+
* @type {SmartEraseTaskInput || null}
|
|
13497
|
+
*/
|
|
13498
|
+
this.SmartEraseTask = null;
|
|
13499
|
+
|
|
13167
13500
|
/**
|
|
13168
13501
|
* Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
|
|
13169
13502
|
* @type {TaskNotifyConfig || null}
|
|
@@ -13202,12 +13535,6 @@ Note 3: The trigger configured for an orchestration is for automatically startin
|
|
|
13202
13535
|
*/
|
|
13203
13536
|
this.ResourceId = null;
|
|
13204
13537
|
|
|
13205
|
-
/**
|
|
13206
|
-
* Smart subtitle task.
|
|
13207
|
-
* @type {SmartSubtitlesTaskInput || null}
|
|
13208
|
-
*/
|
|
13209
|
-
this.SmartSubtitlesTask = null;
|
|
13210
|
-
|
|
13211
13538
|
/**
|
|
13212
13539
|
* Whether to skip metadata acquisition. Valid values:
|
|
13213
13540
|
0: do not skip
|
|
@@ -13271,6 +13598,18 @@ Default value: 0
|
|
|
13271
13598
|
this.AiQualityControlTask = obj;
|
|
13272
13599
|
}
|
|
13273
13600
|
|
|
13601
|
+
if (params.SmartSubtitlesTask) {
|
|
13602
|
+
let obj = new SmartSubtitlesTaskInput();
|
|
13603
|
+
obj.deserialize(params.SmartSubtitlesTask)
|
|
13604
|
+
this.SmartSubtitlesTask = obj;
|
|
13605
|
+
}
|
|
13606
|
+
|
|
13607
|
+
if (params.SmartEraseTask) {
|
|
13608
|
+
let obj = new SmartEraseTaskInput();
|
|
13609
|
+
obj.deserialize(params.SmartEraseTask)
|
|
13610
|
+
this.SmartEraseTask = obj;
|
|
13611
|
+
}
|
|
13612
|
+
|
|
13274
13613
|
if (params.TaskNotifyConfig) {
|
|
13275
13614
|
let obj = new TaskNotifyConfig();
|
|
13276
13615
|
obj.deserialize(params.TaskNotifyConfig)
|
|
@@ -13281,12 +13620,6 @@ Default value: 0
|
|
|
13281
13620
|
this.SessionContext = 'SessionContext' in params ? params.SessionContext : null;
|
|
13282
13621
|
this.TaskType = 'TaskType' in params ? params.TaskType : null;
|
|
13283
13622
|
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
13284
|
-
|
|
13285
|
-
if (params.SmartSubtitlesTask) {
|
|
13286
|
-
let obj = new SmartSubtitlesTaskInput();
|
|
13287
|
-
obj.deserialize(params.SmartSubtitlesTask)
|
|
13288
|
-
this.SmartSubtitlesTask = obj;
|
|
13289
|
-
}
|
|
13290
13623
|
this.SkipMateData = 'SkipMateData' in params ? params.SkipMateData : null;
|
|
13291
13624
|
|
|
13292
13625
|
}
|
|
@@ -13622,6 +13955,48 @@ class LiveStreamOcrFullTextRecognitionResult extends AbstractModel {
|
|
|
13622
13955
|
}
|
|
13623
13956
|
}
|
|
13624
13957
|
|
|
13958
|
+
/**
|
|
13959
|
+
* VOD Pro output object information for MPS.
|
|
13960
|
+
* @class
|
|
13961
|
+
*/
|
|
13962
|
+
class VODOutputStorage extends AbstractModel {
|
|
13963
|
+
constructor(){
|
|
13964
|
+
super();
|
|
13965
|
+
|
|
13966
|
+
/**
|
|
13967
|
+
* Specifies the destination Bucket ID for the generated output file of MPS.
|
|
13968
|
+
* @type {string || null}
|
|
13969
|
+
*/
|
|
13970
|
+
this.Bucket = null;
|
|
13971
|
+
|
|
13972
|
+
/**
|
|
13973
|
+
* Specifies the region of the target Bucket for the output.
|
|
13974
|
+
* @type {string || null}
|
|
13975
|
+
*/
|
|
13976
|
+
this.Region = null;
|
|
13977
|
+
|
|
13978
|
+
/**
|
|
13979
|
+
* VOD Pro application Id.
|
|
13980
|
+
* @type {number || null}
|
|
13981
|
+
*/
|
|
13982
|
+
this.SubAppId = null;
|
|
13983
|
+
|
|
13984
|
+
}
|
|
13985
|
+
|
|
13986
|
+
/**
|
|
13987
|
+
* @private
|
|
13988
|
+
*/
|
|
13989
|
+
deserialize(params) {
|
|
13990
|
+
if (!params) {
|
|
13991
|
+
return;
|
|
13992
|
+
}
|
|
13993
|
+
this.Bucket = 'Bucket' in params ? params.Bucket : null;
|
|
13994
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
13995
|
+
this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
|
|
13996
|
+
|
|
13997
|
+
}
|
|
13998
|
+
}
|
|
13999
|
+
|
|
13625
14000
|
/**
|
|
13626
14001
|
* Result type of a time point screenshot task
|
|
13627
14002
|
* @class
|
|
@@ -13956,37 +14331,39 @@ The value can only be 0 when TranslateSwitch is set to OFF. The value can only b
|
|
|
13956
14331
|
this.SubtitleType = null;
|
|
13957
14332
|
|
|
13958
14333
|
/**
|
|
13959
|
-
*
|
|
13960
|
-
|
|
13961
|
-
zh: Simplified Chinese
|
|
13962
|
-
en:
|
|
13963
|
-
|
|
13964
|
-
|
|
13965
|
-
zh-PY: Chinese
|
|
13966
|
-
zh-medical: Medical Chinese
|
|
13967
|
-
yue: Cantonese
|
|
13968
|
-
|
|
13969
|
-
ms: Malay
|
|
13970
|
-
id: Indonesian
|
|
13971
|
-
fil: Filipino
|
|
13972
|
-
th: Thai
|
|
13973
|
-
pt: Portuguese
|
|
13974
|
-
tr: Turkish
|
|
13975
|
-
ar: Arabic
|
|
13976
|
-
es: Spanish
|
|
14334
|
+
* Video source language for intelligent caption.
|
|
14335
|
+
Valid values:
|
|
14336
|
+
zh: Simplified Chinese.
|
|
14337
|
+
en: Eenglish.
|
|
14338
|
+
Ja: Japanese.
|
|
14339
|
+
Ko: Korean.
|
|
14340
|
+
zh-PY: Simplified Chinese, English and Cantonese.
|
|
14341
|
+
zh-medical: Medical Chinese.
|
|
14342
|
+
yue: Cantonese.
|
|
14343
|
+
Vi: Vietnamese.
|
|
14344
|
+
ms: Malay.
|
|
14345
|
+
id: Indonesian.
|
|
14346
|
+
fil: Filipino.
|
|
14347
|
+
th: Thai.
|
|
14348
|
+
pt: Portuguese.
|
|
14349
|
+
tr: Turkish.
|
|
14350
|
+
ar: Arabic.
|
|
14351
|
+
es: Spanish.
|
|
13977
14352
|
hi: Hindi
|
|
13978
|
-
|
|
13979
|
-
de: German
|
|
14353
|
+
Fr: French.
|
|
14354
|
+
de: German.
|
|
13980
14355
|
zh-dialect: Chinese dialect
|
|
14356
|
+
zh_en: Simplified Chinese and English
|
|
14357
|
+
prime_zh: Simplified Chinese, Chinese Dialect and English.
|
|
13981
14358
|
* @type {string || null}
|
|
13982
14359
|
*/
|
|
13983
14360
|
this.VideoSrcLanguage = null;
|
|
13984
14361
|
|
|
13985
14362
|
/**
|
|
13986
|
-
*
|
|
13987
|
-
vtt: WebVTT format
|
|
14363
|
+
* Intelligent subtitle file format.
|
|
14364
|
+
vtt: WebVTT format.
|
|
14365
|
+
srt: SRT format.
|
|
13988
14366
|
If this field is left blank, no subtitle file will be generated.
|
|
13989
|
-
Note: This field may return null, indicating that no valid value can be obtained.
|
|
13990
14367
|
* @type {string || null}
|
|
13991
14368
|
*/
|
|
13992
14369
|
this.SubtitleFormat = null;
|
|
@@ -14562,6 +14939,55 @@ class DeleteContentReviewTemplateResponse extends AbstractModel {
|
|
|
14562
14939
|
}
|
|
14563
14940
|
}
|
|
14564
14941
|
|
|
14942
|
+
/**
|
|
14943
|
+
* VOD Pro object information for MPS.
|
|
14944
|
+
* @class
|
|
14945
|
+
*/
|
|
14946
|
+
class VODInputInfo extends AbstractModel {
|
|
14947
|
+
constructor(){
|
|
14948
|
+
super();
|
|
14949
|
+
|
|
14950
|
+
/**
|
|
14951
|
+
* Specifies the Bucket ID where the input file resides.
|
|
14952
|
+
* @type {string || null}
|
|
14953
|
+
*/
|
|
14954
|
+
this.Bucket = null;
|
|
14955
|
+
|
|
14956
|
+
/**
|
|
14957
|
+
* Specifies the region where the input file's Bucket resides.
|
|
14958
|
+
* @type {string || null}
|
|
14959
|
+
*/
|
|
14960
|
+
this.Region = null;
|
|
14961
|
+
|
|
14962
|
+
/**
|
|
14963
|
+
* Path of the input file.
|
|
14964
|
+
* @type {string || null}
|
|
14965
|
+
*/
|
|
14966
|
+
this.Object = null;
|
|
14967
|
+
|
|
14968
|
+
/**
|
|
14969
|
+
* VOD Pro application Id.
|
|
14970
|
+
* @type {number || null}
|
|
14971
|
+
*/
|
|
14972
|
+
this.SubAppId = null;
|
|
14973
|
+
|
|
14974
|
+
}
|
|
14975
|
+
|
|
14976
|
+
/**
|
|
14977
|
+
* @private
|
|
14978
|
+
*/
|
|
14979
|
+
deserialize(params) {
|
|
14980
|
+
if (!params) {
|
|
14981
|
+
return;
|
|
14982
|
+
}
|
|
14983
|
+
this.Bucket = 'Bucket' in params ? params.Bucket : null;
|
|
14984
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
14985
|
+
this.Object = 'Object' in params ? params.Object : null;
|
|
14986
|
+
this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
|
|
14987
|
+
|
|
14988
|
+
}
|
|
14989
|
+
}
|
|
14990
|
+
|
|
14565
14991
|
/**
|
|
14566
14992
|
* Image watermarking template
|
|
14567
14993
|
* @class
|
|
@@ -15253,6 +15679,76 @@ class DescribeContentReviewTemplatesResponse extends AbstractModel {
|
|
|
15253
15679
|
}
|
|
15254
15680
|
}
|
|
15255
15681
|
|
|
15682
|
+
/**
|
|
15683
|
+
* Smart erasure. coordinate configuration of the removal area.
|
|
15684
|
+
The region is defined by the coordinates of the upper left corner and the bottom-right corner.
|
|
15685
|
+
The coordinate origin is the top-left corner of the frame and the coordinate points can be specified using pixel values or percentage units.
|
|
15686
|
+
**For the Automatic Erasing Area:**
|
|
15687
|
+
When the unit is %, the coordinate range is [0,1].
|
|
15688
|
+
When unit is px, X value range is [0, video image width]. Y value range is [0, video image height].
|
|
15689
|
+
**For the Specified area erasing:**
|
|
15690
|
+
Specifies the coordinate range as [0,1) when the unit is %.
|
|
15691
|
+
When unit: px, X value range [0, video image width], Y value range [0, video image height].
|
|
15692
|
+
* @class
|
|
15693
|
+
*/
|
|
15694
|
+
class EraseArea extends AbstractModel {
|
|
15695
|
+
constructor(){
|
|
15696
|
+
super();
|
|
15697
|
+
|
|
15698
|
+
/**
|
|
15699
|
+
* X-Axis coordinate of the upper left corner.
|
|
15700
|
+
When Unit is set to 1 (percentage Unit), 0.05 indicates the horizontal distance from the upper left corner of the region to the top-left corner of the entire frame is 5% of the frame width.
|
|
15701
|
+
* @type {number || null}
|
|
15702
|
+
*/
|
|
15703
|
+
this.LeftTopX = null;
|
|
15704
|
+
|
|
15705
|
+
/**
|
|
15706
|
+
* Y-Axis coordinate of the upper left corner.
|
|
15707
|
+
When Unit is set to 1 (using percentage Unit), 0.1 indicates the vertical distance from the top-left corner of the area to the top-left corner of the entire frame is 10% of the screen height.
|
|
15708
|
+
* @type {number || null}
|
|
15709
|
+
*/
|
|
15710
|
+
this.LeftTopY = null;
|
|
15711
|
+
|
|
15712
|
+
/**
|
|
15713
|
+
* X-Axis coordinate of the bottom-right corner.
|
|
15714
|
+
When Unit is set to 1 (percentage Unit), 0.75 indicates the horizontal distance from the bottom-right corner of the region to the top-left corner of the entire frame is 75% of the frame width.
|
|
15715
|
+
* @type {number || null}
|
|
15716
|
+
*/
|
|
15717
|
+
this.RightBottomX = null;
|
|
15718
|
+
|
|
15719
|
+
/**
|
|
15720
|
+
* Y-Axis coordinate of the bottom-right corner.
|
|
15721
|
+
When Unit is set to 1 (using percentage Unit), 0.9 indicates the vertical distance from the bottom-right corner of the area to the top-left corner of the entire frame is 90% of the screen height.
|
|
15722
|
+
* @type {number || null}
|
|
15723
|
+
*/
|
|
15724
|
+
this.RightBottomY = null;
|
|
15725
|
+
|
|
15726
|
+
/**
|
|
15727
|
+
* Specifies the coordinate unit.
|
|
15728
|
+
-Percentage.
|
|
15729
|
+
-2 pixel values.
|
|
15730
|
+
* @type {number || null}
|
|
15731
|
+
*/
|
|
15732
|
+
this.Unit = null;
|
|
15733
|
+
|
|
15734
|
+
}
|
|
15735
|
+
|
|
15736
|
+
/**
|
|
15737
|
+
* @private
|
|
15738
|
+
*/
|
|
15739
|
+
deserialize(params) {
|
|
15740
|
+
if (!params) {
|
|
15741
|
+
return;
|
|
15742
|
+
}
|
|
15743
|
+
this.LeftTopX = 'LeftTopX' in params ? params.LeftTopX : null;
|
|
15744
|
+
this.LeftTopY = 'LeftTopY' in params ? params.LeftTopY : null;
|
|
15745
|
+
this.RightBottomX = 'RightBottomX' in params ? params.RightBottomX : null;
|
|
15746
|
+
this.RightBottomY = 'RightBottomY' in params ? params.RightBottomY : null;
|
|
15747
|
+
this.Unit = 'Unit' in params ? params.Unit : null;
|
|
15748
|
+
|
|
15749
|
+
}
|
|
15750
|
+
}
|
|
15751
|
+
|
|
15256
15752
|
/**
|
|
15257
15753
|
* TESHD parameter configuration.
|
|
15258
15754
|
* @class
|
|
@@ -15944,6 +16440,13 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
15944
16440
|
*/
|
|
15945
16441
|
this.SmartSubtitlesTask = null;
|
|
15946
16442
|
|
|
16443
|
+
/**
|
|
16444
|
+
* Smart erasure task.
|
|
16445
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
16446
|
+
* @type {SmartEraseTaskInput || null}
|
|
16447
|
+
*/
|
|
16448
|
+
this.SmartEraseTask = null;
|
|
16449
|
+
|
|
15947
16450
|
}
|
|
15948
16451
|
|
|
15949
16452
|
/**
|
|
@@ -16026,6 +16529,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
16026
16529
|
this.SmartSubtitlesTask = obj;
|
|
16027
16530
|
}
|
|
16028
16531
|
|
|
16532
|
+
if (params.SmartEraseTask) {
|
|
16533
|
+
let obj = new SmartEraseTaskInput();
|
|
16534
|
+
obj.deserialize(params.SmartEraseTask)
|
|
16535
|
+
this.SmartEraseTask = obj;
|
|
16536
|
+
}
|
|
16537
|
+
|
|
16029
16538
|
}
|
|
16030
16539
|
}
|
|
16031
16540
|
|
|
@@ -16565,26 +17074,53 @@ class TerrorismConfigureInfoForUpdate extends AbstractModel {
|
|
|
16565
17074
|
}
|
|
16566
17075
|
|
|
16567
17076
|
/**
|
|
16568
|
-
*
|
|
17077
|
+
* DescribePersonSamples request structure.
|
|
16569
17078
|
* @class
|
|
16570
17079
|
*/
|
|
16571
|
-
class
|
|
17080
|
+
class DescribePersonSamplesRequest extends AbstractModel {
|
|
16572
17081
|
constructor(){
|
|
16573
17082
|
super();
|
|
16574
17083
|
|
|
16575
17084
|
/**
|
|
16576
|
-
*
|
|
16577
|
-
|
|
16578
|
-
|
|
17085
|
+
* Type of images to pull. Valid values:
|
|
17086
|
+
<li>UserDefine: custom image library</li>
|
|
17087
|
+
<li>Default: default image library</li>
|
|
17088
|
+
|
|
17089
|
+
Default value: UserDefine. Samples in the custom image library will be pulled.
|
|
17090
|
+
Note: you can pull the default image library only using the image name or a combination of the image name and ID, and only one face image is returned.
|
|
17091
|
+
* @type {string || null}
|
|
16579
17092
|
*/
|
|
16580
|
-
this.
|
|
17093
|
+
this.Type = null;
|
|
16581
17094
|
|
|
16582
17095
|
/**
|
|
16583
|
-
*
|
|
16584
|
-
|
|
16585
|
-
* @type {ScheduleQualityControlTaskResult || null}
|
|
17096
|
+
* Image ID. Array length limit: 100
|
|
17097
|
+
* @type {Array.<string> || null}
|
|
16586
17098
|
*/
|
|
16587
|
-
this.
|
|
17099
|
+
this.PersonIds = null;
|
|
17100
|
+
|
|
17101
|
+
/**
|
|
17102
|
+
* Image name. Array length limit: 20
|
|
17103
|
+
* @type {Array.<string> || null}
|
|
17104
|
+
*/
|
|
17105
|
+
this.Names = null;
|
|
17106
|
+
|
|
17107
|
+
/**
|
|
17108
|
+
* Image tag. Array length limit: 20
|
|
17109
|
+
* @type {Array.<string> || null}
|
|
17110
|
+
*/
|
|
17111
|
+
this.Tags = null;
|
|
17112
|
+
|
|
17113
|
+
/**
|
|
17114
|
+
* Paging offset. Default value: 0.
|
|
17115
|
+
* @type {number || null}
|
|
17116
|
+
*/
|
|
17117
|
+
this.Offset = null;
|
|
17118
|
+
|
|
17119
|
+
/**
|
|
17120
|
+
* Number of returned entries. Default value: 100. Maximum value: 100.
|
|
17121
|
+
* @type {number || null}
|
|
17122
|
+
*/
|
|
17123
|
+
this.Limit = null;
|
|
16588
17124
|
|
|
16589
17125
|
}
|
|
16590
17126
|
|
|
@@ -16595,18 +17131,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
16595
17131
|
if (!params) {
|
|
16596
17132
|
return;
|
|
16597
17133
|
}
|
|
16598
|
-
|
|
16599
|
-
|
|
16600
|
-
|
|
16601
|
-
|
|
16602
|
-
|
|
16603
|
-
|
|
16604
|
-
|
|
16605
|
-
if (params.LiveQualityControlTask) {
|
|
16606
|
-
let obj = new ScheduleQualityControlTaskResult();
|
|
16607
|
-
obj.deserialize(params.LiveQualityControlTask)
|
|
16608
|
-
this.LiveQualityControlTask = obj;
|
|
16609
|
-
}
|
|
17134
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
17135
|
+
this.PersonIds = 'PersonIds' in params ? params.PersonIds : null;
|
|
17136
|
+
this.Names = 'Names' in params ? params.Names : null;
|
|
17137
|
+
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
17138
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
17139
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
16610
17140
|
|
|
16611
17141
|
}
|
|
16612
17142
|
}
|
|
@@ -17515,6 +18045,79 @@ class AiSampleTagOperation extends AbstractModel {
|
|
|
17515
18045
|
}
|
|
17516
18046
|
}
|
|
17517
18047
|
|
|
18048
|
+
/**
|
|
18049
|
+
* Smart erasure custom parameter.
|
|
18050
|
+
* @class
|
|
18051
|
+
*/
|
|
18052
|
+
class RawSmartEraseParameter extends AbstractModel {
|
|
18053
|
+
constructor(){
|
|
18054
|
+
super();
|
|
18055
|
+
|
|
18056
|
+
/**
|
|
18057
|
+
* Specifies the removal type.
|
|
18058
|
+
-subtitle removal.
|
|
18059
|
+
-Remove watermark.
|
|
18060
|
+
-privacy protection.
|
|
18061
|
+
* @type {string || null}
|
|
18062
|
+
*/
|
|
18063
|
+
this.EraseType = null;
|
|
18064
|
+
|
|
18065
|
+
/**
|
|
18066
|
+
* Subtitle erasure configuration.
|
|
18067
|
+
When EraseType is subtitle, this field is required.
|
|
18068
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
18069
|
+
* @type {SmartEraseSubtitleConfig || null}
|
|
18070
|
+
*/
|
|
18071
|
+
this.EraseSubtitleConfig = null;
|
|
18072
|
+
|
|
18073
|
+
/**
|
|
18074
|
+
* Specifies the watermark removal configuration.
|
|
18075
|
+
When EraseType is watermark, this field is required.
|
|
18076
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
18077
|
+
* @type {SmartEraseWatermarkConfig || null}
|
|
18078
|
+
*/
|
|
18079
|
+
this.EraseWatermarkConfig = null;
|
|
18080
|
+
|
|
18081
|
+
/**
|
|
18082
|
+
* Privacy protection configuration.
|
|
18083
|
+
When EraseType is privacy, this field is required.
|
|
18084
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
18085
|
+
* @type {SmartErasePrivacyConfig || null}
|
|
18086
|
+
*/
|
|
18087
|
+
this.ErasePrivacyConfig = null;
|
|
18088
|
+
|
|
18089
|
+
}
|
|
18090
|
+
|
|
18091
|
+
/**
|
|
18092
|
+
* @private
|
|
18093
|
+
*/
|
|
18094
|
+
deserialize(params) {
|
|
18095
|
+
if (!params) {
|
|
18096
|
+
return;
|
|
18097
|
+
}
|
|
18098
|
+
this.EraseType = 'EraseType' in params ? params.EraseType : null;
|
|
18099
|
+
|
|
18100
|
+
if (params.EraseSubtitleConfig) {
|
|
18101
|
+
let obj = new SmartEraseSubtitleConfig();
|
|
18102
|
+
obj.deserialize(params.EraseSubtitleConfig)
|
|
18103
|
+
this.EraseSubtitleConfig = obj;
|
|
18104
|
+
}
|
|
18105
|
+
|
|
18106
|
+
if (params.EraseWatermarkConfig) {
|
|
18107
|
+
let obj = new SmartEraseWatermarkConfig();
|
|
18108
|
+
obj.deserialize(params.EraseWatermarkConfig)
|
|
18109
|
+
this.EraseWatermarkConfig = obj;
|
|
18110
|
+
}
|
|
18111
|
+
|
|
18112
|
+
if (params.ErasePrivacyConfig) {
|
|
18113
|
+
let obj = new SmartErasePrivacyConfig();
|
|
18114
|
+
obj.deserialize(params.ErasePrivacyConfig)
|
|
18115
|
+
this.ErasePrivacyConfig = obj;
|
|
18116
|
+
}
|
|
18117
|
+
|
|
18118
|
+
}
|
|
18119
|
+
}
|
|
18120
|
+
|
|
17518
18121
|
/**
|
|
17519
18122
|
* Result type of the media quality inspection task.
|
|
17520
18123
|
* @class
|
|
@@ -18052,15 +18655,16 @@ class AiAnalysisResult extends AbstractModel {
|
|
|
18052
18655
|
super();
|
|
18053
18656
|
|
|
18054
18657
|
/**
|
|
18055
|
-
* Task type.
|
|
18056
|
-
<
|
|
18057
|
-
<
|
|
18058
|
-
<
|
|
18059
|
-
<
|
|
18060
|
-
<
|
|
18061
|
-
|
|
18062
|
-
<li>DeLogo: intelligent removal.</li>
|
|
18658
|
+
* Task type. valid values:.
|
|
18659
|
+
<Li>Classification: intelligent classification.</li>.
|
|
18660
|
+
<Li>Cover: specifies the intelligent cover.</li>.
|
|
18661
|
+
<Li>Tag: intelligent tag.</li>.
|
|
18662
|
+
<Li>FrameTag: specifies intelligent frame-by-frame tagging.</li>.
|
|
18663
|
+
<Li>Highlight: intelligent highlights</li>.
|
|
18664
|
+
<Li>DeLogo: intelligent removal.</li>.
|
|
18063
18665
|
<li>Description: large model summarization.</li>
|
|
18666
|
+
|
|
18667
|
+
<Li>Dubbing: intelligent dubbing.</li>.
|
|
18064
18668
|
* @type {string || null}
|
|
18065
18669
|
*/
|
|
18066
18670
|
this.Type = null;
|
|
@@ -18131,6 +18735,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
18131
18735
|
*/
|
|
18132
18736
|
this.HorizontalToVerticalTask = null;
|
|
18133
18737
|
|
|
18738
|
+
/**
|
|
18739
|
+
* The query result of a Dubbing task for video content analysis, which is valid when the task type is Dubbing.
|
|
18740
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
18741
|
+
* @type {AiAnalysisTaskDubbingResult || null}
|
|
18742
|
+
*/
|
|
18743
|
+
this.DubbingTask = null;
|
|
18744
|
+
|
|
18134
18745
|
}
|
|
18135
18746
|
|
|
18136
18747
|
/**
|
|
@@ -18202,6 +18813,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
18202
18813
|
this.HorizontalToVerticalTask = obj;
|
|
18203
18814
|
}
|
|
18204
18815
|
|
|
18816
|
+
if (params.DubbingTask) {
|
|
18817
|
+
let obj = new AiAnalysisTaskDubbingResult();
|
|
18818
|
+
obj.deserialize(params.DubbingTask)
|
|
18819
|
+
this.DubbingTask = obj;
|
|
18820
|
+
}
|
|
18821
|
+
|
|
18205
18822
|
}
|
|
18206
18823
|
}
|
|
18207
18824
|
|
|
@@ -18247,6 +18864,64 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
18247
18864
|
}
|
|
18248
18865
|
}
|
|
18249
18866
|
|
|
18867
|
+
/**
|
|
18868
|
+
* Input parameter of an image watermarking template
|
|
18869
|
+
* @class
|
|
18870
|
+
*/
|
|
18871
|
+
class ImageWatermarkInputForUpdate extends AbstractModel {
|
|
18872
|
+
constructor(){
|
|
18873
|
+
super();
|
|
18874
|
+
|
|
18875
|
+
/**
|
|
18876
|
+
* String generated by [Base64-encoding](https://tools.ietf.org/html/rfc4648) a watermark image. JPEG and PNG images are supported.
|
|
18877
|
+
* @type {string || null}
|
|
18878
|
+
*/
|
|
18879
|
+
this.ImageContent = null;
|
|
18880
|
+
|
|
18881
|
+
/**
|
|
18882
|
+
* Watermark width. % and px formats are supported:
|
|
18883
|
+
<li>If the string ends in %, the `Width` of the watermark will be the specified percentage of the video width. For example, `10%` means that `Width` is 10% of the video width;</li>
|
|
18884
|
+
<li>If the string ends in px, the `Width` of the watermark will be in pixels. For example, `100px` means that `Width` is 100 pixels. Value range: [8, 4096].</li>
|
|
18885
|
+
* @type {string || null}
|
|
18886
|
+
*/
|
|
18887
|
+
this.Width = null;
|
|
18888
|
+
|
|
18889
|
+
/**
|
|
18890
|
+
* Height of a watermark, supporting two formats: % and px.
|
|
18891
|
+
<li>If a string ends with %, it indicates that the `Height` of a watermark is a percentage of a video's height. For example, `10%` means that `Height` is 10% of a video's height.</li>
|
|
18892
|
+
<li>If a string ends with px, the `Height` of a watermark will be in pixels. For example, `100px` means that `Height` is 100 pixels. Value range: 0 or [8, 4096].</li>
|
|
18893
|
+
|
|
18894
|
+
|
|
18895
|
+
* @type {string || null}
|
|
18896
|
+
*/
|
|
18897
|
+
this.Height = null;
|
|
18898
|
+
|
|
18899
|
+
/**
|
|
18900
|
+
* Repeat type of an animated watermark. Valid values:
|
|
18901
|
+
<li>once: no longer appears after watermark playback ends.</li>
|
|
18902
|
+
<li>repeat_last_frame: stays on the last frame after watermark playback ends.</li>
|
|
18903
|
+
<li>repeat (default): repeats the playback until the video ends.</li>
|
|
18904
|
+
* @type {string || null}
|
|
18905
|
+
*/
|
|
18906
|
+
this.RepeatType = null;
|
|
18907
|
+
|
|
18908
|
+
}
|
|
18909
|
+
|
|
18910
|
+
/**
|
|
18911
|
+
* @private
|
|
18912
|
+
*/
|
|
18913
|
+
deserialize(params) {
|
|
18914
|
+
if (!params) {
|
|
18915
|
+
return;
|
|
18916
|
+
}
|
|
18917
|
+
this.ImageContent = 'ImageContent' in params ? params.ImageContent : null;
|
|
18918
|
+
this.Width = 'Width' in params ? params.Width : null;
|
|
18919
|
+
this.Height = 'Height' in params ? params.Height : null;
|
|
18920
|
+
this.RepeatType = 'RepeatType' in params ? params.RepeatType : null;
|
|
18921
|
+
|
|
18922
|
+
}
|
|
18923
|
+
}
|
|
18924
|
+
|
|
18250
18925
|
/**
|
|
18251
18926
|
* DescribeAIAnalysisTemplates request structure.
|
|
18252
18927
|
* @class
|
|
@@ -19226,45 +19901,80 @@ Note: this parameter is not supported yet.
|
|
|
19226
19901
|
}
|
|
19227
19902
|
|
|
19228
19903
|
/**
|
|
19229
|
-
*
|
|
19904
|
+
* AI-based live stream recognition result
|
|
19230
19905
|
* @class
|
|
19231
19906
|
*/
|
|
19232
|
-
class
|
|
19907
|
+
class LiveStreamAiRecognitionResultItem extends AbstractModel {
|
|
19233
19908
|
constructor(){
|
|
19234
19909
|
super();
|
|
19235
19910
|
|
|
19236
19911
|
/**
|
|
19237
|
-
*
|
|
19912
|
+
* Result type. Valid values:
|
|
19913
|
+
<li>FaceRecognition: face recognition.</li>
|
|
19914
|
+
<li>AsrWordsRecognition: speech keyword recognition.</li>
|
|
19915
|
+
<li>OcrWordsRecognition: text keyword recognition.</li>
|
|
19916
|
+
<li>AsrFullTextRecognition: full speech recognition.</li>
|
|
19917
|
+
<li>OcrFullTextRecognition: full text recognition.</li>
|
|
19918
|
+
<li>TransTextRecognition: speech translation.</li>
|
|
19919
|
+
|
|
19920
|
+
<li>ObjectRecognition: object recognition.</li>
|
|
19921
|
+
<li>TagRecognition: highlights marking.</li>
|
|
19238
19922
|
* @type {string || null}
|
|
19239
19923
|
*/
|
|
19240
|
-
this.
|
|
19924
|
+
this.Type = null;
|
|
19241
19925
|
|
|
19242
19926
|
/**
|
|
19243
|
-
*
|
|
19244
|
-
|
|
19245
|
-
|
|
19246
|
-
* @type {string || null}
|
|
19927
|
+
* Face recognition result, which is valid when `Type` is
|
|
19928
|
+
`FaceRecognition`.
|
|
19929
|
+
* @type {Array.<LiveStreamFaceRecognitionResult> || null}
|
|
19247
19930
|
*/
|
|
19248
|
-
this.
|
|
19931
|
+
this.FaceRecognitionResultSet = null;
|
|
19249
19932
|
|
|
19250
19933
|
/**
|
|
19251
|
-
*
|
|
19252
|
-
|
|
19253
|
-
|
|
19934
|
+
* Speech keyword recognition result, which is valid when `Type` is
|
|
19935
|
+
`AsrWordsRecognition`.
|
|
19936
|
+
* @type {Array.<LiveStreamAsrWordsRecognitionResult> || null}
|
|
19937
|
+
*/
|
|
19938
|
+
this.AsrWordsRecognitionResultSet = null;
|
|
19254
19939
|
|
|
19940
|
+
/**
|
|
19941
|
+
* Text keyword recognition result, which is valid when `Type` is
|
|
19942
|
+
`OcrWordsRecognition`.
|
|
19943
|
+
* @type {Array.<LiveStreamOcrWordsRecognitionResult> || null}
|
|
19944
|
+
*/
|
|
19945
|
+
this.OcrWordsRecognitionResultSet = null;
|
|
19255
19946
|
|
|
19256
|
-
|
|
19947
|
+
/**
|
|
19948
|
+
* Full speech recognition result, which is valid when `Type` is
|
|
19949
|
+
`AsrFullTextRecognition`.
|
|
19950
|
+
* @type {Array.<LiveStreamAsrFullTextRecognitionResult> || null}
|
|
19257
19951
|
*/
|
|
19258
|
-
this.
|
|
19952
|
+
this.AsrFullTextRecognitionResultSet = null;
|
|
19259
19953
|
|
|
19260
19954
|
/**
|
|
19261
|
-
*
|
|
19262
|
-
|
|
19263
|
-
|
|
19264
|
-
<li>repeat (default): repeats the playback until the video ends.</li>
|
|
19265
|
-
* @type {string || null}
|
|
19955
|
+
* Full text recognition result, which is valid when `Type` is
|
|
19956
|
+
`OcrFullTextRecognition`.
|
|
19957
|
+
* @type {Array.<LiveStreamOcrFullTextRecognitionResult> || null}
|
|
19266
19958
|
*/
|
|
19267
|
-
this.
|
|
19959
|
+
this.OcrFullTextRecognitionResultSet = null;
|
|
19960
|
+
|
|
19961
|
+
/**
|
|
19962
|
+
* The translation result. This parameter is valid only if `Type` is `TransTextRecognition`.
|
|
19963
|
+
* @type {Array.<LiveStreamTransTextRecognitionResult> || null}
|
|
19964
|
+
*/
|
|
19965
|
+
this.TransTextRecognitionResultSet = null;
|
|
19966
|
+
|
|
19967
|
+
/**
|
|
19968
|
+
* Object recognition result, which is valid when Type is ObjectRecognition.
|
|
19969
|
+
* @type {Array.<LiveStreamObjectRecognitionResult> || null}
|
|
19970
|
+
*/
|
|
19971
|
+
this.ObjectRecognitionResultSet = null;
|
|
19972
|
+
|
|
19973
|
+
/**
|
|
19974
|
+
*
|
|
19975
|
+
* @type {Array.<LiveStreamTagRecognitionResult> || null}
|
|
19976
|
+
*/
|
|
19977
|
+
this.TagRecognitionResultSet = null;
|
|
19268
19978
|
|
|
19269
19979
|
}
|
|
19270
19980
|
|
|
@@ -19275,10 +19985,127 @@ class ImageWatermarkInputForUpdate extends AbstractModel {
|
|
|
19275
19985
|
if (!params) {
|
|
19276
19986
|
return;
|
|
19277
19987
|
}
|
|
19278
|
-
this.
|
|
19279
|
-
|
|
19280
|
-
|
|
19281
|
-
|
|
19988
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
19989
|
+
|
|
19990
|
+
if (params.FaceRecognitionResultSet) {
|
|
19991
|
+
this.FaceRecognitionResultSet = new Array();
|
|
19992
|
+
for (let z in params.FaceRecognitionResultSet) {
|
|
19993
|
+
let obj = new LiveStreamFaceRecognitionResult();
|
|
19994
|
+
obj.deserialize(params.FaceRecognitionResultSet[z]);
|
|
19995
|
+
this.FaceRecognitionResultSet.push(obj);
|
|
19996
|
+
}
|
|
19997
|
+
}
|
|
19998
|
+
|
|
19999
|
+
if (params.AsrWordsRecognitionResultSet) {
|
|
20000
|
+
this.AsrWordsRecognitionResultSet = new Array();
|
|
20001
|
+
for (let z in params.AsrWordsRecognitionResultSet) {
|
|
20002
|
+
let obj = new LiveStreamAsrWordsRecognitionResult();
|
|
20003
|
+
obj.deserialize(params.AsrWordsRecognitionResultSet[z]);
|
|
20004
|
+
this.AsrWordsRecognitionResultSet.push(obj);
|
|
20005
|
+
}
|
|
20006
|
+
}
|
|
20007
|
+
|
|
20008
|
+
if (params.OcrWordsRecognitionResultSet) {
|
|
20009
|
+
this.OcrWordsRecognitionResultSet = new Array();
|
|
20010
|
+
for (let z in params.OcrWordsRecognitionResultSet) {
|
|
20011
|
+
let obj = new LiveStreamOcrWordsRecognitionResult();
|
|
20012
|
+
obj.deserialize(params.OcrWordsRecognitionResultSet[z]);
|
|
20013
|
+
this.OcrWordsRecognitionResultSet.push(obj);
|
|
20014
|
+
}
|
|
20015
|
+
}
|
|
20016
|
+
|
|
20017
|
+
if (params.AsrFullTextRecognitionResultSet) {
|
|
20018
|
+
this.AsrFullTextRecognitionResultSet = new Array();
|
|
20019
|
+
for (let z in params.AsrFullTextRecognitionResultSet) {
|
|
20020
|
+
let obj = new LiveStreamAsrFullTextRecognitionResult();
|
|
20021
|
+
obj.deserialize(params.AsrFullTextRecognitionResultSet[z]);
|
|
20022
|
+
this.AsrFullTextRecognitionResultSet.push(obj);
|
|
20023
|
+
}
|
|
20024
|
+
}
|
|
20025
|
+
|
|
20026
|
+
if (params.OcrFullTextRecognitionResultSet) {
|
|
20027
|
+
this.OcrFullTextRecognitionResultSet = new Array();
|
|
20028
|
+
for (let z in params.OcrFullTextRecognitionResultSet) {
|
|
20029
|
+
let obj = new LiveStreamOcrFullTextRecognitionResult();
|
|
20030
|
+
obj.deserialize(params.OcrFullTextRecognitionResultSet[z]);
|
|
20031
|
+
this.OcrFullTextRecognitionResultSet.push(obj);
|
|
20032
|
+
}
|
|
20033
|
+
}
|
|
20034
|
+
|
|
20035
|
+
if (params.TransTextRecognitionResultSet) {
|
|
20036
|
+
this.TransTextRecognitionResultSet = new Array();
|
|
20037
|
+
for (let z in params.TransTextRecognitionResultSet) {
|
|
20038
|
+
let obj = new LiveStreamTransTextRecognitionResult();
|
|
20039
|
+
obj.deserialize(params.TransTextRecognitionResultSet[z]);
|
|
20040
|
+
this.TransTextRecognitionResultSet.push(obj);
|
|
20041
|
+
}
|
|
20042
|
+
}
|
|
20043
|
+
|
|
20044
|
+
if (params.ObjectRecognitionResultSet) {
|
|
20045
|
+
this.ObjectRecognitionResultSet = new Array();
|
|
20046
|
+
for (let z in params.ObjectRecognitionResultSet) {
|
|
20047
|
+
let obj = new LiveStreamObjectRecognitionResult();
|
|
20048
|
+
obj.deserialize(params.ObjectRecognitionResultSet[z]);
|
|
20049
|
+
this.ObjectRecognitionResultSet.push(obj);
|
|
20050
|
+
}
|
|
20051
|
+
}
|
|
20052
|
+
|
|
20053
|
+
if (params.TagRecognitionResultSet) {
|
|
20054
|
+
this.TagRecognitionResultSet = new Array();
|
|
20055
|
+
for (let z in params.TagRecognitionResultSet) {
|
|
20056
|
+
let obj = new LiveStreamTagRecognitionResult();
|
|
20057
|
+
obj.deserialize(params.TagRecognitionResultSet[z]);
|
|
20058
|
+
this.TagRecognitionResultSet.push(obj);
|
|
20059
|
+
}
|
|
20060
|
+
}
|
|
20061
|
+
|
|
20062
|
+
}
|
|
20063
|
+
}
|
|
20064
|
+
|
|
20065
|
+
/**
|
|
20066
|
+
* Result information of intelligent cover generating
|
|
20067
|
+
* @class
|
|
20068
|
+
*/
|
|
20069
|
+
class AiAnalysisTaskCoverOutput extends AbstractModel {
|
|
20070
|
+
constructor(){
|
|
20071
|
+
super();
|
|
20072
|
+
|
|
20073
|
+
/**
|
|
20074
|
+
* List of intelligently generated covers.
|
|
20075
|
+
* @type {Array.<MediaAiAnalysisCoverItem> || null}
|
|
20076
|
+
*/
|
|
20077
|
+
this.CoverSet = null;
|
|
20078
|
+
|
|
20079
|
+
/**
|
|
20080
|
+
* Storage location of intelligently generated cover.
|
|
20081
|
+
* @type {TaskOutputStorage || null}
|
|
20082
|
+
*/
|
|
20083
|
+
this.OutputStorage = null;
|
|
20084
|
+
|
|
20085
|
+
}
|
|
20086
|
+
|
|
20087
|
+
/**
|
|
20088
|
+
* @private
|
|
20089
|
+
*/
|
|
20090
|
+
deserialize(params) {
|
|
20091
|
+
if (!params) {
|
|
20092
|
+
return;
|
|
20093
|
+
}
|
|
20094
|
+
|
|
20095
|
+
if (params.CoverSet) {
|
|
20096
|
+
this.CoverSet = new Array();
|
|
20097
|
+
for (let z in params.CoverSet) {
|
|
20098
|
+
let obj = new MediaAiAnalysisCoverItem();
|
|
20099
|
+
obj.deserialize(params.CoverSet[z]);
|
|
20100
|
+
this.CoverSet.push(obj);
|
|
20101
|
+
}
|
|
20102
|
+
}
|
|
20103
|
+
|
|
20104
|
+
if (params.OutputStorage) {
|
|
20105
|
+
let obj = new TaskOutputStorage();
|
|
20106
|
+
obj.deserialize(params.OutputStorage)
|
|
20107
|
+
this.OutputStorage = obj;
|
|
20108
|
+
}
|
|
19282
20109
|
|
|
19283
20110
|
}
|
|
19284
20111
|
}
|
|
@@ -21124,6 +21951,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
21124
21951
|
*/
|
|
21125
21952
|
this.SubtitlePath = null;
|
|
21126
21953
|
|
|
21954
|
+
/**
|
|
21955
|
+
* Subtitle file storage location.
|
|
21956
|
+
* @type {TaskOutputStorage || null}
|
|
21957
|
+
*/
|
|
21958
|
+
this.OutputStorage = null;
|
|
21959
|
+
|
|
21127
21960
|
}
|
|
21128
21961
|
|
|
21129
21962
|
/**
|
|
@@ -21144,6 +21977,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
21144
21977
|
}
|
|
21145
21978
|
this.SubtitlePath = 'SubtitlePath' in params ? params.SubtitlePath : null;
|
|
21146
21979
|
|
|
21980
|
+
if (params.OutputStorage) {
|
|
21981
|
+
let obj = new TaskOutputStorage();
|
|
21982
|
+
obj.deserialize(params.OutputStorage)
|
|
21983
|
+
this.OutputStorage = obj;
|
|
21984
|
+
}
|
|
21985
|
+
|
|
21147
21986
|
}
|
|
21148
21987
|
}
|
|
21149
21988
|
|
|
@@ -21191,6 +22030,36 @@ class TerrorismOcrReviewTemplateInfo extends AbstractModel {
|
|
|
21191
22030
|
}
|
|
21192
22031
|
}
|
|
21193
22032
|
|
|
22033
|
+
/**
|
|
22034
|
+
* Extracts the digital watermark task configuration for video transcoding.
|
|
22035
|
+
* @class
|
|
22036
|
+
*/
|
|
22037
|
+
class ExtractBlindWatermarkTaskConfig extends AbstractModel {
|
|
22038
|
+
constructor(){
|
|
22039
|
+
super();
|
|
22040
|
+
|
|
22041
|
+
/**
|
|
22042
|
+
* Valid when the watermark type is blind-abseq. specifies the segment duration of the input video. unit: ms.
|
|
22043
|
+
Segment duration is 5 seconds by default if left empty.
|
|
22044
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
22045
|
+
* @type {number || null}
|
|
22046
|
+
*/
|
|
22047
|
+
this.SegmentDuration = null;
|
|
22048
|
+
|
|
22049
|
+
}
|
|
22050
|
+
|
|
22051
|
+
/**
|
|
22052
|
+
* @private
|
|
22053
|
+
*/
|
|
22054
|
+
deserialize(params) {
|
|
22055
|
+
if (!params) {
|
|
22056
|
+
return;
|
|
22057
|
+
}
|
|
22058
|
+
this.SegmentDuration = 'SegmentDuration' in params ? params.SegmentDuration : null;
|
|
22059
|
+
|
|
22060
|
+
}
|
|
22061
|
+
}
|
|
22062
|
+
|
|
21194
22063
|
/**
|
|
21195
22064
|
* Image encoding format parameters
|
|
21196
22065
|
* @class
|
|
@@ -21378,6 +22247,20 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
21378
22247
|
*/
|
|
21379
22248
|
this.SubtitlePos = null;
|
|
21380
22249
|
|
|
22250
|
+
/**
|
|
22251
|
+
* Specifies the file url of the video after voice cloning.
|
|
22252
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
22253
|
+
* @type {string || null}
|
|
22254
|
+
*/
|
|
22255
|
+
this.VoiceClonedVideo = null;
|
|
22256
|
+
|
|
22257
|
+
/**
|
|
22258
|
+
* Specifies the file address of the voice type clone annotation.
|
|
22259
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
22260
|
+
* @type {string || null}
|
|
22261
|
+
*/
|
|
22262
|
+
this.VoiceClonedMarkFile = null;
|
|
22263
|
+
|
|
21381
22264
|
}
|
|
21382
22265
|
|
|
21383
22266
|
/**
|
|
@@ -21402,6 +22285,8 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
21402
22285
|
obj.deserialize(params.SubtitlePos)
|
|
21403
22286
|
this.SubtitlePos = obj;
|
|
21404
22287
|
}
|
|
22288
|
+
this.VoiceClonedVideo = 'VoiceClonedVideo' in params ? params.VoiceClonedVideo : null;
|
|
22289
|
+
this.VoiceClonedMarkFile = 'VoiceClonedMarkFile' in params ? params.VoiceClonedMarkFile : null;
|
|
21405
22290
|
|
|
21406
22291
|
}
|
|
21407
22292
|
}
|
|
@@ -22766,18 +23651,20 @@ class ActivityResult extends AbstractModel {
|
|
|
22766
23651
|
|
|
22767
23652
|
/**
|
|
22768
23653
|
* Atomic task type.
|
|
22769
|
-
<Li>Transcode: transcoding
|
|
22770
|
-
<Li>SampleSnapshot: sampled screenshot
|
|
22771
|
-
<Li>AnimatedGraphics:
|
|
22772
|
-
<Li>SnapshotByTimeOffset: time point screenshot
|
|
22773
|
-
<Li>ImageSprites:
|
|
22774
|
-
<Li>AdaptiveDynamicStreaming: adaptive bitrate
|
|
22775
|
-
<Li>AiContentReview: content
|
|
22776
|
-
<Li>AIRecognition: intelligent
|
|
22777
|
-
<Li>AIAnalysis:
|
|
22778
|
-
<li>AiQualityControl: media quality inspection
|
|
23654
|
+
<Li>Transcode: transcoding.</li>.
|
|
23655
|
+
<Li>SampleSnapshot: specifies sampled screenshot taking.</li>.
|
|
23656
|
+
<Li>AnimatedGraphics: specifies the animated image.</li>.
|
|
23657
|
+
<Li>SnapshotByTimeOffset: specifies time point screenshot taking.</li>.
|
|
23658
|
+
<Li>ImageSprites: specifies the sprite sheet.</li>.
|
|
23659
|
+
<Li>AdaptiveDynamicStreaming: adaptive bitrate streaming.</li>.
|
|
23660
|
+
<Li>AiContentReview: specifies content moderation.</li>.
|
|
23661
|
+
<Li>AIRecognition: intelligent identification.</li>.
|
|
23662
|
+
<Li>AIAnalysis: specifies ai analysis.</li>.
|
|
23663
|
+
<li>AiQualityControl: media quality inspection</li>
|
|
22779
23664
|
|
|
22780
23665
|
<Li>SmartSubtitles: smart subtitle</li>
|
|
23666
|
+
|
|
23667
|
+
<Li>SmartErase: smart erasure.</li>.
|
|
22781
23668
|
* @type {string || null}
|
|
22782
23669
|
*/
|
|
22783
23670
|
this.ActivityType = null;
|
|
@@ -23885,6 +24772,34 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
23885
24772
|
}
|
|
23886
24773
|
}
|
|
23887
24774
|
|
|
24775
|
+
/**
|
|
24776
|
+
* Intelligent translation task input type.
|
|
24777
|
+
* @class
|
|
24778
|
+
*/
|
|
24779
|
+
class AiAnalysisTaskDubbingInput extends AbstractModel {
|
|
24780
|
+
constructor(){
|
|
24781
|
+
super();
|
|
24782
|
+
|
|
24783
|
+
/**
|
|
24784
|
+
* Video translation template ID.
|
|
24785
|
+
* @type {number || null}
|
|
24786
|
+
*/
|
|
24787
|
+
this.Definition = null;
|
|
24788
|
+
|
|
24789
|
+
}
|
|
24790
|
+
|
|
24791
|
+
/**
|
|
24792
|
+
* @private
|
|
24793
|
+
*/
|
|
24794
|
+
deserialize(params) {
|
|
24795
|
+
if (!params) {
|
|
24796
|
+
return;
|
|
24797
|
+
}
|
|
24798
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
24799
|
+
|
|
24800
|
+
}
|
|
24801
|
+
}
|
|
24802
|
+
|
|
23888
24803
|
/**
|
|
23889
24804
|
* The canvas information of a video editing/compositing task.
|
|
23890
24805
|
* @class
|
|
@@ -24988,21 +25903,22 @@ class Activity extends AbstractModel {
|
|
|
24988
25903
|
super();
|
|
24989
25904
|
|
|
24990
25905
|
/**
|
|
24991
|
-
* Atomic task type
|
|
24992
|
-
<li>input:
|
|
24993
|
-
<li>output:
|
|
24994
|
-
<li>action-trans: transcoding
|
|
24995
|
-
<li>action-samplesnapshot: sampled screenshot
|
|
24996
|
-
<li>action-AIAnalysis: analysis
|
|
24997
|
-
<li>action-AIRecognition: recognition
|
|
24998
|
-
<li>action-aiReview: review
|
|
24999
|
-
<li>action-animated-graphics:
|
|
25000
|
-
<li>action-image-sprite:
|
|
25001
|
-
<li>action-snapshotByTimeOffset: time point screenshot
|
|
25002
|
-
<li>action-adaptive-substream: adaptive bitrate stream
|
|
25003
|
-
<li>action-AIQualityControl: media quality inspection
|
|
25004
|
-
<li>action-SmartSubtitles: smart
|
|
25005
|
-
<li>action-exec-rules: judgment rule
|
|
25906
|
+
* Atomic task type.
|
|
25907
|
+
<li>input: starting node.</li>.
|
|
25908
|
+
<li>output: termination node.</li>.
|
|
25909
|
+
<li>action-trans: specifies transcoding.</li>.
|
|
25910
|
+
<li>action-samplesnapshot: specifies sampled screenshot taking.</li>.
|
|
25911
|
+
<li>action-AIAnalysis: analysis.</li>.
|
|
25912
|
+
<li>action-AIRecognition: recognition.</li>.
|
|
25913
|
+
<li>action-aiReview: specifies the review action.</li>.
|
|
25914
|
+
<li>action-animated-graphics: specifies the animated image.</li>.
|
|
25915
|
+
<li>action-image-sprite: specifies the sprite sheet.</li>.
|
|
25916
|
+
<li>action-snapshotByTimeOffset: specifies time point screenshot taking.</li>.
|
|
25917
|
+
<li>action-adaptive-substream: specifies the adaptive bitrate stream.</li>.
|
|
25918
|
+
<li>action-AIQualityControl: media quality inspection.</li>.
|
|
25919
|
+
<li>action-SmartSubtitles: smart subtitling.</li>.
|
|
25920
|
+
<li>action-exec-rules: judgment rule.</li>.
|
|
25921
|
+
<li>action-SmartErase: smart erasure.</li>.
|
|
25006
25922
|
|
|
25007
25923
|
|
|
25008
25924
|
|
|
@@ -25784,14 +26700,15 @@ If not filled in, it is a relative path by default: {inputName}_adaptiveDynamicS
|
|
|
25784
26700
|
this.SegmentObjectName = null;
|
|
25785
26701
|
|
|
25786
26702
|
/**
|
|
25787
|
-
*
|
|
26703
|
+
* External subtitle feature specifies the subtitle file to be inserted.
|
|
25788
26704
|
Note: This field may return null, indicating that no valid value can be obtained.
|
|
25789
26705
|
* @type {Array.<AddOnSubtitle> || null}
|
|
25790
26706
|
*/
|
|
25791
26707
|
this.AddOnSubtitles = null;
|
|
25792
26708
|
|
|
25793
26709
|
/**
|
|
25794
|
-
* Drm information.
|
|
26710
|
+
* Specifies the Drm information.
|
|
26711
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
25795
26712
|
* @type {DrmInfo || null}
|
|
25796
26713
|
*/
|
|
25797
26714
|
this.DrmInfo = null;
|
|
@@ -25805,7 +26722,7 @@ PureAudio: audio-only.
|
|
|
25805
26722
|
this.DefinitionType = null;
|
|
25806
26723
|
|
|
25807
26724
|
/**
|
|
25808
|
-
*
|
|
26725
|
+
* Hard subtitle (suppression subtitle) feature, specify subtitles source, font size, position and other subtitle parameters.
|
|
25809
26726
|
Note: This field may return null, indicating that no valid value can be obtained.
|
|
25810
26727
|
* @type {SubtitleTemplate || null}
|
|
25811
26728
|
*/
|
|
@@ -26396,6 +27313,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
26396
27313
|
*/
|
|
26397
27314
|
this.LiveStreamProcessTask = null;
|
|
26398
27315
|
|
|
27316
|
+
/**
|
|
27317
|
+
* Extracts digital watermark task information. this field has a value only when TaskType is ExtractBlindWatermark.
|
|
27318
|
+
* @type {ExtractBlindWatermarkTask || null}
|
|
27319
|
+
*/
|
|
27320
|
+
this.ExtractBlindWatermarkTask = null;
|
|
27321
|
+
|
|
26399
27322
|
/**
|
|
26400
27323
|
* Event notification information of a task.
|
|
26401
27324
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
@@ -26436,7 +27359,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
26436
27359
|
|
|
26437
27360
|
/**
|
|
26438
27361
|
* The information of a live scheme. This parameter is valid only if `TaskType` is `LiveScheduleTask`.
|
|
26439
|
-
Note: This field may return
|
|
27362
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
26440
27363
|
* @type {LiveScheduleTask || null}
|
|
26441
27364
|
*/
|
|
26442
27365
|
this.LiveScheduleTask = null;
|
|
@@ -26480,6 +27403,12 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
26480
27403
|
this.LiveStreamProcessTask = obj;
|
|
26481
27404
|
}
|
|
26482
27405
|
|
|
27406
|
+
if (params.ExtractBlindWatermarkTask) {
|
|
27407
|
+
let obj = new ExtractBlindWatermarkTask();
|
|
27408
|
+
obj.deserialize(params.ExtractBlindWatermarkTask)
|
|
27409
|
+
this.ExtractBlindWatermarkTask = obj;
|
|
27410
|
+
}
|
|
27411
|
+
|
|
26483
27412
|
if (params.TaskNotifyConfig) {
|
|
26484
27413
|
let obj = new TaskNotifyConfig();
|
|
26485
27414
|
obj.deserialize(params.TaskNotifyConfig)
|
|
@@ -26507,80 +27436,43 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
26507
27436
|
}
|
|
26508
27437
|
|
|
26509
27438
|
/**
|
|
26510
|
-
*
|
|
27439
|
+
* Intelligent translation result type.
|
|
26511
27440
|
* @class
|
|
26512
27441
|
*/
|
|
26513
|
-
class
|
|
27442
|
+
class AiAnalysisTaskDubbingResult extends AbstractModel {
|
|
26514
27443
|
constructor(){
|
|
26515
27444
|
super();
|
|
26516
27445
|
|
|
26517
27446
|
/**
|
|
26518
|
-
*
|
|
26519
|
-
<li>FaceRecognition: face recognition.</li>
|
|
26520
|
-
<li>AsrWordsRecognition: speech keyword recognition.</li>
|
|
26521
|
-
<li>OcrWordsRecognition: text keyword recognition.</li>
|
|
26522
|
-
<li>AsrFullTextRecognition: full speech recognition.</li>
|
|
26523
|
-
<li>OcrFullTextRecognition: full text recognition.</li>
|
|
26524
|
-
<li>TransTextRecognition: speech translation.</li>
|
|
26525
|
-
|
|
26526
|
-
<li>ObjectRecognition: object recognition.</li>
|
|
26527
|
-
<li>TagRecognition: highlights marking.</li>
|
|
27447
|
+
* Task status, including PROCESSING, SUCCESS, and FAIL.
|
|
26528
27448
|
* @type {string || null}
|
|
26529
27449
|
*/
|
|
26530
|
-
this.
|
|
26531
|
-
|
|
26532
|
-
/**
|
|
26533
|
-
* Face recognition result, which is valid when `Type` is
|
|
26534
|
-
`FaceRecognition`.
|
|
26535
|
-
* @type {Array.<LiveStreamFaceRecognitionResult> || null}
|
|
26536
|
-
*/
|
|
26537
|
-
this.FaceRecognitionResultSet = null;
|
|
26538
|
-
|
|
26539
|
-
/**
|
|
26540
|
-
* Speech keyword recognition result, which is valid when `Type` is
|
|
26541
|
-
`AsrWordsRecognition`.
|
|
26542
|
-
* @type {Array.<LiveStreamAsrWordsRecognitionResult> || null}
|
|
26543
|
-
*/
|
|
26544
|
-
this.AsrWordsRecognitionResultSet = null;
|
|
26545
|
-
|
|
26546
|
-
/**
|
|
26547
|
-
* Text keyword recognition result, which is valid when `Type` is
|
|
26548
|
-
`OcrWordsRecognition`.
|
|
26549
|
-
* @type {Array.<LiveStreamOcrWordsRecognitionResult> || null}
|
|
26550
|
-
*/
|
|
26551
|
-
this.OcrWordsRecognitionResultSet = null;
|
|
26552
|
-
|
|
26553
|
-
/**
|
|
26554
|
-
* Full speech recognition result, which is valid when `Type` is
|
|
26555
|
-
`AsrFullTextRecognition`.
|
|
26556
|
-
* @type {Array.<LiveStreamAsrFullTextRecognitionResult> || null}
|
|
26557
|
-
*/
|
|
26558
|
-
this.AsrFullTextRecognitionResultSet = null;
|
|
27450
|
+
this.Status = null;
|
|
26559
27451
|
|
|
26560
27452
|
/**
|
|
26561
|
-
*
|
|
26562
|
-
|
|
26563
|
-
* @type {Array.<LiveStreamOcrFullTextRecognitionResult> || null}
|
|
27453
|
+
* Error code. `0`: Task successful. Other values: Task failed.
|
|
27454
|
+
* @type {number || null}
|
|
26564
27455
|
*/
|
|
26565
|
-
this.
|
|
27456
|
+
this.ErrCode = null;
|
|
26566
27457
|
|
|
26567
27458
|
/**
|
|
26568
|
-
*
|
|
26569
|
-
* @type {
|
|
27459
|
+
* Error message.
|
|
27460
|
+
* @type {string || null}
|
|
26570
27461
|
*/
|
|
26571
|
-
this.
|
|
27462
|
+
this.Message = null;
|
|
26572
27463
|
|
|
26573
27464
|
/**
|
|
26574
|
-
*
|
|
26575
|
-
* @type {
|
|
27465
|
+
* Describes the task input for intelligent translation.
|
|
27466
|
+
* @type {AiAnalysisTaskDubbingInput || null}
|
|
26576
27467
|
*/
|
|
26577
|
-
this.
|
|
27468
|
+
this.Input = null;
|
|
26578
27469
|
|
|
26579
27470
|
/**
|
|
26580
|
-
*
|
|
26581
|
-
|
|
27471
|
+
* Describes the task output of intelligent translation.
|
|
27472
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
27473
|
+
* @type {AiAnalysisTaskDubbingOutput || null}
|
|
26582
27474
|
*/
|
|
26583
|
-
this.
|
|
27475
|
+
this.Output = null;
|
|
26584
27476
|
|
|
26585
27477
|
}
|
|
26586
27478
|
|
|
@@ -26591,78 +27483,20 @@ class LiveStreamAiRecognitionResultItem extends AbstractModel {
|
|
|
26591
27483
|
if (!params) {
|
|
26592
27484
|
return;
|
|
26593
27485
|
}
|
|
26594
|
-
this.
|
|
26595
|
-
|
|
26596
|
-
|
|
26597
|
-
this.FaceRecognitionResultSet = new Array();
|
|
26598
|
-
for (let z in params.FaceRecognitionResultSet) {
|
|
26599
|
-
let obj = new LiveStreamFaceRecognitionResult();
|
|
26600
|
-
obj.deserialize(params.FaceRecognitionResultSet[z]);
|
|
26601
|
-
this.FaceRecognitionResultSet.push(obj);
|
|
26602
|
-
}
|
|
26603
|
-
}
|
|
26604
|
-
|
|
26605
|
-
if (params.AsrWordsRecognitionResultSet) {
|
|
26606
|
-
this.AsrWordsRecognitionResultSet = new Array();
|
|
26607
|
-
for (let z in params.AsrWordsRecognitionResultSet) {
|
|
26608
|
-
let obj = new LiveStreamAsrWordsRecognitionResult();
|
|
26609
|
-
obj.deserialize(params.AsrWordsRecognitionResultSet[z]);
|
|
26610
|
-
this.AsrWordsRecognitionResultSet.push(obj);
|
|
26611
|
-
}
|
|
26612
|
-
}
|
|
26613
|
-
|
|
26614
|
-
if (params.OcrWordsRecognitionResultSet) {
|
|
26615
|
-
this.OcrWordsRecognitionResultSet = new Array();
|
|
26616
|
-
for (let z in params.OcrWordsRecognitionResultSet) {
|
|
26617
|
-
let obj = new LiveStreamOcrWordsRecognitionResult();
|
|
26618
|
-
obj.deserialize(params.OcrWordsRecognitionResultSet[z]);
|
|
26619
|
-
this.OcrWordsRecognitionResultSet.push(obj);
|
|
26620
|
-
}
|
|
26621
|
-
}
|
|
26622
|
-
|
|
26623
|
-
if (params.AsrFullTextRecognitionResultSet) {
|
|
26624
|
-
this.AsrFullTextRecognitionResultSet = new Array();
|
|
26625
|
-
for (let z in params.AsrFullTextRecognitionResultSet) {
|
|
26626
|
-
let obj = new LiveStreamAsrFullTextRecognitionResult();
|
|
26627
|
-
obj.deserialize(params.AsrFullTextRecognitionResultSet[z]);
|
|
26628
|
-
this.AsrFullTextRecognitionResultSet.push(obj);
|
|
26629
|
-
}
|
|
26630
|
-
}
|
|
26631
|
-
|
|
26632
|
-
if (params.OcrFullTextRecognitionResultSet) {
|
|
26633
|
-
this.OcrFullTextRecognitionResultSet = new Array();
|
|
26634
|
-
for (let z in params.OcrFullTextRecognitionResultSet) {
|
|
26635
|
-
let obj = new LiveStreamOcrFullTextRecognitionResult();
|
|
26636
|
-
obj.deserialize(params.OcrFullTextRecognitionResultSet[z]);
|
|
26637
|
-
this.OcrFullTextRecognitionResultSet.push(obj);
|
|
26638
|
-
}
|
|
26639
|
-
}
|
|
26640
|
-
|
|
26641
|
-
if (params.TransTextRecognitionResultSet) {
|
|
26642
|
-
this.TransTextRecognitionResultSet = new Array();
|
|
26643
|
-
for (let z in params.TransTextRecognitionResultSet) {
|
|
26644
|
-
let obj = new LiveStreamTransTextRecognitionResult();
|
|
26645
|
-
obj.deserialize(params.TransTextRecognitionResultSet[z]);
|
|
26646
|
-
this.TransTextRecognitionResultSet.push(obj);
|
|
26647
|
-
}
|
|
26648
|
-
}
|
|
27486
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
27487
|
+
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
27488
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
26649
27489
|
|
|
26650
|
-
if (params.
|
|
26651
|
-
|
|
26652
|
-
|
|
26653
|
-
|
|
26654
|
-
obj.deserialize(params.ObjectRecognitionResultSet[z]);
|
|
26655
|
-
this.ObjectRecognitionResultSet.push(obj);
|
|
26656
|
-
}
|
|
27490
|
+
if (params.Input) {
|
|
27491
|
+
let obj = new AiAnalysisTaskDubbingInput();
|
|
27492
|
+
obj.deserialize(params.Input)
|
|
27493
|
+
this.Input = obj;
|
|
26657
27494
|
}
|
|
26658
27495
|
|
|
26659
|
-
if (params.
|
|
26660
|
-
|
|
26661
|
-
|
|
26662
|
-
|
|
26663
|
-
obj.deserialize(params.TagRecognitionResultSet[z]);
|
|
26664
|
-
this.TagRecognitionResultSet.push(obj);
|
|
26665
|
-
}
|
|
27496
|
+
if (params.Output) {
|
|
27497
|
+
let obj = new AiAnalysisTaskDubbingOutput();
|
|
27498
|
+
obj.deserialize(params.Output)
|
|
27499
|
+
this.Output = obj;
|
|
26666
27500
|
}
|
|
26667
27501
|
|
|
26668
27502
|
}
|
|
@@ -27616,6 +28450,152 @@ class LiveStreamAiReviewResultItem extends AbstractModel {
|
|
|
27616
28450
|
}
|
|
27617
28451
|
}
|
|
27618
28452
|
|
|
28453
|
+
/**
|
|
28454
|
+
* Intelligent erasure template subtitle configuration.
|
|
28455
|
+
* @class
|
|
28456
|
+
*/
|
|
28457
|
+
class SmartEraseSubtitleConfig extends AbstractModel {
|
|
28458
|
+
constructor(){
|
|
28459
|
+
super();
|
|
28460
|
+
|
|
28461
|
+
/**
|
|
28462
|
+
* Specifies the subtitle erasure method.
|
|
28463
|
+
**Automatic erasing:** automatically identifies subtitle text content in videos through AI models and performs seamless erasure to generate new videos. frame interference and unique subtitle styles may cause certain missed or incorrect erasures, which can be handled through specified area erasure.
|
|
28464
|
+
When using automatic erasure, if AutoAreas is not specified, the default region (lower middle of the frame) will be erased automatically. if AutoAreas is specified, it will change to erase the designated area.
|
|
28465
|
+
**Specified area erasing:** if your subtitle position is fixed, directly specify the erasure area to decrease the chance of removal omission to the maximum extent.
|
|
28466
|
+
When your choice is specified area erasure, please import at least one designated region in CustomAreas.
|
|
28467
|
+
-Automated removal.
|
|
28468
|
+
- specifies the custom specified area erasure.
|
|
28469
|
+
|
|
28470
|
+
* @type {string || null}
|
|
28471
|
+
*/
|
|
28472
|
+
this.SubtitleEraseMethod = null;
|
|
28473
|
+
|
|
28474
|
+
/**
|
|
28475
|
+
* Subtitle erasure model.
|
|
28476
|
+
**Standard version (recommend):** if your subtitle style is standard, normally recommend choose this version for better effectiveness with seamless detail.
|
|
28477
|
+
**Regional version:** if your subtitles have special styles such as italics, shadows, or motion effects, we recommend choosing the regional version for larger removal area, though the detail effect is not as good as the standard version.
|
|
28478
|
+
-Specifies the standard model.
|
|
28479
|
+
-area. specifies the regional model.
|
|
28480
|
+
* @type {string || null}
|
|
28481
|
+
*/
|
|
28482
|
+
this.SubtitleModel = null;
|
|
28483
|
+
|
|
28484
|
+
/**
|
|
28485
|
+
* Whether OCR subtitle extraction is enabled. default value: OFF.
|
|
28486
|
+
Supports enabling OCR subtitle extraction only when SubtitleEraseMethod is set to auto. when enabled, it identifies the longest and most stable text area within the region as the subtitle area, then performs text extraction and removal.
|
|
28487
|
+
-ON: enable.
|
|
28488
|
+
-OFF. specifies the disabled state.
|
|
28489
|
+
* @type {string || null}
|
|
28490
|
+
*/
|
|
28491
|
+
this.OcrSwitch = null;
|
|
28492
|
+
|
|
28493
|
+
/**
|
|
28494
|
+
* Subtitle language, for OCR guidance, default value zh_en. this parameter is valid only when OcrSwitch is ON.
|
|
28495
|
+
-Chinese and english.
|
|
28496
|
+
-multi other.
|
|
28497
|
+
Other supported languages:.
|
|
28498
|
+
Chinese, english, japanese, korean, spanish, french, german, portuguese, vietnamese, malay, russian, italian, dutch, swedish, finnish, danish, norwegian, hungarian, thai, hindi, arabic, indian-bengali, indian-gujarati, indian-kannada, indian-malayalam, indian-tamil, indian-telugu, slovenian, polish, catalan, bosnian, czech, estonian, croatian, punjabi, marathi, azerbaijani, indonesian, luxembourgish, lithuanian, latvian, maltese, slovak, turkish, kazakh, greek, irish, belarusian, khmer, tagalog, pashto, persian, tajik.
|
|
28499
|
+
|
|
28500
|
+
|
|
28501
|
+
* @type {string || null}
|
|
28502
|
+
*/
|
|
28503
|
+
this.SubtitleLang = null;
|
|
28504
|
+
|
|
28505
|
+
/**
|
|
28506
|
+
* Specifies the subtitle file format. default value: vtt. this parameter is valid only when OcrSwitch is set to ON.
|
|
28507
|
+
-srt format.
|
|
28508
|
+
-vtt: WebVTT format.
|
|
28509
|
+
* @type {string || null}
|
|
28510
|
+
*/
|
|
28511
|
+
this.SubtitleFormat = null;
|
|
28512
|
+
|
|
28513
|
+
/**
|
|
28514
|
+
* Specifies whether to enable subtitle translation. default value: OFF. this parameter is valid only when OcrSwitch is set to ON.
|
|
28515
|
+
-ON: enable.
|
|
28516
|
+
-OFF. specifies the disabled state.
|
|
28517
|
+
* @type {string || null}
|
|
28518
|
+
*/
|
|
28519
|
+
this.TransSwitch = null;
|
|
28520
|
+
|
|
28521
|
+
/**
|
|
28522
|
+
* Subtitle target language. default value: en. this parameter is valid only when TransSwitch is set to ON.
|
|
28523
|
+
Supported languages:.
|
|
28524
|
+
Simplified chinese.
|
|
28525
|
+
Specifies the language. valid values: en (english).
|
|
28526
|
+
Ja: japanese.
|
|
28527
|
+
Ko: korean.
|
|
28528
|
+
Fr: french.
|
|
28529
|
+
es: spanish.
|
|
28530
|
+
It: italian.
|
|
28531
|
+
de: german.
|
|
28532
|
+
tr: turkish.
|
|
28533
|
+
Ru: russian.
|
|
28534
|
+
pt: portuguese.
|
|
28535
|
+
Vi: vietnamese.
|
|
28536
|
+
id: indonesian.
|
|
28537
|
+
ms: malay.
|
|
28538
|
+
Th: thai.
|
|
28539
|
+
Ar: arabic.
|
|
28540
|
+
hi: Hindi
|
|
28541
|
+
* @type {string || null}
|
|
28542
|
+
*/
|
|
28543
|
+
this.TransDstLang = null;
|
|
28544
|
+
|
|
28545
|
+
/**
|
|
28546
|
+
* Specifies automatic removal of a custom region.
|
|
28547
|
+
Specifies the use of an AI model to automatically detect and erase existing targets in the specified region.
|
|
28548
|
+
Note that this parameter will not take effect when the removal method is custom. for template modification, input [] to clean up the region. the template region information remains unchanged if not imported.
|
|
28549
|
+
* @type {Array.<EraseArea> || null}
|
|
28550
|
+
*/
|
|
28551
|
+
this.AutoAreas = null;
|
|
28552
|
+
|
|
28553
|
+
/**
|
|
28554
|
+
* Specifies erasure of a custom region.
|
|
28555
|
+
Detects and directly performs removal within a specified time range for the selected region.
|
|
28556
|
+
Note: when modifying the template, pass [] to clear the region. the template region information remains unchanged if not passed.
|
|
28557
|
+
* @type {Array.<EraseTimeArea> || null}
|
|
28558
|
+
*/
|
|
28559
|
+
this.CustomAreas = null;
|
|
28560
|
+
|
|
28561
|
+
}
|
|
28562
|
+
|
|
28563
|
+
/**
|
|
28564
|
+
* @private
|
|
28565
|
+
*/
|
|
28566
|
+
deserialize(params) {
|
|
28567
|
+
if (!params) {
|
|
28568
|
+
return;
|
|
28569
|
+
}
|
|
28570
|
+
this.SubtitleEraseMethod = 'SubtitleEraseMethod' in params ? params.SubtitleEraseMethod : null;
|
|
28571
|
+
this.SubtitleModel = 'SubtitleModel' in params ? params.SubtitleModel : null;
|
|
28572
|
+
this.OcrSwitch = 'OcrSwitch' in params ? params.OcrSwitch : null;
|
|
28573
|
+
this.SubtitleLang = 'SubtitleLang' in params ? params.SubtitleLang : null;
|
|
28574
|
+
this.SubtitleFormat = 'SubtitleFormat' in params ? params.SubtitleFormat : null;
|
|
28575
|
+
this.TransSwitch = 'TransSwitch' in params ? params.TransSwitch : null;
|
|
28576
|
+
this.TransDstLang = 'TransDstLang' in params ? params.TransDstLang : null;
|
|
28577
|
+
|
|
28578
|
+
if (params.AutoAreas) {
|
|
28579
|
+
this.AutoAreas = new Array();
|
|
28580
|
+
for (let z in params.AutoAreas) {
|
|
28581
|
+
let obj = new EraseArea();
|
|
28582
|
+
obj.deserialize(params.AutoAreas[z]);
|
|
28583
|
+
this.AutoAreas.push(obj);
|
|
28584
|
+
}
|
|
28585
|
+
}
|
|
28586
|
+
|
|
28587
|
+
if (params.CustomAreas) {
|
|
28588
|
+
this.CustomAreas = new Array();
|
|
28589
|
+
for (let z in params.CustomAreas) {
|
|
28590
|
+
let obj = new EraseTimeArea();
|
|
28591
|
+
obj.deserialize(params.CustomAreas[z]);
|
|
28592
|
+
this.CustomAreas.push(obj);
|
|
28593
|
+
}
|
|
28594
|
+
}
|
|
28595
|
+
|
|
28596
|
+
}
|
|
28597
|
+
}
|
|
28598
|
+
|
|
27619
28599
|
/**
|
|
27620
28600
|
* DeleteLiveRecordTemplate response structure.
|
|
27621
28601
|
* @class
|
|
@@ -29187,37 +30167,40 @@ Length limit: 64 characters.
|
|
|
29187
30167
|
this.Name = null;
|
|
29188
30168
|
|
|
29189
30169
|
/**
|
|
29190
|
-
*
|
|
29191
|
-
|
|
29192
|
-
zh: Simplified Chinese
|
|
29193
|
-
en:
|
|
29194
|
-
|
|
29195
|
-
|
|
29196
|
-
zh-PY: Chinese
|
|
29197
|
-
zh-medical: Medical Chinese
|
|
29198
|
-
yue: Cantonese
|
|
29199
|
-
|
|
29200
|
-
ms: Malay
|
|
29201
|
-
id: Indonesian
|
|
29202
|
-
fil: Filipino
|
|
29203
|
-
th: Thai
|
|
29204
|
-
pt: Portuguese
|
|
29205
|
-
tr: Turkish
|
|
29206
|
-
ar: Arabic
|
|
29207
|
-
es: Spanish
|
|
30170
|
+
* Video source language for intelligent caption.
|
|
30171
|
+
Valid values:
|
|
30172
|
+
zh: Simplified Chinese.
|
|
30173
|
+
en: Eenglish.
|
|
30174
|
+
Ja: Japanese.
|
|
30175
|
+
Ko: Korean.
|
|
30176
|
+
zh-PY: Simplified Chinese, English and Cantonese.
|
|
30177
|
+
zh-medical: Medical Chinese.
|
|
30178
|
+
yue: Cantonese.
|
|
30179
|
+
Vi: Vietnamese.
|
|
30180
|
+
ms: Malay.
|
|
30181
|
+
id: Indonesian.
|
|
30182
|
+
fil: Filipino.
|
|
30183
|
+
th: Thai.
|
|
30184
|
+
pt: Portuguese.
|
|
30185
|
+
tr: Turkish.
|
|
30186
|
+
ar: Arabic.
|
|
30187
|
+
es: Spanish.
|
|
29208
30188
|
hi: Hindi
|
|
29209
|
-
|
|
29210
|
-
de: German
|
|
30189
|
+
Fr: French.
|
|
30190
|
+
de: German.
|
|
29211
30191
|
zh-dialect: Chinese dialect
|
|
30192
|
+
zh_en: Simplified Chinese and English
|
|
30193
|
+
prime_zh: Simplified Chinese, Chinese Dialect and English.
|
|
29212
30194
|
* @type {string || null}
|
|
29213
30195
|
*/
|
|
29214
30196
|
this.VideoSrcLanguage = null;
|
|
29215
30197
|
|
|
29216
30198
|
/**
|
|
29217
30199
|
* Smart subtitle language type.
|
|
29218
|
-
0: source
|
|
30200
|
+
0: source language
|
|
30201
|
+
1: target language
|
|
29219
30202
|
2: source language + target language
|
|
29220
|
-
The value can only be 0 when TranslateSwitch is set to OFF.The value can only be 1 or 2 when TranslateSwitch is set to ON.
|
|
30203
|
+
The value can only be 0 when TranslateSwitch is set to OFF. The value can only be 1 or 2 when TranslateSwitch is set to ON.
|
|
29221
30204
|
* @type {number || null}
|
|
29222
30205
|
*/
|
|
29223
30206
|
this.SubtitleType = null;
|
|
@@ -29230,8 +30213,9 @@ Length limit: 256 characters.
|
|
|
29230
30213
|
this.Comment = null;
|
|
29231
30214
|
|
|
29232
30215
|
/**
|
|
29233
|
-
*
|
|
29234
|
-
vtt: WebVTT format
|
|
30216
|
+
* Intelligent subtitle file format.
|
|
30217
|
+
vtt: WebVTT format.
|
|
30218
|
+
srt: SRT format.
|
|
29235
30219
|
If this field is left blank, no subtitle file will be generated.
|
|
29236
30220
|
* @type {string || null}
|
|
29237
30221
|
*/
|
|
@@ -31457,6 +32441,34 @@ class AiRecognitionTaskObjectResult extends AbstractModel {
|
|
|
31457
32441
|
}
|
|
31458
32442
|
}
|
|
31459
32443
|
|
|
32444
|
+
/**
|
|
32445
|
+
* DisableSchedule request structure.
|
|
32446
|
+
* @class
|
|
32447
|
+
*/
|
|
32448
|
+
class DisableScheduleRequest extends AbstractModel {
|
|
32449
|
+
constructor(){
|
|
32450
|
+
super();
|
|
32451
|
+
|
|
32452
|
+
/**
|
|
32453
|
+
* The scheme ID.
|
|
32454
|
+
* @type {number || null}
|
|
32455
|
+
*/
|
|
32456
|
+
this.ScheduleId = null;
|
|
32457
|
+
|
|
32458
|
+
}
|
|
32459
|
+
|
|
32460
|
+
/**
|
|
32461
|
+
* @private
|
|
32462
|
+
*/
|
|
32463
|
+
deserialize(params) {
|
|
32464
|
+
if (!params) {
|
|
32465
|
+
return;
|
|
32466
|
+
}
|
|
32467
|
+
this.ScheduleId = 'ScheduleId' in params ? params.ScheduleId : null;
|
|
32468
|
+
|
|
32469
|
+
}
|
|
32470
|
+
}
|
|
32471
|
+
|
|
31460
32472
|
/**
|
|
31461
32473
|
* DescribeAIAnalysisTemplates response structure.
|
|
31462
32474
|
* @class
|
|
@@ -31935,6 +32947,13 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
31935
32947
|
*/
|
|
31936
32948
|
this.SmartSubtitlesTaskResult = null;
|
|
31937
32949
|
|
|
32950
|
+
/**
|
|
32951
|
+
* Execution result of the smart erasure task.
|
|
32952
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
32953
|
+
* @type {SmartEraseTaskResult || null}
|
|
32954
|
+
*/
|
|
32955
|
+
this.SmartEraseTaskResult = null;
|
|
32956
|
+
|
|
31938
32957
|
}
|
|
31939
32958
|
|
|
31940
32959
|
/**
|
|
@@ -32012,6 +33031,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
32012
33031
|
}
|
|
32013
33032
|
}
|
|
32014
33033
|
|
|
33034
|
+
if (params.SmartEraseTaskResult) {
|
|
33035
|
+
let obj = new SmartEraseTaskResult();
|
|
33036
|
+
obj.deserialize(params.SmartEraseTaskResult)
|
|
33037
|
+
this.SmartEraseTaskResult = obj;
|
|
33038
|
+
}
|
|
33039
|
+
|
|
32015
33040
|
}
|
|
32016
33041
|
}
|
|
32017
33042
|
|
|
@@ -32735,35 +33760,39 @@ Length limit: 256 characters.
|
|
|
32735
33760
|
this.Comment = null;
|
|
32736
33761
|
|
|
32737
33762
|
/**
|
|
32738
|
-
*
|
|
32739
|
-
|
|
32740
|
-
zh: Simplified Chinese
|
|
32741
|
-
en:
|
|
32742
|
-
|
|
32743
|
-
|
|
32744
|
-
zh-PY: Chinese
|
|
32745
|
-
zh-medical: Medical Chinese
|
|
32746
|
-
yue: Cantonese
|
|
32747
|
-
|
|
32748
|
-
ms: Malay
|
|
32749
|
-
id: Indonesian
|
|
32750
|
-
fil: Filipino
|
|
32751
|
-
th: Thai
|
|
32752
|
-
pt: Portuguese
|
|
32753
|
-
tr: Turkish
|
|
32754
|
-
ar: Arabic
|
|
32755
|
-
es: Spanish
|
|
33763
|
+
* Video source language for intelligent caption.
|
|
33764
|
+
Valid values:
|
|
33765
|
+
zh: Simplified Chinese.
|
|
33766
|
+
en: Eenglish.
|
|
33767
|
+
Ja: Japanese.
|
|
33768
|
+
Ko: Korean.
|
|
33769
|
+
zh-PY: Simplified Chinese, English and Cantonese.
|
|
33770
|
+
zh-medical: Medical Chinese.
|
|
33771
|
+
yue: Cantonese.
|
|
33772
|
+
Vi: Vietnamese.
|
|
33773
|
+
ms: Malay.
|
|
33774
|
+
id: Indonesian.
|
|
33775
|
+
fil: Filipino.
|
|
33776
|
+
th: Thai.
|
|
33777
|
+
pt: Portuguese.
|
|
33778
|
+
tr: Turkish.
|
|
33779
|
+
ar: Arabic.
|
|
33780
|
+
es: Spanish.
|
|
32756
33781
|
hi: Hindi
|
|
32757
|
-
|
|
32758
|
-
de: German
|
|
33782
|
+
Fr: French.
|
|
33783
|
+
de: German.
|
|
32759
33784
|
zh-dialect: Chinese dialect
|
|
33785
|
+
zh_en: Simplified Chinese and English
|
|
33786
|
+
prime_zh: Simplified Chinese, Chinese Dialect and English.
|
|
33787
|
+
|
|
32760
33788
|
* @type {string || null}
|
|
32761
33789
|
*/
|
|
32762
33790
|
this.VideoSrcLanguage = null;
|
|
32763
33791
|
|
|
32764
33792
|
/**
|
|
32765
|
-
*
|
|
32766
|
-
vtt: WebVTT format
|
|
33793
|
+
* Intelligent subtitle file format.
|
|
33794
|
+
vtt: WebVTT format.
|
|
33795
|
+
srt: SRT format.
|
|
32767
33796
|
If this field is left blank, no subtitle file will be generated.
|
|
32768
33797
|
* @type {string || null}
|
|
32769
33798
|
*/
|
|
@@ -32771,9 +33800,10 @@ If this field is left blank, no subtitle file will be generated.
|
|
|
32771
33800
|
|
|
32772
33801
|
/**
|
|
32773
33802
|
* Smart subtitle language type.
|
|
32774
|
-
0: source
|
|
33803
|
+
0: source language
|
|
33804
|
+
1: target language
|
|
32775
33805
|
2: source language + target language
|
|
32776
|
-
The value can only be 0 when TranslateSwitch is set to OFF.The value can only be 1 or 2 when TranslateSwitch is set to ON.
|
|
33806
|
+
The value can only be 0 when TranslateSwitch is set to OFF. The value can only be 1 or 2 when TranslateSwitch is set to ON.
|
|
32777
33807
|
* @type {number || null}
|
|
32778
33808
|
*/
|
|
32779
33809
|
this.SubtitleType = null;
|
|
@@ -33126,6 +34156,13 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
33126
34156
|
*/
|
|
33127
34157
|
this.SmartSubtitlesTask = null;
|
|
33128
34158
|
|
|
34159
|
+
/**
|
|
34160
|
+
* Smart erase task output.
|
|
34161
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
34162
|
+
* @type {SmartEraseTaskResult || null}
|
|
34163
|
+
*/
|
|
34164
|
+
this.SmartEraseTask = null;
|
|
34165
|
+
|
|
33129
34166
|
}
|
|
33130
34167
|
|
|
33131
34168
|
/**
|
|
@@ -33208,6 +34245,111 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
33208
34245
|
this.SmartSubtitlesTask = obj;
|
|
33209
34246
|
}
|
|
33210
34247
|
|
|
34248
|
+
if (params.SmartEraseTask) {
|
|
34249
|
+
let obj = new SmartEraseTaskResult();
|
|
34250
|
+
obj.deserialize(params.SmartEraseTask)
|
|
34251
|
+
this.SmartEraseTask = obj;
|
|
34252
|
+
}
|
|
34253
|
+
|
|
34254
|
+
}
|
|
34255
|
+
}
|
|
34256
|
+
|
|
34257
|
+
/**
|
|
34258
|
+
* The output of a live scheme subtask.
|
|
34259
|
+
* @class
|
|
34260
|
+
*/
|
|
34261
|
+
class LiveActivityResItem extends AbstractModel {
|
|
34262
|
+
constructor(){
|
|
34263
|
+
super();
|
|
34264
|
+
|
|
34265
|
+
/**
|
|
34266
|
+
* The output of a live recording task.
|
|
34267
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
34268
|
+
* @type {LiveScheduleLiveRecordTaskResult || null}
|
|
34269
|
+
*/
|
|
34270
|
+
this.LiveRecordTask = null;
|
|
34271
|
+
|
|
34272
|
+
/**
|
|
34273
|
+
* Media quality inspection task output.
|
|
34274
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
34275
|
+
* @type {ScheduleQualityControlTaskResult || null}
|
|
34276
|
+
*/
|
|
34277
|
+
this.LiveQualityControlTask = null;
|
|
34278
|
+
|
|
34279
|
+
}
|
|
34280
|
+
|
|
34281
|
+
/**
|
|
34282
|
+
* @private
|
|
34283
|
+
*/
|
|
34284
|
+
deserialize(params) {
|
|
34285
|
+
if (!params) {
|
|
34286
|
+
return;
|
|
34287
|
+
}
|
|
34288
|
+
|
|
34289
|
+
if (params.LiveRecordTask) {
|
|
34290
|
+
let obj = new LiveScheduleLiveRecordTaskResult();
|
|
34291
|
+
obj.deserialize(params.LiveRecordTask)
|
|
34292
|
+
this.LiveRecordTask = obj;
|
|
34293
|
+
}
|
|
34294
|
+
|
|
34295
|
+
if (params.LiveQualityControlTask) {
|
|
34296
|
+
let obj = new ScheduleQualityControlTaskResult();
|
|
34297
|
+
obj.deserialize(params.LiveQualityControlTask)
|
|
34298
|
+
this.LiveQualityControlTask = obj;
|
|
34299
|
+
}
|
|
34300
|
+
|
|
34301
|
+
}
|
|
34302
|
+
}
|
|
34303
|
+
|
|
34304
|
+
/**
|
|
34305
|
+
* Smart Erase, specifies the region configuration.
|
|
34306
|
+
Erase the designated region directly within a specified period.
|
|
34307
|
+
When both BeginMs and EndMs are set to 0, directly perform removal of the designated region in the entire video.
|
|
34308
|
+
* @class
|
|
34309
|
+
*/
|
|
34310
|
+
class EraseTimeArea extends AbstractModel {
|
|
34311
|
+
constructor(){
|
|
34312
|
+
super();
|
|
34313
|
+
|
|
34314
|
+
/**
|
|
34315
|
+
* Start time, in ms.
|
|
34316
|
+
* @type {number || null}
|
|
34317
|
+
*/
|
|
34318
|
+
this.BeginMs = null;
|
|
34319
|
+
|
|
34320
|
+
/**
|
|
34321
|
+
* End time, unit: ms.
|
|
34322
|
+
* @type {number || null}
|
|
34323
|
+
*/
|
|
34324
|
+
this.EndMs = null;
|
|
34325
|
+
|
|
34326
|
+
/**
|
|
34327
|
+
* Erases the domain list within the period.
|
|
34328
|
+
* @type {Array.<EraseArea> || null}
|
|
34329
|
+
*/
|
|
34330
|
+
this.Areas = null;
|
|
34331
|
+
|
|
34332
|
+
}
|
|
34333
|
+
|
|
34334
|
+
/**
|
|
34335
|
+
* @private
|
|
34336
|
+
*/
|
|
34337
|
+
deserialize(params) {
|
|
34338
|
+
if (!params) {
|
|
34339
|
+
return;
|
|
34340
|
+
}
|
|
34341
|
+
this.BeginMs = 'BeginMs' in params ? params.BeginMs : null;
|
|
34342
|
+
this.EndMs = 'EndMs' in params ? params.EndMs : null;
|
|
34343
|
+
|
|
34344
|
+
if (params.Areas) {
|
|
34345
|
+
this.Areas = new Array();
|
|
34346
|
+
for (let z in params.Areas) {
|
|
34347
|
+
let obj = new EraseArea();
|
|
34348
|
+
obj.deserialize(params.Areas[z]);
|
|
34349
|
+
this.Areas.push(obj);
|
|
34350
|
+
}
|
|
34351
|
+
}
|
|
34352
|
+
|
|
33211
34353
|
}
|
|
33212
34354
|
}
|
|
33213
34355
|
|
|
@@ -35063,7 +36205,6 @@ module.exports = {
|
|
|
35063
36205
|
ManageTaskResponse: ManageTaskResponse,
|
|
35064
36206
|
DeleteWorkflowRequest: DeleteWorkflowRequest,
|
|
35065
36207
|
AwsS3FileUploadTrigger: AwsS3FileUploadTrigger,
|
|
35066
|
-
AiAnalysisTaskCoverOutput: AiAnalysisTaskCoverOutput,
|
|
35067
36208
|
MediaSnapshotByTimeOffsetItem: MediaSnapshotByTimeOffsetItem,
|
|
35068
36209
|
NumberFormat: NumberFormat,
|
|
35069
36210
|
ModifySampleSnapshotTemplateRequest: ModifySampleSnapshotTemplateRequest,
|
|
@@ -35076,6 +36217,7 @@ module.exports = {
|
|
|
35076
36217
|
DescribeAsrHotwordsRequest: DescribeAsrHotwordsRequest,
|
|
35077
36218
|
AudioTrackChannelInfo: AudioTrackChannelInfo,
|
|
35078
36219
|
DiagnoseResult: DiagnoseResult,
|
|
36220
|
+
SmartEraseTaskInput: SmartEraseTaskInput,
|
|
35079
36221
|
RawWatermarkParameter: RawWatermarkParameter,
|
|
35080
36222
|
AiReviewTaskPoliticalOcrResult: AiReviewTaskPoliticalOcrResult,
|
|
35081
36223
|
AiSampleWord: AiSampleWord,
|
|
@@ -35091,7 +36233,6 @@ module.exports = {
|
|
|
35091
36233
|
ModifyContentReviewTemplateResponse: ModifyContentReviewTemplateResponse,
|
|
35092
36234
|
ModifyScheduleRequest: ModifyScheduleRequest,
|
|
35093
36235
|
MediaMetaData: MediaMetaData,
|
|
35094
|
-
DescribePersonSamplesRequest: DescribePersonSamplesRequest,
|
|
35095
36236
|
ClassificationConfigureInfo: ClassificationConfigureInfo,
|
|
35096
36237
|
MediaAiAnalysisClassificationItem: MediaAiAnalysisClassificationItem,
|
|
35097
36238
|
ModifyWordSampleResponse: ModifyWordSampleResponse,
|
|
@@ -35100,6 +36241,7 @@ module.exports = {
|
|
|
35100
36241
|
DeletePersonSampleRequest: DeletePersonSampleRequest,
|
|
35101
36242
|
AiRecognitionTaskAsrWordsSegmentItem: AiRecognitionTaskAsrWordsSegmentItem,
|
|
35102
36243
|
ParseLiveStreamProcessNotificationResponse: ParseLiveStreamProcessNotificationResponse,
|
|
36244
|
+
SmartEraseTaskResult: SmartEraseTaskResult,
|
|
35103
36245
|
AiRecognitionTaskInput: AiRecognitionTaskInput,
|
|
35104
36246
|
AiAnalysisTaskFrameTagResult: AiAnalysisTaskFrameTagResult,
|
|
35105
36247
|
ComposeMediaConfig: ComposeMediaConfig,
|
|
@@ -35165,7 +36307,7 @@ module.exports = {
|
|
|
35165
36307
|
ImageProcessTaskOutput: ImageProcessTaskOutput,
|
|
35166
36308
|
ComposeTargetInfo: ComposeTargetInfo,
|
|
35167
36309
|
MediaProcessTaskInput: MediaProcessTaskInput,
|
|
35168
|
-
|
|
36310
|
+
ExtractBlindWatermarkTask: ExtractBlindWatermarkTask,
|
|
35169
36311
|
AiAnalysisTaskHorizontalToVerticalResult: AiAnalysisTaskHorizontalToVerticalResult,
|
|
35170
36312
|
CosOutputStorage: CosOutputStorage,
|
|
35171
36313
|
MediaProcessTaskAnimatedGraphicResult: MediaProcessTaskAnimatedGraphicResult,
|
|
@@ -35176,6 +36318,7 @@ module.exports = {
|
|
|
35176
36318
|
ParseNotificationRequest: ParseNotificationRequest,
|
|
35177
36319
|
ImageEraseConfig: ImageEraseConfig,
|
|
35178
36320
|
CreateWordSamplesRequest: CreateWordSamplesRequest,
|
|
36321
|
+
SmartEraseWatermarkConfig: SmartEraseWatermarkConfig,
|
|
35179
36322
|
PoliticalAsrReviewTemplateInfoForUpdate: PoliticalAsrReviewTemplateInfoForUpdate,
|
|
35180
36323
|
AiSampleFaceOperation: AiSampleFaceOperation,
|
|
35181
36324
|
SvgWatermarkInputForUpdate: SvgWatermarkInputForUpdate,
|
|
@@ -35226,6 +36369,7 @@ module.exports = {
|
|
|
35226
36369
|
LiveStreamTaskNotifyConfig: LiveStreamTaskNotifyConfig,
|
|
35227
36370
|
VideoTemplateInfo: VideoTemplateInfo,
|
|
35228
36371
|
ComposeSubtitleStyle: ComposeSubtitleStyle,
|
|
36372
|
+
SmartErasePrivacyConfig: SmartErasePrivacyConfig,
|
|
35229
36373
|
PornOcrReviewTemplateInfoForUpdate: PornOcrReviewTemplateInfoForUpdate,
|
|
35230
36374
|
AiReviewTaskPornOcrResult: AiReviewTaskPornOcrResult,
|
|
35231
36375
|
BatchProcessMediaRequest: BatchProcessMediaRequest,
|
|
@@ -35241,6 +36385,7 @@ module.exports = {
|
|
|
35241
36385
|
AiReviewPornOcrTaskInput: AiReviewPornOcrTaskInput,
|
|
35242
36386
|
LiveScheduleTask: LiveScheduleTask,
|
|
35243
36387
|
AiAnalysisTaskFrameTagOutput: AiAnalysisTaskFrameTagOutput,
|
|
36388
|
+
AiAnalysisTaskDubbingOutput: AiAnalysisTaskDubbingOutput,
|
|
35244
36389
|
ModifyAdaptiveDynamicStreamingTemplateRequest: ModifyAdaptiveDynamicStreamingTemplateRequest,
|
|
35245
36390
|
MediaAnimatedGraphicsItem: MediaAnimatedGraphicsItem,
|
|
35246
36391
|
DescribeQualityControlTemplatesRequest: DescribeQualityControlTemplatesRequest,
|
|
@@ -35259,6 +36404,7 @@ module.exports = {
|
|
|
35259
36404
|
AiAnalysisTaskSegmentOutput: AiAnalysisTaskSegmentOutput,
|
|
35260
36405
|
ComposeVideoItem: ComposeVideoItem,
|
|
35261
36406
|
LiveStreamOcrFullTextRecognitionResult: LiveStreamOcrFullTextRecognitionResult,
|
|
36407
|
+
VODOutputStorage: VODOutputStorage,
|
|
35262
36408
|
MediaProcessTaskSnapshotByTimeOffsetResult: MediaProcessTaskSnapshotByTimeOffsetResult,
|
|
35263
36409
|
AiRecognitionTaskTransTextResultInput: AiRecognitionTaskTransTextResultInput,
|
|
35264
36410
|
DescribeSchedulesResponse: DescribeSchedulesResponse,
|
|
@@ -35275,6 +36421,7 @@ module.exports = {
|
|
|
35275
36421
|
SnapshotByTimeOffsetTaskInput: SnapshotByTimeOffsetTaskInput,
|
|
35276
36422
|
ImageSpriteTaskInput: ImageSpriteTaskInput,
|
|
35277
36423
|
DeleteContentReviewTemplateResponse: DeleteContentReviewTemplateResponse,
|
|
36424
|
+
VODInputInfo: VODInputInfo,
|
|
35278
36425
|
ImageWatermarkTemplate: ImageWatermarkTemplate,
|
|
35279
36426
|
ModifyQualityControlTemplateResponse: ModifyQualityControlTemplateResponse,
|
|
35280
36427
|
AsrWordsConfigureInfo: AsrWordsConfigureInfo,
|
|
@@ -35288,6 +36435,7 @@ module.exports = {
|
|
|
35288
36435
|
ScheduleSmartSubtitleTaskResult: ScheduleSmartSubtitleTaskResult,
|
|
35289
36436
|
DeleteImageSpriteTemplateResponse: DeleteImageSpriteTemplateResponse,
|
|
35290
36437
|
DescribeContentReviewTemplatesResponse: DescribeContentReviewTemplatesResponse,
|
|
36438
|
+
EraseArea: EraseArea,
|
|
35291
36439
|
TEHDConfig: TEHDConfig,
|
|
35292
36440
|
VideoTemplateInfoForUpdate: VideoTemplateInfoForUpdate,
|
|
35293
36441
|
AnimatedGraphicsTemplate: AnimatedGraphicsTemplate,
|
|
@@ -35302,7 +36450,7 @@ module.exports = {
|
|
|
35302
36450
|
ComposeMediaItem: ComposeMediaItem,
|
|
35303
36451
|
ScheduleQualityControlTaskResult: ScheduleQualityControlTaskResult,
|
|
35304
36452
|
TerrorismConfigureInfoForUpdate: TerrorismConfigureInfoForUpdate,
|
|
35305
|
-
|
|
36453
|
+
DescribePersonSamplesRequest: DescribePersonSamplesRequest,
|
|
35306
36454
|
EnableScheduleResponse: EnableScheduleResponse,
|
|
35307
36455
|
SecurityGroupInfo: SecurityGroupInfo,
|
|
35308
36456
|
DeleteAdaptiveDynamicStreamingTemplateResponse: DeleteAdaptiveDynamicStreamingTemplateResponse,
|
|
@@ -35318,6 +36466,7 @@ module.exports = {
|
|
|
35318
36466
|
DescribeImageSpriteTemplatesRequest: DescribeImageSpriteTemplatesRequest,
|
|
35319
36467
|
CreateQualityControlTemplateRequest: CreateQualityControlTemplateRequest,
|
|
35320
36468
|
AiSampleTagOperation: AiSampleTagOperation,
|
|
36469
|
+
RawSmartEraseParameter: RawSmartEraseParameter,
|
|
35321
36470
|
ScheduleExecRuleTaskResult: ScheduleExecRuleTaskResult,
|
|
35322
36471
|
CreateAIRecognitionTemplateResponse: CreateAIRecognitionTemplateResponse,
|
|
35323
36472
|
EditMediaTask: EditMediaTask,
|
|
@@ -35329,6 +36478,7 @@ module.exports = {
|
|
|
35329
36478
|
DescribeAsrHotwordsListResponse: DescribeAsrHotwordsListResponse,
|
|
35330
36479
|
AiAnalysisResult: AiAnalysisResult,
|
|
35331
36480
|
SmartSubtitleTaskResultInput: SmartSubtitleTaskResultInput,
|
|
36481
|
+
ImageWatermarkInputForUpdate: ImageWatermarkInputForUpdate,
|
|
35332
36482
|
DescribeAIAnalysisTemplatesRequest: DescribeAIAnalysisTemplatesRequest,
|
|
35333
36483
|
AiRecognitionTaskOcrWordsResultItem: AiRecognitionTaskOcrWordsResultItem,
|
|
35334
36484
|
ProcessImageRequest: ProcessImageRequest,
|
|
@@ -35346,7 +36496,8 @@ module.exports = {
|
|
|
35346
36496
|
CreateSnapshotByTimeOffsetTemplateResponse: CreateSnapshotByTimeOffsetTemplateResponse,
|
|
35347
36497
|
ExecRuleTaskData: ExecRuleTaskData,
|
|
35348
36498
|
ModifyContentReviewTemplateRequest: ModifyContentReviewTemplateRequest,
|
|
35349
|
-
|
|
36499
|
+
LiveStreamAiRecognitionResultItem: LiveStreamAiRecognitionResultItem,
|
|
36500
|
+
AiAnalysisTaskCoverOutput: AiAnalysisTaskCoverOutput,
|
|
35350
36501
|
AiContentReviewTaskInput: AiContentReviewTaskInput,
|
|
35351
36502
|
DeleteScheduleRequest: DeleteScheduleRequest,
|
|
35352
36503
|
CreateAdaptiveDynamicStreamingTemplateResponse: CreateAdaptiveDynamicStreamingTemplateResponse,
|
|
@@ -35380,6 +36531,7 @@ module.exports = {
|
|
|
35380
36531
|
DescribeMediaMetaDataResponse: DescribeMediaMetaDataResponse,
|
|
35381
36532
|
SmartSubtitleTaskAsrFullTextResultOutput: SmartSubtitleTaskAsrFullTextResultOutput,
|
|
35382
36533
|
TerrorismOcrReviewTemplateInfo: TerrorismOcrReviewTemplateInfo,
|
|
36534
|
+
ExtractBlindWatermarkTaskConfig: ExtractBlindWatermarkTaskConfig,
|
|
35383
36535
|
ImageEncodeConfig: ImageEncodeConfig,
|
|
35384
36536
|
AiReviewTaskPornResult: AiReviewTaskPornResult,
|
|
35385
36537
|
AiRecognitionTaskObjectResultOutput: AiRecognitionTaskObjectResultOutput,
|
|
@@ -35422,6 +36574,7 @@ module.exports = {
|
|
|
35422
36574
|
ArtifactRepairConfig: ArtifactRepairConfig,
|
|
35423
36575
|
CreateAIRecognitionTemplateRequest: CreateAIRecognitionTemplateRequest,
|
|
35424
36576
|
DescribeBatchTaskDetailResponse: DescribeBatchTaskDetailResponse,
|
|
36577
|
+
AiAnalysisTaskDubbingInput: AiAnalysisTaskDubbingInput,
|
|
35425
36578
|
ComposeCanvas: ComposeCanvas,
|
|
35426
36579
|
AiReviewPornTaskOutput: AiReviewPornTaskOutput,
|
|
35427
36580
|
CreateWorkflowResponse: CreateWorkflowResponse,
|
|
@@ -35463,7 +36616,7 @@ module.exports = {
|
|
|
35463
36616
|
MediaAiAnalysisFrameTagSegmentItem: MediaAiAnalysisFrameTagSegmentItem,
|
|
35464
36617
|
AiRecognitionTaskAsrWordsResultItem: AiRecognitionTaskAsrWordsResultItem,
|
|
35465
36618
|
DescribeTaskDetailResponse: DescribeTaskDetailResponse,
|
|
35466
|
-
|
|
36619
|
+
AiAnalysisTaskDubbingResult: AiAnalysisTaskDubbingResult,
|
|
35467
36620
|
DeleteImageSpriteTemplateRequest: DeleteImageSpriteTemplateRequest,
|
|
35468
36621
|
LiveScheduleLiveRecordTaskResult: LiveScheduleLiveRecordTaskResult,
|
|
35469
36622
|
AiSampleFailFaceInfo: AiSampleFailFaceInfo,
|
|
@@ -35482,6 +36635,7 @@ module.exports = {
|
|
|
35482
36635
|
AsrHotWordsConfigure: AsrHotWordsConfigure,
|
|
35483
36636
|
ImageAreaBoxInfo: ImageAreaBoxInfo,
|
|
35484
36637
|
LiveStreamAiReviewResultItem: LiveStreamAiReviewResultItem,
|
|
36638
|
+
SmartEraseSubtitleConfig: SmartEraseSubtitleConfig,
|
|
35485
36639
|
DeleteLiveRecordTemplateResponse: DeleteLiveRecordTemplateResponse,
|
|
35486
36640
|
DescribeSnapshotByTimeOffsetTemplatesResponse: DescribeSnapshotByTimeOffsetTemplatesResponse,
|
|
35487
36641
|
MediaVideoStreamItem: MediaVideoStreamItem,
|
|
@@ -35544,6 +36698,7 @@ module.exports = {
|
|
|
35544
36698
|
ImageDenoiseConfig: ImageDenoiseConfig,
|
|
35545
36699
|
VideoDenoiseConfig: VideoDenoiseConfig,
|
|
35546
36700
|
AiRecognitionTaskObjectResult: AiRecognitionTaskObjectResult,
|
|
36701
|
+
DisableScheduleRequest: DisableScheduleRequest,
|
|
35547
36702
|
DescribeAIAnalysisTemplatesResponse: DescribeAIAnalysisTemplatesResponse,
|
|
35548
36703
|
CreateSnapshotByTimeOffsetTemplateRequest: CreateSnapshotByTimeOffsetTemplateRequest,
|
|
35549
36704
|
ParseLiveStreamProcessNotificationRequest: ParseLiveStreamProcessNotificationRequest,
|
|
@@ -35571,6 +36726,8 @@ module.exports = {
|
|
|
35571
36726
|
DescribeAnimatedGraphicsTemplatesResponse: DescribeAnimatedGraphicsTemplatesResponse,
|
|
35572
36727
|
MediaAiAnalysisFrameTagItem: MediaAiAnalysisFrameTagItem,
|
|
35573
36728
|
ActivityResItem: ActivityResItem,
|
|
36729
|
+
LiveActivityResItem: LiveActivityResItem,
|
|
36730
|
+
EraseTimeArea: EraseTimeArea,
|
|
35574
36731
|
SpekeDrm: SpekeDrm,
|
|
35575
36732
|
AiAnalysisTaskDelLogoResult: AiAnalysisTaskDelLogoResult,
|
|
35576
36733
|
SampleSnapshotTaskInput: SampleSnapshotTaskInput,
|