tencentcloud-sdk-nodejs-intl-en 3.0.1179 → 3.0.1180

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1179",
3
+ "version": "3.0.1180",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1179";
1
+ const sdkVersion = "3.0.1180";
2
2
  module.exports = sdkVersion
@@ -931,6 +931,12 @@ Default value: 0.
931
931
  */
932
932
  this.EnhanceConfig = null;
933
933
 
934
+ /**
935
+ *
936
+ * @type {string || null}
937
+ */
938
+ this.StdExtInfo = null;
939
+
934
940
  }
935
941
 
936
942
  /**
@@ -969,6 +975,7 @@ Default value: 0.
969
975
  obj.deserialize(params.EnhanceConfig)
970
976
  this.EnhanceConfig = obj;
971
977
  }
978
+ this.StdExtInfo = 'StdExtInfo' in params ? params.StdExtInfo : null;
972
979
 
973
980
  }
974
981
  }
@@ -5750,6 +5757,13 @@ Note: This field may return null, indicating that no valid value can be obtained
5750
5757
  */
5751
5758
  this.EnhanceConfig = null;
5752
5759
 
5760
+ /**
5761
+ * Image erasing configuration.
5762
+ Note: This field may return null, indicating that no valid value can be obtained.
5763
+ * @type {ImageEraseConfig || null}
5764
+ */
5765
+ this.EraseConfig = null;
5766
+
5753
5767
  }
5754
5768
 
5755
5769
  /**
@@ -5772,6 +5786,12 @@ Note: This field may return null, indicating that no valid value can be obtained
5772
5786
  this.EnhanceConfig = obj;
5773
5787
  }
5774
5788
 
5789
+ if (params.EraseConfig) {
5790
+ let obj = new ImageEraseConfig();
5791
+ obj.deserialize(params.EraseConfig)
5792
+ this.EraseConfig = obj;
5793
+ }
5794
+
5775
5795
  }
5776
5796
  }
5777
5797
 
@@ -6309,7 +6329,7 @@ class DescribeSmartSubtitleTemplatesRequest extends AbstractModel {
6309
6329
  super();
6310
6330
 
6311
6331
  /**
6312
- * Condition for filtering smart subtitle templates by unique identifier. The array can contain up to 10 unique identifiers.
6332
+ * Unique identifiers of smart subtitle templates for filtering. The array can contain up to 100 unique identifiers.
6313
6333
  * @type {Array.<number> || null}
6314
6334
  */
6315
6335
  this.Definitions = null;
@@ -7640,6 +7660,12 @@ class LiveRecordTemplate extends AbstractModel {
7640
7660
  */
7641
7661
  this.HLSConfigure = null;
7642
7662
 
7663
+ /**
7664
+ * MP4 configuration parameter.
7665
+ * @type {MP4ConfigureInfo || null}
7666
+ */
7667
+ this.MP4Configure = null;
7668
+
7643
7669
  /**
7644
7670
  * Recording template name.
7645
7671
  * @type {string || null}
@@ -7689,6 +7715,12 @@ class LiveRecordTemplate extends AbstractModel {
7689
7715
  obj.deserialize(params.HLSConfigure)
7690
7716
  this.HLSConfigure = obj;
7691
7717
  }
7718
+
7719
+ if (params.MP4Configure) {
7720
+ let obj = new MP4ConfigureInfo();
7721
+ obj.deserialize(params.MP4Configure)
7722
+ this.MP4Configure = obj;
7723
+ }
7692
7724
  this.Name = 'Name' in params ? params.Name : null;
7693
7725
  this.Comment = 'Comment' in params ? params.Comment : null;
7694
7726
  this.Type = 'Type' in params ? params.Type : null;
@@ -11673,6 +11705,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
11673
11705
  }
11674
11706
  }
11675
11707
 
11708
+ /**
11709
+ * MP4 configuration parameter.
11710
+ * @class
11711
+ */
11712
+ class MP4ConfigureInfo extends AbstractModel {
11713
+ constructor(){
11714
+ super();
11715
+
11716
+ /**
11717
+ * Recording duration, in seconds. The interval can range from 10 minutes to 720 minutes. It is 60 minutes (3,600 seconds) by default.
11718
+ * @type {number || null}
11719
+ */
11720
+ this.Interval = null;
11721
+
11722
+ }
11723
+
11724
+ /**
11725
+ * @private
11726
+ */
11727
+ deserialize(params) {
11728
+ if (!params) {
11729
+ return;
11730
+ }
11731
+ this.Interval = 'Interval' in params ? params.Interval : null;
11732
+
11733
+ }
11734
+ }
11735
+
11676
11736
  /**
11677
11737
  * DeleteQualityControlTemplate request structure.
11678
11738
  * @class
@@ -13159,6 +13219,62 @@ If one or both parameters are empty or set to `0`:
13159
13219
  }
13160
13220
  }
13161
13221
 
13222
+ /**
13223
+ * OCR-based full live stream recognition
13224
+ * @class
13225
+ */
13226
+ class LiveStreamOcrFullTextRecognitionResult extends AbstractModel {
13227
+ constructor(){
13228
+ super();
13229
+
13230
+ /**
13231
+ * Speech text.
13232
+ * @type {string || null}
13233
+ */
13234
+ this.Text = null;
13235
+
13236
+ /**
13237
+ * Start PTS time of recognized segment in seconds.
13238
+ * @type {number || null}
13239
+ */
13240
+ this.StartPtsTime = null;
13241
+
13242
+ /**
13243
+ * End PTS time of recognized segment in seconds.
13244
+ * @type {number || null}
13245
+ */
13246
+ this.EndPtsTime = null;
13247
+
13248
+ /**
13249
+ * Confidence of recognized segment. Value range: 0–100.
13250
+ * @type {number || null}
13251
+ */
13252
+ this.Confidence = null;
13253
+
13254
+ /**
13255
+ * Zone coordinates of recognition result. The array contains four elements: [x1,y1,x2,y2], i.e., the horizontal and vertical coordinates of the top-left and bottom-right corners.
13256
+ * @type {Array.<number> || null}
13257
+ */
13258
+ this.AreaCoordSet = null;
13259
+
13260
+ }
13261
+
13262
+ /**
13263
+ * @private
13264
+ */
13265
+ deserialize(params) {
13266
+ if (!params) {
13267
+ return;
13268
+ }
13269
+ this.Text = 'Text' in params ? params.Text : null;
13270
+ this.StartPtsTime = 'StartPtsTime' in params ? params.StartPtsTime : null;
13271
+ this.EndPtsTime = 'EndPtsTime' in params ? params.EndPtsTime : null;
13272
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
13273
+ this.AreaCoordSet = 'AreaCoordSet' in params ? params.AreaCoordSet : null;
13274
+
13275
+ }
13276
+ }
13277
+
13162
13278
  /**
13163
13279
  * Result type of a time point screencapturing task
13164
13280
  * @class
@@ -16213,6 +16329,40 @@ Default value: 10%.
16213
16329
  }
16214
16330
  }
16215
16331
 
16332
+ /**
16333
+ * Image erasing parameter.
16334
+ * @class
16335
+ */
16336
+ class ImageEraseConfig extends AbstractModel {
16337
+ constructor(){
16338
+ super();
16339
+
16340
+ /**
16341
+ * Icon erasing configuration.
16342
+ Note: This field may return null, indicating that no valid value can be obtained.
16343
+ * @type {ImageEraseLogoConfig || null}
16344
+ */
16345
+ this.ImageEraseLogo = null;
16346
+
16347
+ }
16348
+
16349
+ /**
16350
+ * @private
16351
+ */
16352
+ deserialize(params) {
16353
+ if (!params) {
16354
+ return;
16355
+ }
16356
+
16357
+ if (params.ImageEraseLogo) {
16358
+ let obj = new ImageEraseLogoConfig();
16359
+ obj.deserialize(params.ImageEraseLogo)
16360
+ this.ImageEraseLogo = obj;
16361
+ }
16362
+
16363
+ }
16364
+ }
16365
+
16216
16366
  /**
16217
16367
  * AI-based intelligent analysis template details
16218
16368
  * @class
@@ -16819,7 +16969,11 @@ class ModifyAsrHotwordsRequest extends AbstractModel {
16819
16969
  super();
16820
16970
 
16821
16971
  /**
16822
- * Hotword lexicon ID.
16972
+ * Hotword lexicon ID.
16973
+
16974
+ Either Name or Content should be specified if the hotword lexicon is a text-based hotword lexicon.
16975
+ One of Name, FileContent, and FileName should be specified if the hotword lexicon is a file-based hotword lexicon.
16976
+
16823
16977
  * @type {string || null}
16824
16978
  */
16825
16979
  this.HotwordsId = null;
@@ -18478,10 +18632,10 @@ class AiAnalysisTaskInput extends AbstractModel {
18478
18632
  /**
18479
18633
  * Additional parameter. Its value is a serialized JSON string.
18480
18634
  Note: This parameter is used to meet customization requirements. References:
18481
- Smart erase: https://intl.cloud.tencent.com/document/product/862/101530?from_cn_redirect=1
18482
- Video splitting: https://intl.cloud.tencent.com/document/product/862/112098?from_cn_redirect=1
18483
- Intelligent highlights: https://intl.cloud.tencent.com/document/product/862/107280?from_cn_redirect=1
18484
- Horizontal-to-vertical video transformation: https://intl.cloud.tencent.com/document/product/862/112112?from_cn_redirect=1
18635
+ [Smart Erase Tutorial]: https://intl.cloud.tencent.com/document/product/862/101530?from_cn_redirect=1
18636
+ [Video Splitting (Long Videos to Short Videos) Tutorial](https://intl.cloud.tencent.com/document/product/862/112098?from_cn_redirect=1)
18637
+ [Intelligent Highlights Tutorial](https://intl.cloud.tencent.com/document/product/862/107280?from_cn_redirect=1)
18638
+ [Horizontal-to-Vertical Video Transformation Tutorial](https://intl.cloud.tencent.com/document/product/862/112112?from_cn_redirect=1)
18485
18639
  Note: This field may return null, indicating that no valid value can be obtained.
18486
18640
  * @type {string || null}
18487
18641
  */
@@ -19978,7 +20132,7 @@ class ImageEncodeConfig extends AbstractModel {
19978
20132
  super();
19979
20133
 
19980
20134
  /**
19981
- * Image format. Valid values: JPG, BMP, GIF, PNG, and WebP. The default is the original image format.
20135
+ * Image format. Valid values: JPEG, PNG, BMP, and WebP. If it is not specified, the original image format is used. Animations are not supported.
19982
20136
  Note: This field may return null, indicating that no valid value can be obtained.
19983
20137
  * @type {string || null}
19984
20138
  */
@@ -22176,9 +22330,9 @@ Cannot be set to 0.
22176
22330
  this.Bitrate = null;
22177
22331
 
22178
22332
  /**
22179
- * The sampling rate of the audio stream. the supported sampling rate options vary for different encoding standards. for details, see audio sampling rate support scope document https://intl.cloud.tencent.com/document/product/862/77166?from_cn_redirect=1#f3b039f1-d817-4a96-b4e4-90132d31cd53.
22333
+ * Audio stream sampling rate. Different sampling rate options are provided for different encoding standards. For details, see [Audio/Video Transcoding Template](https://intl.cloud.tencent.com/document/product/862/77166?from_cn_redirect=1#f3b039f1-d817-4a96-b4e4-90132d31cd53).
22180
22334
  Unit: Hz.
22181
- Please ensure that the sampling rate of the source audio stream is within the value range of the above options. otherwise, transcoding failure may occur.
22335
+ Note: Make sure that the sampling rate of the source audio stream is among the above options. Otherwise, transcoding may fail.
22182
22336
  * @type {number || null}
22183
22337
  */
22184
22338
  this.SampleRate = null;
@@ -23549,7 +23703,7 @@ class ComposeMediaTrack extends AbstractModel {
23549
23703
  super();
23550
23704
 
23551
23705
  /**
23552
- * The track type. Valid values:<ul><li>`Video`: Video track. A video track can consist of the following elements:</li><ul><li>Video</li><li>Image</li><li>Transition</li><li>Empty</li></ul><li>`Audio`: Audio track. An audio track can consist of the following elements:</li><ul><li>Audio</li><li>Transition</li><li>Empty</li></ul><li>`Title`: Text track. A text track can consist of the following elements: </li><ul><li>Subtitle</li></ul>
23706
+ * Track type. Valid values: <ul><li>Video: video track. It can consist of the following elements:</li><ul><li>Video elements</li><li>Image elements</li><li>Transition elements</li><li>Empty elements</li></ul><li>Audio: audio track. It can consist of the following elements:</li><ul><li>Audio elements</li><li>Transition elements</li><li>Empty elements</li></ul><li>Title: text track. It can consist of the following elements:</li><ul><li>Subtitle elements</li></ul></ul>
23553
23707
  * @type {string || null}
23554
23708
  */
23555
23709
  this.Type = null;
@@ -23628,42 +23782,31 @@ class ProhibitedOcrReviewTemplateInfo extends AbstractModel {
23628
23782
  }
23629
23783
 
23630
23784
  /**
23631
- * OCR-based full live stream recognition
23785
+ * Icon erasing configuration.
23632
23786
  * @class
23633
23787
  */
23634
- class LiveStreamOcrFullTextRecognitionResult extends AbstractModel {
23788
+ class ImageEraseLogoConfig extends AbstractModel {
23635
23789
  constructor(){
23636
23790
  super();
23637
23791
 
23638
23792
  /**
23639
- * Speech text.
23793
+ * Capability configuration enabling status. Valid values:
23794
+ <li>ON: enabled</li>
23795
+ <li>OFF: disabled</li>
23796
+ Default value: ON.
23797
+ Note: This field may return null, indicating that no valid value can be obtained.
23640
23798
  * @type {string || null}
23641
23799
  */
23642
- this.Text = null;
23643
-
23644
- /**
23645
- * Start PTS time of recognized segment in seconds.
23646
- * @type {number || null}
23647
- */
23648
- this.StartPtsTime = null;
23649
-
23650
- /**
23651
- * End PTS time of recognized segment in seconds.
23652
- * @type {number || null}
23653
- */
23654
- this.EndPtsTime = null;
23800
+ this.Switch = null;
23655
23801
 
23656
23802
  /**
23657
- * Confidence of recognized segment. Value range: 0–100.
23658
- * @type {number || null}
23659
- */
23660
- this.Confidence = null;
23803
+ * Multiple box selection areas to be erased. Note: The value array of this parameter can contain up to 2 values.
23804
+ Note: This field may return null, indicating that no valid value can be obtained.
23661
23805
 
23662
- /**
23663
- * Zone coordinates of recognition result. The array contains four elements: [x1,y1,x2,y2], i.e., the horizontal and vertical coordinates of the top-left and bottom-right corners.
23664
- * @type {Array.<number> || null}
23806
+ Note: This field may return null, indicating that no valid value can be obtained.
23807
+ * @type {Array.<ImageAreaBoxInfo> || null}
23665
23808
  */
23666
- this.AreaCoordSet = null;
23809
+ this.ImageAreaBoxes = null;
23667
23810
 
23668
23811
  }
23669
23812
 
@@ -23674,11 +23817,16 @@ class LiveStreamOcrFullTextRecognitionResult extends AbstractModel {
23674
23817
  if (!params) {
23675
23818
  return;
23676
23819
  }
23677
- this.Text = 'Text' in params ? params.Text : null;
23678
- this.StartPtsTime = 'StartPtsTime' in params ? params.StartPtsTime : null;
23679
- this.EndPtsTime = 'EndPtsTime' in params ? params.EndPtsTime : null;
23680
- this.Confidence = 'Confidence' in params ? params.Confidence : null;
23681
- this.AreaCoordSet = 'AreaCoordSet' in params ? params.AreaCoordSet : null;
23820
+ this.Switch = 'Switch' in params ? params.Switch : null;
23821
+
23822
+ if (params.ImageAreaBoxes) {
23823
+ this.ImageAreaBoxes = new Array();
23824
+ for (let z in params.ImageAreaBoxes) {
23825
+ let obj = new ImageAreaBoxInfo();
23826
+ obj.deserialize(params.ImageAreaBoxes[z]);
23827
+ this.ImageAreaBoxes.push(obj);
23828
+ }
23829
+ }
23682
23830
 
23683
23831
  }
23684
23832
  }
@@ -23894,11 +24042,17 @@ class CreateLiveRecordTemplateRequest extends AbstractModel {
23894
24042
  super();
23895
24043
 
23896
24044
  /**
23897
- * HLS configuration parameters.
24045
+ * HLS configuration parameter. Either this parameter or MP4Configure should be specified.
23898
24046
  * @type {HLSConfigureInfo || null}
23899
24047
  */
23900
24048
  this.HLSConfigure = null;
23901
24049
 
24050
+ /**
24051
+ * MP4 configuration parameter. Either this parameter or HLSConfigure should be specified.
24052
+ * @type {MP4ConfigureInfo || null}
24053
+ */
24054
+ this.MP4Configure = null;
24055
+
23902
24056
  /**
23903
24057
  * Recording template name. Length limit: 64 characters.
23904
24058
  * @type {string || null}
@@ -23926,6 +24080,12 @@ class CreateLiveRecordTemplateRequest extends AbstractModel {
23926
24080
  obj.deserialize(params.HLSConfigure)
23927
24081
  this.HLSConfigure = obj;
23928
24082
  }
24083
+
24084
+ if (params.MP4Configure) {
24085
+ let obj = new MP4ConfigureInfo();
24086
+ obj.deserialize(params.MP4Configure)
24087
+ this.MP4Configure = obj;
24088
+ }
23929
24089
  this.Name = 'Name' in params ? params.Name : null;
23930
24090
  this.Comment = 'Comment' in params ? params.Comment : null;
23931
24091
 
@@ -25727,6 +25887,54 @@ Note: This field may return null, indicating that no valid value can be obtained
25727
25887
  }
25728
25888
  }
25729
25889
 
25890
+ /**
25891
+ * Information on the box selection area in an image.
25892
+ * @class
25893
+ */
25894
+ class ImageAreaBoxInfo extends AbstractModel {
25895
+ constructor(){
25896
+ super();
25897
+
25898
+ /**
25899
+ * Type of the box selection area in the image. Valid values:
25900
+ <li>logo: icon</li>
25901
+ <li>text: text</li>
25902
+ Default value: logo.
25903
+ Note: This field may return null, indicating that no valid value can be obtained.
25904
+ * @type {string || null}
25905
+ */
25906
+ this.Type = null;
25907
+
25908
+ /**
25909
+ * Coordinates (pixel-level) of the box selection area in the image. Format: [x1, y1, x2, y2], which indicates the coordinates of the top left corner and the bottom right corner.
25910
+ For example, [101, 85, 111, 95].
25911
+ Note: This field may return null, indicating that no valid value can be obtained.
25912
+ * @type {Array.<number> || null}
25913
+ */
25914
+ this.AreaCoordSet = null;
25915
+
25916
+ /**
25917
+ *
25918
+ * @type {Array.<number> || null}
25919
+ */
25920
+ this.BoundingBox = null;
25921
+
25922
+ }
25923
+
25924
+ /**
25925
+ * @private
25926
+ */
25927
+ deserialize(params) {
25928
+ if (!params) {
25929
+ return;
25930
+ }
25931
+ this.Type = 'Type' in params ? params.Type : null;
25932
+ this.AreaCoordSet = 'AreaCoordSet' in params ? params.AreaCoordSet : null;
25933
+ this.BoundingBox = 'BoundingBox' in params ? params.BoundingBox : null;
25934
+
25935
+ }
25936
+ }
25937
+
25730
25938
  /**
25731
25939
  * Result of AI-based live stream audit
25732
25940
  * @class
@@ -27331,6 +27539,12 @@ class WordResult extends AbstractModel {
27331
27539
  */
27332
27540
  this.End = null;
27333
27541
 
27542
+ /**
27543
+ * Text after translation.
27544
+ * @type {string || null}
27545
+ */
27546
+ this.Trans = null;
27547
+
27334
27548
  }
27335
27549
 
27336
27550
  /**
@@ -27343,6 +27557,7 @@ class WordResult extends AbstractModel {
27343
27557
  this.Word = 'Word' in params ? params.Word : null;
27344
27558
  this.Start = 'Start' in params ? params.Start : null;
27345
27559
  this.End = 'End' in params ? params.End : null;
27560
+ this.Trans = 'Trans' in params ? params.Trans : null;
27346
27561
 
27347
27562
  }
27348
27563
  }
@@ -27558,12 +27773,19 @@ Note: This field may return null, indicating that no valid values can be obtaine
27558
27773
  this.NoVideo = null;
27559
27774
 
27560
27775
  /**
27561
- * The no-reference video quality score. Value range: 0-100.
27562
- Note: This field may return null, indicating that no valid values can be obtained.
27776
+ * No-reference quality score of the video (100 points in total).
27777
+ Note: This field may return null, indicating that no valid value can be obtained.
27563
27778
  * @type {number || null}
27564
27779
  */
27565
27780
  this.QualityEvaluationScore = null;
27566
27781
 
27782
+ /**
27783
+ * No-reference quality score of the video (MOS).
27784
+ Note: This field may return null, indicating that no valid value can be obtained.
27785
+ * @type {number || null}
27786
+ */
27787
+ this.QualityEvaluationMeanOpinionScore = null;
27788
+
27567
27789
  /**
27568
27790
  * Exception items detected in content quality inspection.
27569
27791
  Note: This field may return null, indicating that no valid values can be obtained.
@@ -27590,6 +27812,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
27590
27812
  this.NoAudio = 'NoAudio' in params ? params.NoAudio : null;
27591
27813
  this.NoVideo = 'NoVideo' in params ? params.NoVideo : null;
27592
27814
  this.QualityEvaluationScore = 'QualityEvaluationScore' in params ? params.QualityEvaluationScore : null;
27815
+ this.QualityEvaluationMeanOpinionScore = 'QualityEvaluationMeanOpinionScore' in params ? params.QualityEvaluationMeanOpinionScore : null;
27593
27816
 
27594
27817
  if (params.QualityControlResultSet) {
27595
27818
  this.QualityControlResultSet = new Array();
@@ -30797,11 +31020,17 @@ class ModifyLiveRecordTemplateRequest extends AbstractModel {
30797
31020
  this.Definition = null;
30798
31021
 
30799
31022
  /**
30800
- * HLS configuration parameters.
31023
+ * HLS configuration parameter. Either this parameter or MP4Configure should be specified.
30801
31024
  * @type {HLSConfigureInfo || null}
30802
31025
  */
30803
31026
  this.HLSConfigure = null;
30804
31027
 
31028
+ /**
31029
+ * MP4 configuration parameter. Either this parameter or HLSConfigure should be specified.
31030
+ * @type {MP4ConfigureInfo || null}
31031
+ */
31032
+ this.MP4Configure = null;
31033
+
30805
31034
  /**
30806
31035
  * Recording template name. Length limit: 64 characters.
30807
31036
  * @type {string || null}
@@ -30830,6 +31059,12 @@ class ModifyLiveRecordTemplateRequest extends AbstractModel {
30830
31059
  obj.deserialize(params.HLSConfigure)
30831
31060
  this.HLSConfigure = obj;
30832
31061
  }
31062
+
31063
+ if (params.MP4Configure) {
31064
+ let obj = new MP4ConfigureInfo();
31065
+ obj.deserialize(params.MP4Configure)
31066
+ this.MP4Configure = obj;
31067
+ }
30833
31068
  this.Name = 'Name' in params ? params.Name : null;
30834
31069
  this.Comment = 'Comment' in params ? params.Comment : null;
30835
31070
 
@@ -33319,6 +33554,7 @@ module.exports = {
33319
33554
  TaskOutputStorage: TaskOutputStorage,
33320
33555
  ModifyAIAnalysisTemplateRequest: ModifyAIAnalysisTemplateRequest,
33321
33556
  UserDefineConfigureInfo: UserDefineConfigureInfo,
33557
+ MP4ConfigureInfo: MP4ConfigureInfo,
33322
33558
  DeleteQualityControlTemplateRequest: DeleteQualityControlTemplateRequest,
33323
33559
  ColorEnhanceConfig: ColorEnhanceConfig,
33324
33560
  ComposeAudioItem: ComposeAudioItem,
@@ -33341,6 +33577,7 @@ module.exports = {
33341
33577
  AiRecognitionTaskOcrFullTextResult: AiRecognitionTaskOcrFullTextResult,
33342
33578
  AiAnalysisTaskSegmentOutput: AiAnalysisTaskSegmentOutput,
33343
33579
  ComposeVideoItem: ComposeVideoItem,
33580
+ LiveStreamOcrFullTextRecognitionResult: LiveStreamOcrFullTextRecognitionResult,
33344
33581
  MediaProcessTaskSnapshotByTimeOffsetResult: MediaProcessTaskSnapshotByTimeOffsetResult,
33345
33582
  AiRecognitionTaskTransTextResultInput: AiRecognitionTaskTransTextResultInput,
33346
33583
  DescribeSchedulesResponse: DescribeSchedulesResponse,
@@ -33389,6 +33626,7 @@ module.exports = {
33389
33626
  LiveStreamTagRecognitionResult: LiveStreamTagRecognitionResult,
33390
33627
  AnimatedGraphicTaskInput: AnimatedGraphicTaskInput,
33391
33628
  MosaicInput: MosaicInput,
33629
+ ImageEraseConfig: ImageEraseConfig,
33392
33630
  AIAnalysisTemplateItem: AIAnalysisTemplateItem,
33393
33631
  AiRecognitionTaskObjectResultItem: AiRecognitionTaskObjectResultItem,
33394
33632
  HeadTailParameter: HeadTailParameter,
@@ -33515,7 +33753,7 @@ module.exports = {
33515
33753
  AdaptiveDynamicStreamingInfoItem: AdaptiveDynamicStreamingInfoItem,
33516
33754
  ComposeMediaTrack: ComposeMediaTrack,
33517
33755
  ProhibitedOcrReviewTemplateInfo: ProhibitedOcrReviewTemplateInfo,
33518
- LiveStreamOcrFullTextRecognitionResult: LiveStreamOcrFullTextRecognitionResult,
33756
+ ImageEraseLogoConfig: ImageEraseLogoConfig,
33519
33757
  ScheduleReviewTaskResult: ScheduleReviewTaskResult,
33520
33758
  ModifyTranscodeTemplateResponse: ModifyTranscodeTemplateResponse,
33521
33759
  LiveStreamRecordResultInfo: LiveStreamRecordResultInfo,
@@ -33550,6 +33788,7 @@ module.exports = {
33550
33788
  SmartSubtitlesResult: SmartSubtitlesResult,
33551
33789
  ModifySnapshotByTimeOffsetTemplateRequest: ModifySnapshotByTimeOffsetTemplateRequest,
33552
33790
  AsrHotWordsConfigure: AsrHotWordsConfigure,
33791
+ ImageAreaBoxInfo: ImageAreaBoxInfo,
33553
33792
  LiveStreamAiReviewResultItem: LiveStreamAiReviewResultItem,
33554
33793
  DeleteLiveRecordTemplateResponse: DeleteLiveRecordTemplateResponse,
33555
33794
  DescribeSnapshotByTimeOffsetTemplatesResponse: DescribeSnapshotByTimeOffsetTemplatesResponse,
@@ -212,6 +212,7 @@ const DescribeWatermarkTemplatesRequest = models.DescribeWatermarkTemplatesReque
212
212
  const TaskOutputStorage = models.TaskOutputStorage;
213
213
  const ModifyAIAnalysisTemplateRequest = models.ModifyAIAnalysisTemplateRequest;
214
214
  const UserDefineConfigureInfo = models.UserDefineConfigureInfo;
215
+ const MP4ConfigureInfo = models.MP4ConfigureInfo;
215
216
  const DeleteQualityControlTemplateRequest = models.DeleteQualityControlTemplateRequest;
216
217
  const ColorEnhanceConfig = models.ColorEnhanceConfig;
217
218
  const ComposeAudioItem = models.ComposeAudioItem;
@@ -234,6 +235,7 @@ const ProcessImageResponse = models.ProcessImageResponse;
234
235
  const AiRecognitionTaskOcrFullTextResult = models.AiRecognitionTaskOcrFullTextResult;
235
236
  const AiAnalysisTaskSegmentOutput = models.AiAnalysisTaskSegmentOutput;
236
237
  const ComposeVideoItem = models.ComposeVideoItem;
238
+ const LiveStreamOcrFullTextRecognitionResult = models.LiveStreamOcrFullTextRecognitionResult;
237
239
  const MediaProcessTaskSnapshotByTimeOffsetResult = models.MediaProcessTaskSnapshotByTimeOffsetResult;
238
240
  const AiRecognitionTaskTransTextResultInput = models.AiRecognitionTaskTransTextResultInput;
239
241
  const DescribeSchedulesResponse = models.DescribeSchedulesResponse;
@@ -282,6 +284,7 @@ const DeleteAdaptiveDynamicStreamingTemplateResponse = models.DeleteAdaptiveDyna
282
284
  const LiveStreamTagRecognitionResult = models.LiveStreamTagRecognitionResult;
283
285
  const AnimatedGraphicTaskInput = models.AnimatedGraphicTaskInput;
284
286
  const MosaicInput = models.MosaicInput;
287
+ const ImageEraseConfig = models.ImageEraseConfig;
285
288
  const AIAnalysisTemplateItem = models.AIAnalysisTemplateItem;
286
289
  const AiRecognitionTaskObjectResultItem = models.AiRecognitionTaskObjectResultItem;
287
290
  const HeadTailParameter = models.HeadTailParameter;
@@ -408,7 +411,7 @@ const AiSampleWordInfo = models.AiSampleWordInfo;
408
411
  const AdaptiveDynamicStreamingInfoItem = models.AdaptiveDynamicStreamingInfoItem;
409
412
  const ComposeMediaTrack = models.ComposeMediaTrack;
410
413
  const ProhibitedOcrReviewTemplateInfo = models.ProhibitedOcrReviewTemplateInfo;
411
- const LiveStreamOcrFullTextRecognitionResult = models.LiveStreamOcrFullTextRecognitionResult;
414
+ const ImageEraseLogoConfig = models.ImageEraseLogoConfig;
412
415
  const ScheduleReviewTaskResult = models.ScheduleReviewTaskResult;
413
416
  const ModifyTranscodeTemplateResponse = models.ModifyTranscodeTemplateResponse;
414
417
  const LiveStreamRecordResultInfo = models.LiveStreamRecordResultInfo;
@@ -443,6 +446,7 @@ const AiRecognitionTaskTransTextResultOutput = models.AiRecognitionTaskTransText
443
446
  const SmartSubtitlesResult = models.SmartSubtitlesResult;
444
447
  const ModifySnapshotByTimeOffsetTemplateRequest = models.ModifySnapshotByTimeOffsetTemplateRequest;
445
448
  const AsrHotWordsConfigure = models.AsrHotWordsConfigure;
449
+ const ImageAreaBoxInfo = models.ImageAreaBoxInfo;
446
450
  const LiveStreamAiReviewResultItem = models.LiveStreamAiReviewResultItem;
447
451
  const DeleteLiveRecordTemplateResponse = models.DeleteLiveRecordTemplateResponse;
448
452
  const DescribeSnapshotByTimeOffsetTemplatesResponse = models.DescribeSnapshotByTimeOffsetTemplatesResponse;