tencentcloud-sdk-nodejs-intl-en 3.0.1265 → 3.0.1266

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.
@@ -5779,23 +5779,25 @@ class QualityControlResult extends AbstractModel {
5779
5779
  super();
5780
5780
 
5781
5781
  /**
5782
- * The issue type. Valid values:
5783
- `Jitter`
5784
- `Blur`
5785
- `LowLighting`
5786
- `HighLighting` (overexposure)
5787
- `CrashScreen` (video corruption)
5788
- `BlackWhiteEdge`
5789
- `SolidColorScreen` (blank screen)
5790
- `Noise`
5791
- `Mosaic` (pixelation)
5792
- `QRCode`
5793
- `AppletCode` (Weixin Mini Program code)
5794
- `BarCode`
5795
- `LowVoice`
5796
- `HighVoice`
5797
- `NoVoice`
5798
- `LowEvaluation` (low no-reference video quality score)
5782
+ * Exception type. valid values:.
5783
+ Jitter: jitter.
5784
+ Blur: specifies the blur effect.
5785
+ LowLighting: specifies low light.
5786
+ HighLighting: overexposure.
5787
+ CrashScreen: specifies screen glitch.
5788
+ BlackWhiteEdge: specifies the black and white edges.
5789
+ SolidColorScreen: specifies the solid color screen.
5790
+ Noise: specifies the noise.
5791
+ Mosaic: mosaic.
5792
+ QRCode: specifies the qr code.
5793
+ AppletCode: specifies the mini program code.
5794
+ BarCode: specifies the barcode.
5795
+ LowVoice: specifies the bass.
5796
+ HighVoice: specifies high voice detection.
5797
+ NoVoice: specifies mute.
5798
+ LowEvaluation: specifies the video no-reference score (MOS) is below the threshold.
5799
+ AudioEvaluation: specifies the audio no-reference scoring (MOS) is below the threshold.
5800
+ AudioNoise: specifies the audio noise.
5799
5801
  * @type {string || null}
5800
5802
  */
5801
5803
  this.Type = null;
@@ -8880,16 +8882,17 @@ Advanced edition: better effectiveness, suitable for mini-drama and reality styl
8880
8882
  this.WatermarkModel = null;
8881
8883
 
8882
8884
  /**
8883
- * Specifies automatic removal of a custom region.
8884
- Specifies the use of an AI model to automatically detect and erase existing targets in the specified region.
8885
- Note that this parameter will not take effect when the removal method is custom.
8885
+ * Automatically erase the custom region.
8886
+ Automatically detects and erases the targeted removal in the specified region using the AI model.
8887
+ Note that this parameter will not take effect when the removal method is custom. to modify the template, input [] for the clean-up region. if not provided, the template region information remains unchanged.
8886
8888
  * @type {Array.<EraseArea> || null}
8887
8889
  */
8888
8890
  this.AutoAreas = null;
8889
8891
 
8890
8892
  /**
8891
- * Specifies erasure of a custom region.
8892
- Detects and directly performs removal within a specified time range for the selected region.
8893
+ * Specifies the removal of a custom region.
8894
+ Specifies to directly perform removal without detection and recognition within a selected time range for the specified region.
8895
+ Note: when modifying the template, pass [] to clear the region. the template region information remains unchanged if not passed.
8893
8896
  * @type {Array.<EraseTimeArea> || null}
8894
8897
  */
8895
8898
  this.CustomAreas = null;
@@ -14373,6 +14376,46 @@ Note: This field may return null, indicating that no valid values can be obtaine
14373
14376
  }
14374
14377
  }
14375
14378
 
14379
+ /**
14380
+ * Video deduplication result information.
14381
+ * @class
14382
+ */
14383
+ class AiAnalysisTaskVideoRemakeOutput extends AbstractModel {
14384
+ constructor(){
14385
+ super();
14386
+
14387
+ /**
14388
+ * Specifies the file path for intelligent video deduplication.
14389
+ * @type {string || null}
14390
+ */
14391
+ this.Path = null;
14392
+
14393
+ /**
14394
+ * Specifies the storage location for intelligent video deduplication.
14395
+ * @type {TaskOutputStorage || null}
14396
+ */
14397
+ this.OutputStorage = null;
14398
+
14399
+ }
14400
+
14401
+ /**
14402
+ * @private
14403
+ */
14404
+ deserialize(params) {
14405
+ if (!params) {
14406
+ return;
14407
+ }
14408
+ this.Path = 'Path' in params ? params.Path : null;
14409
+
14410
+ if (params.OutputStorage) {
14411
+ let obj = new TaskOutputStorage();
14412
+ obj.deserialize(params.OutputStorage)
14413
+ this.OutputStorage = obj;
14414
+ }
14415
+
14416
+ }
14417
+ }
14418
+
14376
14419
  /**
14377
14420
  * ManageTask request structure.
14378
14421
  * @class
@@ -15278,6 +15321,34 @@ There can be up to 10 tags, each with a length limit of 16 characters.
15278
15321
  }
15279
15322
  }
15280
15323
 
15324
+ /**
15325
+ * Video deduplication task input type.
15326
+ * @class
15327
+ */
15328
+ class AiAnalysisTaskVideoRemakeInput extends AbstractModel {
15329
+ constructor(){
15330
+ super();
15331
+
15332
+ /**
15333
+ * Intelligent deduplication template ID.
15334
+ * @type {number || null}
15335
+ */
15336
+ this.Definition = null;
15337
+
15338
+ }
15339
+
15340
+ /**
15341
+ * @private
15342
+ */
15343
+ deserialize(params) {
15344
+ if (!params) {
15345
+ return;
15346
+ }
15347
+ this.Definition = 'Definition' in params ? params.Definition : null;
15348
+
15349
+ }
15350
+ }
15351
+
15281
15352
  /**
15282
15353
  * AI-based ASR-based live streaming keyword recognition result
15283
15354
  * @class
@@ -15649,15 +15720,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
15649
15720
  this.Uri = null;
15650
15721
 
15651
15722
  /**
15652
- * The encryption key (a 32-byte string).
15653
- Note: This field may return null, indicating that no valid values can be obtained.
15723
+ * Encryption key (32-byte hexadecimal string).
15724
+ Note: This field may return null, indicating that no valid value can be obtained.
15654
15725
  * @type {string || null}
15655
15726
  */
15656
15727
  this.Key = null;
15657
15728
 
15658
15729
  /**
15659
- * The initialization vector for encryption (a 32-byte string).
15660
- Note: This field may return null, indicating that no valid values can be obtained.
15730
+ * Initialization vector for encryption (32-byte hexadecimal string).
15731
+ Note: This field may return null, indicating that no valid value can be obtained.
15661
15732
  * @type {string || null}
15662
15733
  */
15663
15734
  this.Vector = null;
@@ -18972,13 +19043,14 @@ class AiAnalysisResult extends AbstractModel {
18972
19043
  * Task type. valid values:.
18973
19044
  <Li>Classification: intelligent classification.</li>.
18974
19045
  <Li>Cover: specifies the intelligent cover.</li>.
18975
- <Li>Tag: intelligent tag.</li>.
18976
- <Li>FrameTag: specifies intelligent frame-by-frame tagging.</li>.
19046
+ <Li>Tag: intelligent tagging.</li>.
19047
+ <Li>FrameTag: intelligent frame-by-frame tagging.</li>.
18977
19048
  <Li>Highlight: intelligent highlights</li>.
18978
19049
  <Li>DeLogo: intelligent removal.</li>.
18979
19050
  <li>Description: large model summarization.</li>
18980
19051
 
18981
19052
  <Li>Dubbing: intelligent dubbing.</li>.
19053
+ <Li>VideoRemake: specifies video deduplication.</li>.
18982
19054
  * @type {string || null}
18983
19055
  */
18984
19056
  this.Type = null;
@@ -19056,6 +19128,13 @@ Note: This field may return null, indicating that no valid value can be obtained
19056
19128
  */
19057
19129
  this.DubbingTask = null;
19058
19130
 
19131
+ /**
19132
+ * The query result of a video content deduplication task, which is valid when the task type is VideoRemake.
19133
+ Note: This field may return null, indicating that no valid value can be obtained.
19134
+ * @type {AiAnalysisTaskVideoRemakeResult || null}
19135
+ */
19136
+ this.VideoRemakeTask = null;
19137
+
19059
19138
  }
19060
19139
 
19061
19140
  /**
@@ -19133,6 +19212,12 @@ Note: This field may return null, indicating that no valid value can be obtained
19133
19212
  this.DubbingTask = obj;
19134
19213
  }
19135
19214
 
19215
+ if (params.VideoRemakeTask) {
19216
+ let obj = new AiAnalysisTaskVideoRemakeResult();
19217
+ obj.deserialize(params.VideoRemakeTask)
19218
+ this.VideoRemakeTask = obj;
19219
+ }
19220
+
19136
19221
  }
19137
19222
  }
19138
19223
 
@@ -23781,6 +23866,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
23781
23866
  */
23782
23867
  this.Sign = null;
23783
23868
 
23869
+ /**
23870
+ * Batch processing task information. this field has a value only when EventType is BatchTask.
23871
+ Note: This field may return null, indicating that no valid value can be obtained.
23872
+ * @type {BatchSubTaskResult || null}
23873
+ */
23874
+ this.BatchTaskEvent = null;
23875
+
23784
23876
  /**
23785
23877
  * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
23786
23878
  * @type {string || null}
@@ -23819,6 +23911,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
23819
23911
  }
23820
23912
  this.Timestamp = 'Timestamp' in params ? params.Timestamp : null;
23821
23913
  this.Sign = 'Sign' in params ? params.Sign : null;
23914
+
23915
+ if (params.BatchTaskEvent) {
23916
+ let obj = new BatchSubTaskResult();
23917
+ obj.deserialize(params.BatchTaskEvent)
23918
+ this.BatchTaskEvent = obj;
23919
+ }
23822
23920
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
23823
23921
 
23824
23922
  }
@@ -24842,6 +24940,73 @@ class AsrFullTextConfigureInfo extends AbstractModel {
24842
24940
  }
24843
24941
  }
24844
24942
 
24943
+ /**
24944
+ * Video deduplication result data structure.
24945
+ * @class
24946
+ */
24947
+ class AiAnalysisTaskVideoRemakeResult extends AbstractModel {
24948
+ constructor(){
24949
+ super();
24950
+
24951
+ /**
24952
+ * Specifies the task status. valid values: `PROCESSING`, `SUCCESS`, and `FAIL`.
24953
+ * @type {string || null}
24954
+ */
24955
+ this.Status = null;
24956
+
24957
+ /**
24958
+ * Error code. 0: success. other values: failure.
24959
+ * @type {number || null}
24960
+ */
24961
+ this.ErrCode = null;
24962
+
24963
+ /**
24964
+ * Error message.
24965
+ * @type {string || null}
24966
+ */
24967
+ this.Message = null;
24968
+
24969
+ /**
24970
+ * Deduplication task input.
24971
+ * @type {AiAnalysisTaskVideoRemakeInput || null}
24972
+ */
24973
+ this.Input = null;
24974
+
24975
+ /**
24976
+ * Task output.
24977
+ Note: This field may return null, indicating that no valid value can be obtained.
24978
+ * @type {AiAnalysisTaskVideoRemakeOutput || null}
24979
+ */
24980
+ this.Output = null;
24981
+
24982
+ }
24983
+
24984
+ /**
24985
+ * @private
24986
+ */
24987
+ deserialize(params) {
24988
+ if (!params) {
24989
+ return;
24990
+ }
24991
+ this.Status = 'Status' in params ? params.Status : null;
24992
+ this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
24993
+ this.Message = 'Message' in params ? params.Message : null;
24994
+
24995
+ if (params.Input) {
24996
+ let obj = new AiAnalysisTaskVideoRemakeInput();
24997
+ obj.deserialize(params.Input)
24998
+ this.Input = obj;
24999
+ }
25000
+
25001
+ if (params.Output) {
25002
+ let obj = new AiAnalysisTaskVideoRemakeOutput();
25003
+ obj.deserialize(params.Output)
25004
+ this.Output = obj;
25005
+ }
25006
+
25007
+ }
25008
+ }
25009
+
24845
25010
  /**
24846
25011
  * Artifact removal (smoothing) configuration.
24847
25012
  * @class
@@ -26829,7 +26994,13 @@ class CreateLiveRecordTemplateRequest extends AbstractModel {
26829
26994
  this.Comment = null;
26830
26995
 
26831
26996
  /**
26832
- * Recording type. Valid values: video: audio and video recording; audio: audio recording; auto: automatic detection. If it is left blank, the default value video is used.
26997
+ * Recording type. Valid values:
26998
+
26999
+ - video: audio and video recording;
27000
+ - audio: audio recording;
27001
+ - auto: automatic detection;
27002
+
27003
+ If it is left blank, "video" will be used as the default value.
26833
27004
  * @type {string || null}
26834
27005
  */
26835
27006
  this.RecordType = null;
@@ -29360,11 +29531,20 @@ class DescribeTasksRequest extends AbstractModel {
29360
29531
  super();
29361
29532
 
29362
29533
  /**
29363
- * Filter: Task status. Valid values: WAITING (waiting), PROCESSING (processing), FINISH (completed).
29534
+ * Filters task status. available values:.
29535
+ -WAITING.
29536
+ -PROCESSING (processing).
29537
+ -FINISH (completed).
29364
29538
  * @type {string || null}
29365
29539
  */
29366
29540
  this.Status = null;
29367
29541
 
29542
+ /**
29543
+ * Indicates whether there is a subtask failure when the task is complete.
29544
+ * @type {boolean || null}
29545
+ */
29546
+ this.SubTaskHasFailed = null;
29547
+
29368
29548
  /**
29369
29549
  * Number of returned entries. Default value: 10. Maximum value: 100.
29370
29550
  * @type {number || null}
@@ -29399,6 +29579,7 @@ class DescribeTasksRequest extends AbstractModel {
29399
29579
  return;
29400
29580
  }
29401
29581
  this.Status = 'Status' in params ? params.Status : null;
29582
+ this.SubTaskHasFailed = 'SubTaskHasFailed' in params ? params.SubTaskHasFailed : null;
29402
29583
  this.Limit = 'Limit' in params ? params.Limit : null;
29403
29584
  this.ScrollToken = 'ScrollToken' in params ? params.ScrollToken : null;
29404
29585
  this.StartTime = 'StartTime' in params ? params.StartTime : null;
@@ -30334,6 +30515,20 @@ Note: This field may return null, indicating that no valid value can be obtained
30334
30515
  */
30335
30516
  this.SubtitleName = null;
30336
30517
 
30518
+ /**
30519
+ * Output format of the subtitle. valid values: "WebVTT", "TTML".
30520
+ Default value: "WebVTT".
30521
+ * @type {string || null}
30522
+ */
30523
+ this.OutputFormat = null;
30524
+
30525
+ /**
30526
+ * Default subtitle track. specifies the current subtitle as the default track when true. a maximum of 1 default subtitle track can be specified.
30527
+ Default value: `false`.
30528
+ * @type {boolean || null}
30529
+ */
30530
+ this.DefaultTrack = null;
30531
+
30337
30532
  }
30338
30533
 
30339
30534
  /**
@@ -30351,6 +30546,8 @@ Note: This field may return null, indicating that no valid value can be obtained
30351
30546
  this.Subtitle = obj;
30352
30547
  }
30353
30548
  this.SubtitleName = 'SubtitleName' in params ? params.SubtitleName : null;
30549
+ this.OutputFormat = 'OutputFormat' in params ? params.OutputFormat : null;
30550
+ this.DefaultTrack = 'DefaultTrack' in params ? params.DefaultTrack : null;
30354
30551
 
30355
30552
  }
30356
30553
  }
@@ -34674,7 +34871,7 @@ Note: different DRM manufacturers have different limitations on the number of su
34674
34871
  this.KeyServerUrl = null;
34675
34872
 
34676
34873
  /**
34677
- * Encryption initialization vector (32-byte string). the field content is user-customized.
34874
+ * Initialization vector for encryption (32-byte hexadecimal string). the field content is user-customized.
34678
34875
  * @type {string || null}
34679
34876
  */
34680
34877
  this.Vector = null;
@@ -36945,6 +37142,7 @@ module.exports = {
36945
37142
  AiRecognitionTaskTransTextResultInput: AiRecognitionTaskTransTextResultInput,
36946
37143
  DescribeSchedulesResponse: DescribeSchedulesResponse,
36947
37144
  ImageQualityEnhanceConfig: ImageQualityEnhanceConfig,
37145
+ AiAnalysisTaskVideoRemakeOutput: AiAnalysisTaskVideoRemakeOutput,
36948
37146
  ManageTaskRequest: ManageTaskRequest,
36949
37147
  AiAnalysisTaskSegmentResult: AiAnalysisTaskSegmentResult,
36950
37148
  RawSmartSubtitleParameter: RawSmartSubtitleParameter,
@@ -36961,6 +37159,7 @@ module.exports = {
36961
37159
  ImageWatermarkTemplate: ImageWatermarkTemplate,
36962
37160
  ModifyQualityControlTemplateResponse: ModifyQualityControlTemplateResponse,
36963
37161
  AsrWordsConfigureInfo: AsrWordsConfigureInfo,
37162
+ AiAnalysisTaskVideoRemakeInput: AiAnalysisTaskVideoRemakeInput,
36964
37163
  LiveStreamAsrWordsRecognitionResult: LiveStreamAsrWordsRecognitionResult,
36965
37164
  AiSamplePerson: AiSamplePerson,
36966
37165
  SmartSubtitleTaskAsrFullTextResult: SmartSubtitleTaskAsrFullTextResult,
@@ -37110,6 +37309,7 @@ module.exports = {
37110
37309
  ModifyPersonSampleRequest: ModifyPersonSampleRequest,
37111
37310
  AudioTemplateInfo: AudioTemplateInfo,
37112
37311
  AsrFullTextConfigureInfo: AsrFullTextConfigureInfo,
37312
+ AiAnalysisTaskVideoRemakeResult: AiAnalysisTaskVideoRemakeResult,
37113
37313
  ArtifactRepairConfig: ArtifactRepairConfig,
37114
37314
  CreateAIRecognitionTemplateRequest: CreateAIRecognitionTemplateRequest,
37115
37315
  DescribeBatchTaskDetailResponse: DescribeBatchTaskDetailResponse,
@@ -254,6 +254,7 @@ const MediaProcessTaskSnapshotByTimeOffsetResult = models.MediaProcessTaskSnapsh
254
254
  const AiRecognitionTaskTransTextResultInput = models.AiRecognitionTaskTransTextResultInput;
255
255
  const DescribeSchedulesResponse = models.DescribeSchedulesResponse;
256
256
  const ImageQualityEnhanceConfig = models.ImageQualityEnhanceConfig;
257
+ const AiAnalysisTaskVideoRemakeOutput = models.AiAnalysisTaskVideoRemakeOutput;
257
258
  const ManageTaskRequest = models.ManageTaskRequest;
258
259
  const AiAnalysisTaskSegmentResult = models.AiAnalysisTaskSegmentResult;
259
260
  const RawSmartSubtitleParameter = models.RawSmartSubtitleParameter;
@@ -270,6 +271,7 @@ const VODInputInfo = models.VODInputInfo;
270
271
  const ImageWatermarkTemplate = models.ImageWatermarkTemplate;
271
272
  const ModifyQualityControlTemplateResponse = models.ModifyQualityControlTemplateResponse;
272
273
  const AsrWordsConfigureInfo = models.AsrWordsConfigureInfo;
274
+ const AiAnalysisTaskVideoRemakeInput = models.AiAnalysisTaskVideoRemakeInput;
273
275
  const LiveStreamAsrWordsRecognitionResult = models.LiveStreamAsrWordsRecognitionResult;
274
276
  const AiSamplePerson = models.AiSamplePerson;
275
277
  const SmartSubtitleTaskAsrFullTextResult = models.SmartSubtitleTaskAsrFullTextResult;
@@ -419,6 +421,7 @@ const TEHDConfigForUpdate = models.TEHDConfigForUpdate;
419
421
  const ModifyPersonSampleRequest = models.ModifyPersonSampleRequest;
420
422
  const AudioTemplateInfo = models.AudioTemplateInfo;
421
423
  const AsrFullTextConfigureInfo = models.AsrFullTextConfigureInfo;
424
+ const AiAnalysisTaskVideoRemakeResult = models.AiAnalysisTaskVideoRemakeResult;
422
425
  const ArtifactRepairConfig = models.ArtifactRepairConfig;
423
426
  const CreateAIRecognitionTemplateRequest = models.CreateAIRecognitionTemplateRequest;
424
427
  const DescribeBatchTaskDetailResponse = models.DescribeBatchTaskDetailResponse;
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20210331: require("./v20210331"), v20181225: require("./v20181225"),
2
+ v20181225: require("./v20181225"), v20210331: require("./v20210331"),
3
3
  };
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20201229: require("./v20201229"), v20210922: require("./v20210922"),
2
+ v20210922: require("./v20210922"), v20201229: require("./v20201229"),
3
3
  };
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20180717: require("./v20180717"), v20240718: require("./v20240718"),
2
+ v20240718: require("./v20240718"), v20180717: require("./v20180717"),
3
3
  };
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20210820: require("./v20210820"),
2
+ v20250806: require("./v20250806"), v20210820: require("./v20210820"),
3
3
  };
@@ -0,0 +1,4 @@
1
+ module.exports = {
2
+ Client: require("./wedata_client"),
3
+ Models: require("./models"),
4
+ };