tencentcloud-sdk-nodejs-intl-en 3.0.1355 → 3.0.1357

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.
Files changed (28) hide show
  1. package/package.json +1 -1
  2. package/tencentcloud/as/v20180419/models.js +67 -14
  3. package/tencentcloud/captcha/v20190722/models.js +2 -2
  4. package/tencentcloud/ccc/v20200210/ccc_client.js +8 -8
  5. package/tencentcloud/ccc/v20200210/models.js +2 -2
  6. package/tencentcloud/clb/v20180317/clb_client.js +2 -2
  7. package/tencentcloud/clb/v20180317/models.js +1 -1
  8. package/tencentcloud/common/sdk_version.js +1 -1
  9. package/tencentcloud/dc/v20180410/dc_client.js +1 -2
  10. package/tencentcloud/dc/v20180410/models.js +89 -22
  11. package/tencentcloud/gwlb/v20240906/models.js +89 -0
  12. package/tencentcloud/hunyuan/v20230901/hunyuan_client.js +29 -3
  13. package/tencentcloud/hunyuan/v20230901/models.js +242 -67
  14. package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +23 -9
  15. package/tencentcloud/intlpartnersmgt/v20220928/models.js +376 -240
  16. package/tencentcloud/mps/v20190612/models.js +1171 -698
  17. package/tencentcloud/mps/v20190612/mps_client.js +84 -4
  18. package/tencentcloud/postgres/v20170312/models.js +33 -49
  19. package/tencentcloud/sms/v20210111/models.js +21 -5
  20. package/tencentcloud/sms/v20210111/sms_client.js +2 -4
  21. package/tencentcloud/ssl/v20191205/models.js +464 -0
  22. package/tencentcloud/ssl/v20191205/ssl_client.js +26 -0
  23. package/tencentcloud/teo/v20220901/models.js +2 -2
  24. package/tencentcloud/teo/v20220901/teo_client.js +1 -1
  25. package/tencentcloud/trtc/v20190722/models.js +6 -6
  26. package/tencentcloud/trtc/v20190722/trtc_client.js +5 -5
  27. package/tencentcloud/vod/v20180717/models.js +6093 -1966
  28. package/tencentcloud/vod/v20180717/vod_client.js +119 -61
@@ -25,12 +25,18 @@ class AiAnalysisTaskHorizontalToVerticalInput extends AbstractModel {
25
25
  super();
26
26
 
27
27
  /**
28
- * Intelligent landscape-to-portrait template ID.
28
+ * <p>ID of the horizontal-to-vertical video transformation template.</p>
29
29
  Note: This field may return null, indicating that no valid values can be obtained.
30
30
  * @type {number || null}
31
31
  */
32
32
  this.Definition = null;
33
33
 
34
+ /**
35
+ * <p>Extended parameter.</p>
36
+ * @type {string || null}
37
+ */
38
+ this.ExtendedParameter = null;
39
+
34
40
  }
35
41
 
36
42
  /**
@@ -41,6 +47,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
41
47
  return;
42
48
  }
43
49
  this.Definition = 'Definition' in params ? params.Definition : null;
50
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
44
51
 
45
52
  }
46
53
  }
@@ -794,11 +801,17 @@ class AiAnalysisTaskClassificationInput extends AbstractModel {
794
801
  super();
795
802
 
796
803
  /**
797
- * Intelligent video categorization template ID.
804
+ * <p>ID of the intelligent video classification template.</p>
798
805
  * @type {number || null}
799
806
  */
800
807
  this.Definition = null;
801
808
 
809
+ /**
810
+ * <p>Extended parameter.</p>
811
+ * @type {string || null}
812
+ */
813
+ this.ExtendedParameter = null;
814
+
802
815
  }
803
816
 
804
817
  /**
@@ -809,6 +822,7 @@ class AiAnalysisTaskClassificationInput extends AbstractModel {
809
822
  return;
810
823
  }
811
824
  this.Definition = 'Definition' in params ? params.Definition : null;
825
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
812
826
 
813
827
  }
814
828
  }
@@ -2714,26 +2728,18 @@ class CreateSmartEraseTemplateRequest extends AbstractModel {
2714
2728
  }
2715
2729
 
2716
2730
  /**
2717
- * Audio/Video enhancement configuration.
2731
+ * DescribeTextToSpeechAsyncTask request structure.
2718
2732
  * @class
2719
2733
  */
2720
- class EnhanceConfig extends AbstractModel {
2734
+ class DescribeTextToSpeechAsyncTaskRequest extends AbstractModel {
2721
2735
  constructor(){
2722
2736
  super();
2723
2737
 
2724
2738
  /**
2725
- * Video enhancement configuration.
2726
- Note: This field may return null, indicating that no valid values can be obtained.
2727
- * @type {VideoEnhanceConfig || null}
2728
- */
2729
- this.VideoEnhance = null;
2730
-
2731
- /**
2732
- * The audio enhancement configuration.
2733
- Note: This field may return null, indicating that no valid values can be obtained.
2734
- * @type {AudioEnhanceConfig || null}
2739
+ * <p>Task ID.</p>
2740
+ * @type {string || null}
2735
2741
  */
2736
- this.AudioEnhance = null;
2742
+ this.TaskId = null;
2737
2743
 
2738
2744
  }
2739
2745
 
@@ -2744,18 +2750,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
2744
2750
  if (!params) {
2745
2751
  return;
2746
2752
  }
2747
-
2748
- if (params.VideoEnhance) {
2749
- let obj = new VideoEnhanceConfig();
2750
- obj.deserialize(params.VideoEnhance)
2751
- this.VideoEnhance = obj;
2752
- }
2753
-
2754
- if (params.AudioEnhance) {
2755
- let obj = new AudioEnhanceConfig();
2756
- obj.deserialize(params.AudioEnhance)
2757
- this.AudioEnhance = obj;
2758
- }
2753
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
2759
2754
 
2760
2755
  }
2761
2756
  }
@@ -3858,92 +3853,49 @@ class SyncDubbingRequest extends AbstractModel {
3858
3853
  super();
3859
3854
 
3860
3855
  /**
3861
- * Text for the synthesis. This is required for text to speech. The text cannot exceed 2000 characters in length.
3856
+ * <p>Text for the synthesis. This is required for text to speech. The text cannot exceed 2000 characters in length.</p>
3862
3857
  * @type {string || null}
3863
3858
  */
3864
3859
  this.Text = null;
3865
3860
 
3866
3861
  /**
3867
- * Text language. This defaults to zh (Chinese) if left empty.
3868
- Supported languages:
3869
- zh: Chinese.
3870
- en: English.
3871
- ja: Japanese.
3872
- de: German.
3873
- fr: French.
3874
- ko: Korean.
3875
- ru: Russian.
3876
- uk: Ukrainian.
3877
- pt: Portuguese.
3878
- it: Italian.
3879
- es: Spanish.
3880
- id: Indonesian.
3881
- nl: Dutch.
3882
- tr: Turkish.
3883
- fil: Filipino.
3884
- ms: Malay.
3885
- el: Greek.
3886
- fi: Finnish.
3887
- hr: Croatian.
3888
- sk: Slovak.
3889
- pl: Polish.
3890
- sv: Swedish.
3891
- hi: Hindi.
3892
- bg: Bulgarian.
3893
- ro: Romanian.
3894
- ar: Arabic.
3895
- cs: Czech.
3896
- da: Danish.
3897
- ta: Tamil.
3898
- hun: Hungarian.
3899
- vi: Vietnamese.
3900
- no: Norwegian.
3901
- yue: Cantonese.
3902
- th: Thai.
3903
- he: Hebrew.
3904
- ca: Catalan.
3905
- nn: Nynorsk.
3906
- af: Afrikaans.
3907
- fa: Persian.
3908
- sl: Slovenian.
3909
-
3862
+ * <p>Text language. This defaults to Chinese if left empty.<br>Supported languages:<br>zh Chinese<br>en English<br>ja Japanese<br>de German<br>fr French<br>ko Korean<br>ru Russian<br>uk Ukrainian<br>pt Portuguese<br>it Italian<br>es Spanish<br>id Indonesian<br>nl Dutch<br>tr Turkish<br>fil Filipino<br>ms Malay<br>el Greek<br>fi Finnish<br>hr Croatian<br>sk Slovak<br>pl Polish<br>sv Swedish<br>hi Hindi<br>bg Bulgarian<br>ro Romanian<br>ar Arabic<br>cs Czech<br>da Danish<br>ta Tamil<br>hun Hungarian<br>vi Vietnamese<br>no Norwegian<br>yue Cantonese<br>th Thai<br>he Hebrew<br>ca Catalan<br>nn Nynorsk<br>af Afrikaans<br>fa Persian<br>sl Slovenian</p>
3910
3863
  * @type {string || null}
3911
3864
  */
3912
3865
  this.TextLang = null;
3913
3866
 
3914
3867
  /**
3915
- * Voice type ID. This is required for synthesis with a specific voice type. System voice types and voice type cloning are supported.
3868
+ * <p>Voice ID. This is required for synthesis with a specific voice. System voice and voice cloning are supported.</p>
3916
3869
  * @type {string || null}
3917
3870
  */
3918
3871
  this.VoiceId = null;
3919
3872
 
3920
3873
  /**
3921
- * Base64-encoded audio for cloning.
3874
+ * <p>Base64-encoded audio for cloning.</p>
3922
3875
  * @type {string || null}
3923
3876
  */
3924
3877
  this.AudioData = null;
3925
3878
 
3926
3879
  /**
3927
- *
3880
+ * <p>Cloning audio URL. Valid when AudioData is empty.</p>
3928
3881
  * @type {string || null}
3929
3882
  */
3930
3883
  this.AudioUrl = null;
3931
3884
 
3932
3885
  /**
3933
- * Cloning audio language. The default language is Chinese.
3934
- Supported languages are the same as those for TextLang.
3886
+ * <p>Cloning audio language. The default language is Chinese. <br>Supported languages are the same as those for TextLang.</p>
3935
3887
  * @type {string || null}
3936
3888
  */
3937
3889
  this.AudioLang = null;
3938
3890
 
3939
3891
  /**
3940
- *
3892
+ * <p>Output parameters.</p><p>Specifies the output format, etc.</p>
3941
3893
  * @type {SyncDubbingOutputOption || null}
3942
3894
  */
3943
3895
  this.Output = null;
3944
3896
 
3945
3897
  /**
3946
- * Extended parameters in the format of a JSON string.
3898
+ * <p>Extended parameters in the format of a JSON string.</p><p>‑ synExt (Object): Speech synthesis extension parameter.<br>- duration (Float): Synthesized audio duration, in seconds. Example: 5.2.<br>- sampleRate (Integer): Synthesized audio sample rate. Default value: 16000. Supported values: [8000,16000,22050,32000,44100].<br> pitch (Integer): -Pitch. Default value: 0 (original voice output). Valid values: [-12, 12].<br>‑ cloneExt (Object): Voice cloning extension parameter.<br> - timeRanges (Float[][]): Specifies the time ranges for audio cloning. Default value: [[0, 20]]. Example: [[5.2, 10], [45, 59.8]].</p>
3947
3899
  * @type {string || null}
3948
3900
  */
3949
3901
  this.ExtParam = null;
@@ -4888,7 +4840,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
4888
4840
 
4889
4841
  /**
4890
4842
  * Sampling rate of the audio stream. Different encoding standards support different sampling rate options. The value of 0 indicates using the sampling rate value of the source audio.
4891
- For details, see [Supported Range of Audio Sampling Rate](https://www.tencentcloud.comom/document/product/862/77166?from_cn_redirect=1#f3b039f1-d817-4a96-b4e4-90132d31cd53).
4843
+ For details, see [Supported Range of Audio Sampling Rate](https://www.tencentcloud.com/document/product/862/77166?from_cn_redirect=1#f3b039f1-d817-4a96-b4e4-90132d31cd53).
4892
4844
  Unit: Hz.
4893
4845
  Note: Make sure that the sampling rate of the source audio stream is among the above options. Otherwise, transcoding may fail.
4894
4846
  Note: This field may return null, indicating that no valid values can be obtained.
@@ -5436,7 +5388,7 @@ class SmartEraseTaskResult extends AbstractModel {
5436
5388
  this.Status = null;
5437
5389
 
5438
5390
  /**
5439
- * 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).
5391
+ * 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.com/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).
5440
5392
  * @type {string || null}
5441
5393
  */
5442
5394
  this.ErrCodeExt = null;
@@ -5731,7 +5683,7 @@ Cannot be set to 0.
5731
5683
 
5732
5684
  /**
5733
5685
  * Sampling rate of the audio stream. Different encoding standards support different sampling rate options. The value of 0 indicates using the sampling rate value of the source audio.
5734
- For details, see [Supported Range of Audio Sampling Rate](https://www.tencentcloud.comom/document/product/862/77166?from_cn_redirect=1#f3b039f1-d817-4a96-b4e4-90132d31cd53).
5686
+ For details, see [Supported Range of Audio Sampling Rate](https://www.tencentcloud.com/document/product/862/77166?from_cn_redirect=1#f3b039f1-d817-4a96-b4e4-90132d31cd53).
5735
5687
  Unit: Hz.
5736
5688
  Note: Make sure that the sampling rate of the source audio stream is among the above options. Otherwise, transcoding may fail.
5737
5689
  * @type {number || null}
@@ -6896,11 +6848,17 @@ class AiAnalysisTaskReelInput extends AbstractModel {
6896
6848
  super();
6897
6849
 
6898
6850
  /**
6899
- * ID of the intelligent video editing template.
6851
+ * <p>ID of the intelligent video editing template.</p>
6900
6852
  * @type {number || null}
6901
6853
  */
6902
6854
  this.Definition = null;
6903
6855
 
6856
+ /**
6857
+ * <p>Extended parameter.</p>
6858
+ * @type {string || null}
6859
+ */
6860
+ this.ExtendedParameter = null;
6861
+
6904
6862
  }
6905
6863
 
6906
6864
  /**
@@ -6911,6 +6869,7 @@ class AiAnalysisTaskReelInput extends AbstractModel {
6911
6869
  return;
6912
6870
  }
6913
6871
  this.Definition = 'Definition' in params ? params.Definition : null;
6872
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
6914
6873
 
6915
6874
  }
6916
6875
  }
@@ -7931,17 +7890,29 @@ class AigcImageExtraParam extends AbstractModel {
7931
7890
  super();
7932
7891
 
7933
7892
  /**
7934
- * The aspect ratio of the generated video.Supported aspect ratios for different models:1. GEM: 1:1, 3:2, 2:3, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, and 21:9.Note: For more information about the aspect ratios of specific models, see the model website.
7893
+ * <p>Aspect ratio of the generated video.</p><p>Supported aspect ratios for different models:</p><ol><li>GEM: 1:1, 3:2, 2:3, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, and 21:9.</li></ol><p>Note: For more information about the aspect ratios of specific models, see the model website.</p>
7935
7894
  * @type {string || null}
7936
7895
  */
7937
7896
  this.AspectRatio = null;
7938
7897
 
7939
7898
  /**
7940
- * Output resolution of the image.Models that support this parameter:Valid values: 720P, 1080P, 2K, and 4K.
7899
+ * <p>Output resolution of the image.</p><p>Models that support this parameter:<br>Valid values: 720P, 1080P, 2K, and 4K.</p>
7941
7900
  * @type {string || null}
7942
7901
  */
7943
7902
  this.Resolution = null;
7944
7903
 
7904
+ /**
7905
+ * <p>Indicates whether to add a logo watermark. No watermark is added by default. 1 - A watermark is added. 0 - No watermark is added.</p><p>Value range: [0, 1].</p><p>Default value: 0.</p>
7906
+ * @type {number || null}
7907
+ */
7908
+ this.LogoAdd = null;
7909
+
7910
+ /**
7911
+ *
7912
+ * @type {string || null}
7913
+ */
7914
+ this.OutputFormat = null;
7915
+
7945
7916
  }
7946
7917
 
7947
7918
  /**
@@ -7953,6 +7924,8 @@ class AigcImageExtraParam extends AbstractModel {
7953
7924
  }
7954
7925
  this.AspectRatio = 'AspectRatio' in params ? params.AspectRatio : null;
7955
7926
  this.Resolution = 'Resolution' in params ? params.Resolution : null;
7927
+ this.LogoAdd = 'LogoAdd' in params ? params.LogoAdd : null;
7928
+ this.OutputFormat = 'OutputFormat' in params ? params.OutputFormat : null;
7956
7929
 
7957
7930
  }
7958
7931
  }
@@ -9043,6 +9016,78 @@ Note: This field may return null, indicating that no valid values can be obtaine
9043
9016
  }
9044
9017
  }
9045
9018
 
9019
+ /**
9020
+ * UpdateProject request structure.
9021
+ * @class
9022
+ */
9023
+ class UpdateProjectRequest extends AbstractModel {
9024
+ constructor(){
9025
+ super();
9026
+
9027
+ /**
9028
+ * <p>Project ID.</p>
9029
+ * @type {string || null}
9030
+ */
9031
+ this.ProjectId = null;
9032
+
9033
+ /**
9034
+ * <p>Project name.</p>
9035
+ * @type {string || null}
9036
+ */
9037
+ this.ProjectName = null;
9038
+
9039
+ /**
9040
+ * <p>Project term base.</p>
9041
+ * @type {Array.<TermBase> || null}
9042
+ */
9043
+ this.TermBase = null;
9044
+
9045
+ /**
9046
+ * <p>Project description.</p>
9047
+ * @type {string || null}
9048
+ */
9049
+ this.Description = null;
9050
+
9051
+ /**
9052
+ * <p>List of characters.</p>
9053
+ * @type {Array.<Speakers> || null}
9054
+ */
9055
+ this.Speakers = null;
9056
+
9057
+ }
9058
+
9059
+ /**
9060
+ * @private
9061
+ */
9062
+ deserialize(params) {
9063
+ if (!params) {
9064
+ return;
9065
+ }
9066
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
9067
+ this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
9068
+
9069
+ if (params.TermBase) {
9070
+ this.TermBase = new Array();
9071
+ for (let z in params.TermBase) {
9072
+ let obj = new TermBase();
9073
+ obj.deserialize(params.TermBase[z]);
9074
+ this.TermBase.push(obj);
9075
+ }
9076
+ }
9077
+ this.Description = 'Description' in params ? params.Description : null;
9078
+
9079
+ if (params.Speakers) {
9080
+ this.Speakers = new Array();
9081
+ for (let z in params.Speakers) {
9082
+ let obj = new Speakers();
9083
+ obj.deserialize(params.Speakers[z]);
9084
+ this.Speakers.push(obj);
9085
+ }
9086
+ }
9087
+
9088
+ }
9089
+ }
9090
+
9046
9091
  /**
9047
9092
  * DescribeAIRecognitionTemplates response structure.
9048
9093
  * @class
@@ -10779,6 +10824,72 @@ class Speakers extends AbstractModel {
10779
10824
  }
10780
10825
  }
10781
10826
 
10827
+ /**
10828
+ * Control parameter of a face recognition task
10829
+ * @class
10830
+ */
10831
+ class FaceConfigureInfo extends AbstractModel {
10832
+ constructor(){
10833
+ super();
10834
+
10835
+ /**
10836
+ * Switch of a face recognition task. Valid values:
10837
+ <li>ON: Enables an intelligent face recognition task;</li>
10838
+ <li>OFF: Disables an intelligent face recognition task.</li>
10839
+ * @type {string || null}
10840
+ */
10841
+ this.Switch = null;
10842
+
10843
+ /**
10844
+ * Face recognition filter score. If this score is reached or exceeded, a recognition result will be returned. Value range: 0-100. Default value: 95.
10845
+ * @type {number || null}
10846
+ */
10847
+ this.Score = null;
10848
+
10849
+ /**
10850
+ * The default face filter labels, which specify the types of faces to return. If this parameter is left empty, the detection results for all labels are returned. Valid values:
10851
+ <li>entertainment (people in the entertainment industry)</li>
10852
+ <li>sport (sports celebrities)</li>
10853
+ <li>politician</li>
10854
+ * @type {Array.<string> || null}
10855
+ */
10856
+ this.DefaultLibraryLabelSet = null;
10857
+
10858
+ /**
10859
+ * Custom face tags for filter, which specify the face recognition results to return. If this parameter is not specified or left empty, the recognition results for all custom face tags are returned.
10860
+ Up to 100 tags are allowed, each containing no more than 16 characters.
10861
+ * @type {Array.<string> || null}
10862
+ */
10863
+ this.UserDefineLibraryLabelSet = null;
10864
+
10865
+ /**
10866
+ * Figure library. Valid values:
10867
+ <li>Default: Default figure library;</li>
10868
+ <li>UserDefine: Custom figure library.</li>
10869
+ <li>All: Both default and custom figure libraries will be used.</li>
10870
+ Default value: All (both default and custom figure libraries will be used.)
10871
+ * @type {string || null}
10872
+ */
10873
+ this.FaceLibrary = null;
10874
+
10875
+ }
10876
+
10877
+ /**
10878
+ * @private
10879
+ */
10880
+ deserialize(params) {
10881
+ if (!params) {
10882
+ return;
10883
+ }
10884
+ this.Switch = 'Switch' in params ? params.Switch : null;
10885
+ this.Score = 'Score' in params ? params.Score : null;
10886
+ this.DefaultLibraryLabelSet = 'DefaultLibraryLabelSet' in params ? params.DefaultLibraryLabelSet : null;
10887
+ this.UserDefineLibraryLabelSet = 'UserDefineLibraryLabelSet' in params ? params.UserDefineLibraryLabelSet : null;
10888
+ this.FaceLibrary = 'FaceLibrary' in params ? params.FaceLibrary : null;
10889
+
10890
+ }
10891
+ }
10892
+
10782
10893
  /**
10783
10894
  * DescribeSmartEraseTemplates request structure.
10784
10895
  * @class
@@ -11509,11 +11620,17 @@ class AiAnalysisTaskCutoutInput extends AbstractModel {
11509
11620
  super();
11510
11621
 
11511
11622
  /**
11512
- * ID of the intelligent video matting template.
11623
+ * <p>ID of the intelligent video matting template.</p>
11513
11624
  * @type {number || null}
11514
11625
  */
11515
11626
  this.Definition = null;
11516
11627
 
11628
+ /**
11629
+ * <p>Extended parameter.</p>
11630
+ * @type {string || null}
11631
+ */
11632
+ this.ExtendedParameter = null;
11633
+
11517
11634
  }
11518
11635
 
11519
11636
  /**
@@ -11524,6 +11641,7 @@ class AiAnalysisTaskCutoutInput extends AbstractModel {
11524
11641
  return;
11525
11642
  }
11526
11643
  this.Definition = 'Definition' in params ? params.Definition : null;
11644
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
11527
11645
 
11528
11646
  }
11529
11647
  }
@@ -11833,11 +11951,17 @@ class AiAnalysisTaskSegmentInput extends AbstractModel {
11833
11951
  super();
11834
11952
 
11835
11953
  /**
11836
- * Splitting task template ID.
11954
+ * <p>ID of the video clipping task template.</p>
11837
11955
  * @type {number || null}
11838
11956
  */
11839
11957
  this.Definition = null;
11840
11958
 
11959
+ /**
11960
+ * <p>Extended parameter.</p>
11961
+ * @type {string || null}
11962
+ */
11963
+ this.ExtendedParameter = null;
11964
+
11841
11965
  }
11842
11966
 
11843
11967
  /**
@@ -11848,6 +11972,7 @@ class AiAnalysisTaskSegmentInput extends AbstractModel {
11848
11972
  return;
11849
11973
  }
11850
11974
  this.Definition = 'Definition' in params ? params.Definition : null;
11975
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
11851
11976
 
11852
11977
  }
11853
11978
  }
@@ -12656,19 +12781,24 @@ class SmartSubtitleTaskResultInput extends AbstractModel {
12656
12781
  super();
12657
12782
 
12658
12783
  /**
12659
- * Smart subtitle template ID.
12784
+ * <p>Smart subtitle template ID.</p>
12660
12785
  * @type {number || null}
12661
12786
  */
12662
12787
  this.Definition = null;
12663
12788
 
12664
12789
  /**
12665
- * Custom smart subtitle parameter. It takes effect when Definition is set to 0.
12666
- This parameter is used in high customization scenarios. It is recommended that you preferentially use Definition to specify smart subtitle parameters.
12667
- Note: This field may return null, indicating that no valid value can be obtained.
12790
+ * <p>Custom smart subtitle parameter. It takes effect when Definition is set to 0.<br>This parameter is used in highly customized scenarios. We recommend that you use Definition to specify smart subtitle parameters.</p>
12791
+ Note: This field may return null, indicating that no valid values can be obtained.
12668
12792
  * @type {RawSmartSubtitleParameter || null}
12669
12793
  */
12670
12794
  this.RawParameter = null;
12671
12795
 
12796
+ /**
12797
+ * <p>Extended parameter.</p>
12798
+ * @type {string || null}
12799
+ */
12800
+ this.UserExtPara = null;
12801
+
12672
12802
  }
12673
12803
 
12674
12804
  /**
@@ -12685,6 +12815,7 @@ Note: This field may return null, indicating that no valid value can be obtained
12685
12815
  obj.deserialize(params.RawParameter)
12686
12816
  this.RawParameter = obj;
12687
12817
  }
12818
+ this.UserExtPara = 'UserExtPara' in params ? params.UserExtPara : null;
12688
12819
 
12689
12820
  }
12690
12821
  }
@@ -13097,6 +13228,55 @@ Note: `EndTime` must be at least 0.02 seconds later than `StartTime`.
13097
13228
  }
13098
13229
  }
13099
13230
 
13231
+ /**
13232
+ * TextToSpeechAsync response structure.
13233
+ * @class
13234
+ */
13235
+ class TextToSpeechAsyncResponse extends AbstractModel {
13236
+ constructor(){
13237
+ super();
13238
+
13239
+ /**
13240
+ * <p>Error code. 0 is returned if the request is successful.</p>
13241
+ * @type {number || null}
13242
+ */
13243
+ this.ErrorCode = null;
13244
+
13245
+ /**
13246
+ * <p>Error message. success is returned if the request is successful.</p>
13247
+ * @type {string || null}
13248
+ */
13249
+ this.Msg = null;
13250
+
13251
+ /**
13252
+ * <p>Task ID. Use this ID to query the result.</p>
13253
+ * @type {string || null}
13254
+ */
13255
+ this.TaskId = null;
13256
+
13257
+ /**
13258
+ * 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.
13259
+ * @type {string || null}
13260
+ */
13261
+ this.RequestId = null;
13262
+
13263
+ }
13264
+
13265
+ /**
13266
+ * @private
13267
+ */
13268
+ deserialize(params) {
13269
+ if (!params) {
13270
+ return;
13271
+ }
13272
+ this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
13273
+ this.Msg = 'Msg' in params ? params.Msg : null;
13274
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
13275
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
13276
+
13277
+ }
13278
+ }
13279
+
13100
13280
  /**
13101
13281
  * CreatePersonSample response structure.
13102
13282
  * @class
@@ -13215,6 +13395,53 @@ class ModifyBlindWatermarkTemplateResponse extends AbstractModel {
13215
13395
  }
13216
13396
  }
13217
13397
 
13398
+ /**
13399
+ * Audio/Video enhancement configuration.
13400
+ * @class
13401
+ */
13402
+ class EnhanceConfig extends AbstractModel {
13403
+ constructor(){
13404
+ super();
13405
+
13406
+ /**
13407
+ * Video enhancement configuration.
13408
+ Note: This field may return null, indicating that no valid values can be obtained.
13409
+ * @type {VideoEnhanceConfig || null}
13410
+ */
13411
+ this.VideoEnhance = null;
13412
+
13413
+ /**
13414
+ * The audio enhancement configuration.
13415
+ Note: This field may return null, indicating that no valid values can be obtained.
13416
+ * @type {AudioEnhanceConfig || null}
13417
+ */
13418
+ this.AudioEnhance = null;
13419
+
13420
+ }
13421
+
13422
+ /**
13423
+ * @private
13424
+ */
13425
+ deserialize(params) {
13426
+ if (!params) {
13427
+ return;
13428
+ }
13429
+
13430
+ if (params.VideoEnhance) {
13431
+ let obj = new VideoEnhanceConfig();
13432
+ obj.deserialize(params.VideoEnhance)
13433
+ this.VideoEnhance = obj;
13434
+ }
13435
+
13436
+ if (params.AudioEnhance) {
13437
+ let obj = new AudioEnhanceConfig();
13438
+ obj.deserialize(params.AudioEnhance)
13439
+ this.AudioEnhance = obj;
13440
+ }
13441
+
13442
+ }
13443
+ }
13444
+
13218
13445
  /**
13219
13446
  * Control parameter of prohibited information detection task
13220
13447
  * @class
@@ -13553,7 +13780,7 @@ class LiveStreamTaskNotifyConfig extends AbstractModel {
13553
13780
  /**
13554
13781
  * Notification type:
13555
13782
  TDMQ-CMQ: message queue.
13556
- "URL": When a URL is specified, HTTP callbacks are pushed to the address specified by NotifyUrl. The callback protocol is HTTP+JSON. The content of the packet body is the same as the output parameters of [ParseLiveStreamProcessNotification](https://www.tencentcloud.comom/document/product/862/39229?from_cn_redirect=1).
13783
+ "URL": When a URL is specified, HTTP callbacks are pushed to the address specified by NotifyUrl. The callback protocol is HTTP+JSON. The content of the packet body is the same as the output parameters of [ParseLiveStreamProcessNotification](https://www.tencentcloud.com/document/product/862/39229?from_cn_redirect=1).
13557
13784
  <Font color="red"> Note: if it is unspecified or left blank, no callback will be sent. To send a callback, fill in the corresponding type value. </font>
13558
13785
  * @type {string || null}
13559
13786
  */
@@ -14490,6 +14717,90 @@ Note: This field may return null, indicating that no valid value can be obtained
14490
14717
  }
14491
14718
  }
14492
14719
 
14720
+ /**
14721
+ * Voice information.
14722
+ * @class
14723
+ */
14724
+ class VoiceInfo extends AbstractModel {
14725
+ constructor(){
14726
+ super();
14727
+
14728
+ /**
14729
+ * <p>Voice ID.</p>
14730
+ * @type {string || null}
14731
+ */
14732
+ this.VoiceId = null;
14733
+
14734
+ /**
14735
+ * <p>Voice name.</p>
14736
+ * @type {string || null}
14737
+ */
14738
+ this.Name = null;
14739
+
14740
+ /**
14741
+ * <p>Voice description.</p>
14742
+ * @type {string || null}
14743
+ */
14744
+ this.Description = null;
14745
+
14746
+ /**
14747
+ * <p>Voice type. </p><p>Enumeration value: </p><ul><li>system: System audio.</li></ul>
14748
+ * @type {string || null}
14749
+ */
14750
+ this.Category = null;
14751
+
14752
+ /**
14753
+ * <p>Gender. </p><p>Enumeration values: </p><ul><li>male: Male, </li><li>female: Female.</li></ul>
14754
+ * @type {string || null}
14755
+ */
14756
+ this.Gender = null;
14757
+
14758
+ /**
14759
+ * <p>List of supported languages. </p><p>For example: en.</p>
14760
+ * @type {Array.<string> || null}
14761
+ */
14762
+ this.Languages = null;
14763
+
14764
+ /**
14765
+ * <p>Audition audio URL.</p>
14766
+ * @type {string || null}
14767
+ */
14768
+ this.AudioUrl = null;
14769
+
14770
+ /**
14771
+ * <p>List of tags. </p><p>For example: gentle.</p>
14772
+ * @type {Array.<string> || null}
14773
+ */
14774
+ this.Labels = null;
14775
+
14776
+ /**
14777
+ * <p>Recommended scenarios. </p><p>For example: education.</p>
14778
+ * @type {Array.<string> || null}
14779
+ */
14780
+ this.Scenes = null;
14781
+
14782
+ }
14783
+
14784
+ /**
14785
+ * @private
14786
+ */
14787
+ deserialize(params) {
14788
+ if (!params) {
14789
+ return;
14790
+ }
14791
+ this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
14792
+ this.Name = 'Name' in params ? params.Name : null;
14793
+ this.Description = 'Description' in params ? params.Description : null;
14794
+ this.Category = 'Category' in params ? params.Category : null;
14795
+ this.Gender = 'Gender' in params ? params.Gender : null;
14796
+ this.Languages = 'Languages' in params ? params.Languages : null;
14797
+ this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
14798
+ this.Labels = 'Labels' in params ? params.Labels : null;
14799
+ this.Scenes = 'Scenes' in params ? params.Scenes : null;
14800
+
14801
+ }
14802
+ }
14803
+
14493
14804
  /**
14494
14805
  * ModifyAIAnalysisTemplate request structure.
14495
14806
  * @class
@@ -15530,11 +15841,17 @@ class AiAnalysisTaskDelLogoInput extends AbstractModel {
15530
15841
  super();
15531
15842
 
15532
15843
  /**
15533
- * Intelligent removal template ID.
15844
+ * <p>ID of the intelligent video erasing template.</p>
15534
15845
  * @type {number || null}
15535
15846
  */
15536
15847
  this.Definition = null;
15537
15848
 
15849
+ /**
15850
+ * <p>Extended parameter.</p>
15851
+ * @type {string || null}
15852
+ */
15853
+ this.ExtendedParameter = null;
15854
+
15538
15855
  }
15539
15856
 
15540
15857
  /**
@@ -15545,6 +15862,7 @@ class AiAnalysisTaskDelLogoInput extends AbstractModel {
15545
15862
  return;
15546
15863
  }
15547
15864
  this.Definition = 'Definition' in params ? params.Definition : null;
15865
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
15548
15866
 
15549
15867
  }
15550
15868
  }
@@ -15607,39 +15925,39 @@ class SmartSubtitleTaskBatchOutput extends AbstractModel {
15607
15925
  super();
15608
15926
 
15609
15927
  /**
15610
- * Task progress.
15928
+ * <p>Task progress.</p>
15611
15929
  * @type {number || null}
15612
15930
  */
15613
15931
  this.Progress = null;
15614
15932
 
15615
15933
  /**
15616
- * Task status, including PROCESSING, SUCCESS, and FAIL.
15934
+ * <p>Task status. Valid values are PROCESSING, SUCCESS, WAITING, and FAIL.</p>
15617
15935
  * @type {string || null}
15618
15936
  */
15619
15937
  this.Status = null;
15620
15938
 
15621
15939
  /**
15622
- * 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://intl.cloud.tencent.com/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).
15940
+ * <p>Error code. An empty string indicates that the task is successful, while other values indicate that the task has failed. For valid values, see the list of <a href="https://www.tencentcloud.com/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">MPS error codes</a>.</p>
15623
15941
  * @type {string || null}
15624
15942
  */
15625
15943
  this.ErrCodeExt = null;
15626
15944
 
15627
15945
  /**
15628
- * Error message.
15946
+ * <p>Error message.</p>
15629
15947
  * @type {string || null}
15630
15948
  */
15631
15949
  this.Message = null;
15632
15950
 
15633
15951
  /**
15634
- * Translation task output information.
15635
- Note: This field may return null, indicating that no valid value can be obtained.
15952
+ * <p>Translation task output information.</p>
15953
+ Note: This field may return null, indicating that no valid values can be obtained.
15636
15954
  * @type {SmartSubtitleTaskTransTextResultOutput || null}
15637
15955
  */
15638
15956
  this.TransTextTask = null;
15639
15957
 
15640
15958
  /**
15641
- * Output information on the full speech recognition task.
15642
- Note: This field may return null, indicating that no valid value can be obtained.
15959
+ * <p>Full speech recognition task output information.</p>
15960
+ Note: This field may return null, indicating that no valid values can be obtained.
15643
15961
  * @type {SmartSubtitleTaskAsrFullTextResultOutput || null}
15644
15962
  */
15645
15963
  this.AsrFullTextTask = null;
@@ -16866,13 +17184,13 @@ class CreateAigcVideoTaskRequest extends AbstractModel {
16866
17184
  super();
16867
17185
 
16868
17186
  /**
16869
- * <p>Model name.<br>Supported models:<br>Hunyuan.<br>Hailuo.<br>Kling.<br>Vidu.<br>OS.<br>GV.</p>
17187
+ * <p>Model name.<br>Supported models:<br>Hunyuan.<br>Hailuo.<br>Kling.<br>Vidu.<br>OS.<br>GV.<br>PixVerse.</p>
16870
17188
  * @type {string || null}
16871
17189
  */
16872
17190
  this.ModelName = null;
16873
17191
 
16874
17192
  /**
16875
- * <p>Specific version number of the model. By default, the system uses the supported stable version of the model.</p><ol><li>Hailuo: [02 and 2.3].</li><li>Kling: [2.0, 2.1, 2.5, O1, 2.6, 3.0, and 3.0-Omni].</li><li>Vidu: [q2, q2-pro, q2-turbo, q3-pro, and q3-turbo].</li><li>GV: [3.1].</li><li>OS: [2.0].</li></ol>
17193
+ * <p>Specific version number of the model. By default, the system uses the supported stable version of the model.</p><ol><li>Hailuo: [02, 2.3, and 2.3-fast].</li><li>Kling: [1.6, 2.0, 2.1, 2.5, O1, 2.6, 3.0, and 3.0-Omni].</li><li>Vidu: [q2, q2-pro, q2-turbo, q3-pro, q3-turbo, q3, and q3-mix].</li><li>GV: [3.1 and 3.1-fast].</li><li>OS: [2.0].</li><li>PixVerse: [v5.6, v6, and c1].</li></ol>
16876
17194
  * @type {string || null}
16877
17195
  */
16878
17196
  this.ModelVersion = null;
@@ -17349,6 +17667,18 @@ Note: This field may return null, indicating that no valid values can be obtaine
17349
17667
  */
17350
17668
  this.SubtitleEmbedId = null;
17351
17669
 
17670
+ /**
17671
+ * <p>Speaker identification mode. Valid values:<br>0: Speaker identification is disabled.<br>1: Speaker identification is enabled.<br>Default value: 0.</p>
17672
+ * @type {number || null}
17673
+ */
17674
+ this.SpeakerMode = null;
17675
+
17676
+ /**
17677
+ * <p>Indicates whether to output the identified speaker to the subtitle file. Valid values:<br>0: The speaker is not output to the subtitle file.<br>1: The speaker is output to the VTT subtitle file.<br>Note: To use this parameter, the value of SpeakerMode cannot be 0.<br>Default value: 0.</p>
17678
+ * @type {number || null}
17679
+ */
17680
+ this.SpeakerLabel = null;
17681
+
17352
17682
  }
17353
17683
 
17354
17684
  /**
@@ -17378,6 +17708,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
17378
17708
  this.SelectingSubtitleAreasConfig = obj;
17379
17709
  }
17380
17710
  this.SubtitleEmbedId = 'SubtitleEmbedId' in params ? params.SubtitleEmbedId : null;
17711
+ this.SpeakerMode = 'SpeakerMode' in params ? params.SpeakerMode : null;
17712
+ this.SpeakerLabel = 'SpeakerLabel' in params ? params.SpeakerLabel : null;
17381
17713
 
17382
17714
  }
17383
17715
  }
@@ -17746,59 +18078,55 @@ class SnapshotByTimeOffsetTaskInput extends AbstractModel {
17746
18078
  super();
17747
18079
 
17748
18080
  /**
17749
- * ID of a time point screenshot template.
18081
+ * <p>Time point screenshot template ID.</p>
17750
18082
  * @type {number || null}
17751
18083
  */
17752
18084
  this.Definition = null;
17753
18085
 
17754
18086
  /**
17755
- * List of screenshot time points in the format of `s` or `%`:
17756
- <li>If the string ends in `s`, it means that the time point is in seconds; for example, `3.5s` means that the time point is the 3.5th second;</li>
17757
- <li>If the string ends in `%`, it means that the time point is the specified percentage of the video duration; for example, `10%` means that the time point is 10% of the video duration.</li>
18087
+ * <p>List of screenshot time points. Time points support two formats: s and %.</p><li>The unit for a string that ends with s is second. For example, 3.5s means the time point is at 3.5 seconds.</li><li>The unit for a string that ends with % is a percentage of the video duration. For example, 10% means the time point is at 10% of the video's total duration.</li>
17758
18088
  * @type {Array.<string> || null}
17759
18089
  */
17760
18090
  this.ExtTimeOffsetSet = null;
17761
18091
 
17762
18092
  /**
17763
- * List of time points of screenshots in <font color=red>seconds</font>.
18093
+ * <p>List of screenshot time points, in <font color="red">seconds</font>. This parameter is not recommended. We recommend that you use the ExtTimeOffsetSet parameter.</p>
17764
18094
  * @type {Array.<number> || null}
17765
18095
  */
17766
18096
  this.TimeOffsetSet = null;
17767
18097
 
17768
18098
  /**
17769
- * List of up to 10 image or text watermarks.
17770
- Note: This field may return null, indicating that no valid values can be obtained.
18099
+ * <p>Watermark list. Up to 10 image or text watermarks are supported.</p>
17771
18100
  * @type {Array.<WatermarkInput> || null}
17772
18101
  */
17773
18102
  this.WatermarkSet = null;
17774
18103
 
17775
18104
  /**
17776
- * Target bucket of a generated time point screenshot file. If this parameter is left empty, the `OutputStorage` value of the upper folder will be inherited.
18105
+ * <p>Target storage for the file after the time point screenshot is taken. If this is not specified, it inherits the value from the upper-level OutputStorage.</p>
17777
18106
  Note: This field may return null, indicating that no valid values can be obtained.
17778
18107
  * @type {TaskOutputStorage || null}
17779
18108
  */
17780
18109
  this.OutputStorage = null;
17781
18110
 
17782
18111
  /**
17783
- * Output path for an image file of screenshots taken at specific time points, which can be a relative or absolute path.
17784
- If you need to define an output path, the path must end with `.{format}`. For variable names, refer to [Filename Variable](https://intl.cloud.tencent.com/document/product/862/37039?from_cn_redirect=1).
17785
- Relative path example:
17786
- <li>Filename_{Variable name}.{format}.</li>
17787
- <li>Filename.{format}.</li>
17788
- Absolute path example:
17789
- <li>/Custom path/Filename_{Variable name}.{format}.</li>
17790
- If left empty, a relative path is used by default: `{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}`.
18112
+ * <p>Output path of the image file after the time point screenshot is taken, which can be a relative or absolute path.<br>To define the output path, the path must end with <code>.{format}</code>. For variable names, see <a href="https://www.tencentcloud.com/document/product/862/37039?from_cn_redirect=1">File Name Variable Description</a>.<br>Relative path example:</p><li>File name_{variable name}.{format}</li><li>File name.{format}</li>Absolute path example:<li>/custom path/file name_{variable name}.{format}</li>If this is not specified, the default relative path is <code>{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}</code>.
17791
18113
  * @type {string || null}
17792
18114
  */
17793
18115
  this.OutputObjectPath = null;
17794
18116
 
17795
18117
  /**
17796
- * Rule of the `{number}` variable in the time point screenshot output path.
18118
+ * <p>Rule of the <code>{number}</code> variable in the output path after the time point screenshot is taken.</p>
17797
18119
  Note: This field may return null, indicating that no valid values can be obtained.
17798
18120
  * @type {NumberFormat || null}
17799
18121
  */
17800
18122
  this.ObjectNumberFormat = null;
17801
18123
 
18124
+ /**
18125
+ * <p>Extended parameter.</p>
18126
+ * @type {string || null}
18127
+ */
18128
+ this.ExtInfo = null;
18129
+
17802
18130
  }
17803
18131
 
17804
18132
  /**
@@ -17833,6 +18161,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
17833
18161
  obj.deserialize(params.ObjectNumberFormat)
17834
18162
  this.ObjectNumberFormat = obj;
17835
18163
  }
18164
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
17836
18165
 
17837
18166
  }
17838
18167
  }
@@ -17846,43 +18175,43 @@ class ImageSpriteTaskInput extends AbstractModel {
17846
18175
  super();
17847
18176
 
17848
18177
  /**
17849
- * ID of an image sprite generating template.
18178
+ * <p>Sprite screenshot template ID.</p>
17850
18179
  * @type {number || null}
17851
18180
  */
17852
18181
  this.Definition = null;
17853
18182
 
17854
18183
  /**
17855
- * Target bucket of a generated image sprite. If this parameter is left empty, the `OutputStorage` value of the upper folder will be inherited.
18184
+ * <p>Target storage for the file after the sprite screenshot is taken. If this is not specified, it inherits the value from the upper-level OutputStorage.</p>
17856
18185
  Note: This field may return null, indicating that no valid values can be obtained.
17857
18186
  * @type {TaskOutputStorage || null}
17858
18187
  */
17859
18188
  this.OutputStorage = null;
17860
18189
 
17861
18190
  /**
17862
- * Output path of a captured sprite image file, which can be a relative or absolute path.
17863
- If you need to define an output path, the path must end with `.{format}`. For variable names, refer to [Filename Variable](https://intl.cloud.tencent.com/document/product/862/37039?from_cn_redirect=1).Relative path example:
17864
- <li>Filename_{Variable name}.{format}.</li>
17865
- <li>Filename.{format}.</li>
17866
- Absolute path example:
17867
- <li>/Custom path/Filename_{Variable name}.{format}.</li>
17868
- If left empty, a relative path is used by default: `{inputName}_imageSprite_{definition}_{number}.{format}`.
18191
+ * <p>Output path of the sprite screenshot image file after the sprite screenshot is taken, which can be a relative or absolute path.<br>To define the output path, the path must end with <code>.{format}</code>. For variable names, see <a href="https://www.tencentcloud.com/document/product/862/37039?from_cn_redirect=1">File Name Variable Description</a>.<br>Relative path example:</p><li>File name_{variable name}.{format}</li><li>File name.{format}</li>Absolute path example:<li>/custom path/file name_{variable name}.{format}</li>If this is not specified, the default relative path is <code>{inputName}_imageSprite_{definition}_{number}.{format}</code>.
17869
18192
  * @type {string || null}
17870
18193
  */
17871
18194
  this.OutputObjectPath = null;
17872
18195
 
17873
18196
  /**
17874
- * Output path to the WebVTT file after an image sprite is generated, which can only be a relative path. If this parameter is left empty, the following relative path will be used by default: `{inputName}_imageSprite_{definition}.{format}`.
18197
+ * <p>Output path of the Web VTT file after the sprite screenshot is taken, which can only be a relative path. If this is not specified, the default relative path is <code>{inputName}_imageSprite_{definition}.{format}</code>.</p>
17875
18198
  * @type {string || null}
17876
18199
  */
17877
18200
  this.WebVttObjectName = null;
17878
18201
 
17879
18202
  /**
17880
- * Rule of the `{number}` variable in the image sprite output path.
18203
+ * <p>Rule of the <code>{number}</code> variable in the output path after the sprite screenshot is taken.</p>
17881
18204
  Note: This field may return null, indicating that no valid values can be obtained.
17882
18205
  * @type {NumberFormat || null}
17883
18206
  */
17884
18207
  this.ObjectNumberFormat = null;
17885
18208
 
18209
+ /**
18210
+ * <p>Extended parameter.</p>
18211
+ * @type {string || null}
18212
+ */
18213
+ this.ExtInfo = null;
18214
+
17886
18215
  }
17887
18216
 
17888
18217
  /**
@@ -17907,6 +18236,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
17907
18236
  obj.deserialize(params.ObjectNumberFormat)
17908
18237
  this.ObjectNumberFormat = obj;
17909
18238
  }
18239
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
17910
18240
 
17911
18241
  }
17912
18242
  }
@@ -18024,6 +18354,41 @@ class VODInputInfo extends AbstractModel {
18024
18354
  }
18025
18355
  }
18026
18356
 
18357
+ /**
18358
+ * DesignVoiceAsync request structure.
18359
+ * @class
18360
+ */
18361
+ class DesignVoiceAsyncRequest extends AbstractModel {
18362
+ constructor(){
18363
+ super();
18364
+
18365
+ /**
18366
+ * <p>Voice description.</p>
18367
+ * @type {string || null}
18368
+ */
18369
+ this.Prompt = null;
18370
+
18371
+ /**
18372
+ * <p>Extended parameters in the format of a JSON string.</p>
18373
+ * @type {string || null}
18374
+ */
18375
+ this.ExtParam = null;
18376
+
18377
+ }
18378
+
18379
+ /**
18380
+ * @private
18381
+ */
18382
+ deserialize(params) {
18383
+ if (!params) {
18384
+ return;
18385
+ }
18386
+ this.Prompt = 'Prompt' in params ? params.Prompt : null;
18387
+ this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
18388
+
18389
+ }
18390
+ }
18391
+
18027
18392
  /**
18028
18393
  * Image watermarking template
18029
18394
  * @class
@@ -18156,11 +18521,17 @@ class AiAnalysisTaskVideoRemakeInput extends AbstractModel {
18156
18521
  super();
18157
18522
 
18158
18523
  /**
18159
- * Intelligent deduplication template ID.
18524
+ * <p>ID of the intelligent video deduplication template.</p>
18160
18525
  * @type {number || null}
18161
18526
  */
18162
18527
  this.Definition = null;
18163
18528
 
18529
+ /**
18530
+ * <p>Extended parameter.</p>
18531
+ * @type {string || null}
18532
+ */
18533
+ this.ExtendedParameter = null;
18534
+
18164
18535
  }
18165
18536
 
18166
18537
  /**
@@ -18171,6 +18542,7 @@ class AiAnalysisTaskVideoRemakeInput extends AbstractModel {
18171
18542
  return;
18172
18543
  }
18173
18544
  this.Definition = 'Definition' in params ? params.Definition : null;
18545
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
18174
18546
 
18175
18547
  }
18176
18548
  }
@@ -18442,6 +18814,56 @@ Note: This field may return null, indicating that no valid value can be obtained
18442
18814
  }
18443
18815
  }
18444
18816
 
18817
+ /**
18818
+ * QueryProject response structure.
18819
+ * @class
18820
+ */
18821
+ class QueryProjectResponse extends AbstractModel {
18822
+ constructor(){
18823
+ super();
18824
+
18825
+ /**
18826
+ * <p>Total number of eligible items.</p>
18827
+ * @type {number || null}
18828
+ */
18829
+ this.Total = null;
18830
+
18831
+ /**
18832
+ * <p>Project data.</p>
18833
+ * @type {Array.<Project> || null}
18834
+ */
18835
+ this.Data = null;
18836
+
18837
+ /**
18838
+ * 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.
18839
+ * @type {string || null}
18840
+ */
18841
+ this.RequestId = null;
18842
+
18843
+ }
18844
+
18845
+ /**
18846
+ * @private
18847
+ */
18848
+ deserialize(params) {
18849
+ if (!params) {
18850
+ return;
18851
+ }
18852
+ this.Total = 'Total' in params ? params.Total : null;
18853
+
18854
+ if (params.Data) {
18855
+ this.Data = new Array();
18856
+ for (let z in params.Data) {
18857
+ let obj = new Project();
18858
+ obj.deserialize(params.Data[z]);
18859
+ this.Data.push(obj);
18860
+ }
18861
+ }
18862
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
18863
+
18864
+ }
18865
+ }
18866
+
18445
18867
  /**
18446
18868
  * DescribeDesignTask request structure.
18447
18869
  * @class
@@ -19414,6 +19836,55 @@ Note: This field may return null, indicating that no valid values can be obtaine
19414
19836
  }
19415
19837
  }
19416
19838
 
19839
+ /**
19840
+ * QueryProject request structure.
19841
+ * @class
19842
+ */
19843
+ class QueryProjectRequest extends AbstractModel {
19844
+ constructor(){
19845
+ super();
19846
+
19847
+ /**
19848
+ * <p>Project ID.</p>
19849
+ * @type {string || null}
19850
+ */
19851
+ this.ProjectId = null;
19852
+
19853
+ /**
19854
+ * <p>Project name.</p>
19855
+ * @type {string || null}
19856
+ */
19857
+ this.ProjectName = null;
19858
+
19859
+ /**
19860
+ * <p>Page number. Value range: starts from 1. Default value: 1.</p>
19861
+ * @type {number || null}
19862
+ */
19863
+ this.Page = null;
19864
+
19865
+ /**
19866
+ * <p>Number of items per page. Default value: 20.</p>
19867
+ * @type {number || null}
19868
+ */
19869
+ this.PageSize = null;
19870
+
19871
+ }
19872
+
19873
+ /**
19874
+ * @private
19875
+ */
19876
+ deserialize(params) {
19877
+ if (!params) {
19878
+ return;
19879
+ }
19880
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
19881
+ this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
19882
+ this.Page = 'Page' in params ? params.Page : null;
19883
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
19884
+
19885
+ }
19886
+ }
19887
+
19417
19888
  /**
19418
19889
  * Live stream AI recognition results
19419
19890
  * @class
@@ -19711,6 +20182,76 @@ There can be up to 10 tags, each with a length limit of 16 characters.
19711
20182
  }
19712
20183
  }
19713
20184
 
20185
+ /**
20186
+ * DescribeTextToSpeechAsyncTask response structure.
20187
+ * @class
20188
+ */
20189
+ class DescribeTextToSpeechAsyncTaskResponse extends AbstractModel {
20190
+ constructor(){
20191
+ super();
20192
+
20193
+ /**
20194
+ * <p>Error code. 0 is returned if the request is successful.</p>
20195
+ * @type {number || null}
20196
+ */
20197
+ this.ErrorCode = null;
20198
+
20199
+ /**
20200
+ * <p>Error message. success is returned if the request is successful.</p>
20201
+ * @type {string || null}
20202
+ */
20203
+ this.Msg = null;
20204
+
20205
+ /**
20206
+ * <p>Task status.</p><p>Enumeration values: </p><ul><li>success: Success, </li><li>fail: Failure, </li><li>processing: Processing.</li></ul>
20207
+ * @type {string || null}
20208
+ */
20209
+ this.Status = null;
20210
+
20211
+ /**
20212
+ * <p>Synthetic audio URL.</p>
20213
+ * @type {string || null}
20214
+ */
20215
+ this.AudioUrl = null;
20216
+
20217
+ /**
20218
+ * <p>Used voice ID.</p>
20219
+ * @type {string || null}
20220
+ */
20221
+ this.VoiceId = null;
20222
+
20223
+ /**
20224
+ * <p>Extended information.</p>
20225
+ * @type {string || null}
20226
+ */
20227
+ this.ExtInfo = null;
20228
+
20229
+ /**
20230
+ * 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.
20231
+ * @type {string || null}
20232
+ */
20233
+ this.RequestId = null;
20234
+
20235
+ }
20236
+
20237
+ /**
20238
+ * @private
20239
+ */
20240
+ deserialize(params) {
20241
+ if (!params) {
20242
+ return;
20243
+ }
20244
+ this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
20245
+ this.Msg = 'Msg' in params ? params.Msg : null;
20246
+ this.Status = 'Status' in params ? params.Status : null;
20247
+ this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
20248
+ this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
20249
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
20250
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
20251
+
20252
+ }
20253
+ }
20254
+
19714
20255
  /**
19715
20256
  * ModifyImageSpriteTemplate response structure.
19716
20257
  * @class
@@ -20231,13 +20772,13 @@ class BlindWatermarkTemplate extends AbstractModel {
20231
20772
  this.Comment = null;
20232
20773
 
20233
20774
  /**
20234
- * Creation time of the digital watermark template in [ISO date and time format](https://www.tencentcloud.comom/document/product/862/37710?from_cn_redirect=1#52).
20775
+ * Creation time of the digital watermark template in [ISO date and time format](https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52).
20235
20776
  * @type {string || null}
20236
20777
  */
20237
20778
  this.CreateTime = null;
20238
20779
 
20239
20780
  /**
20240
- * Last modification time of the digital watermark template in [ISO date and time format](https://www.tencentcloud.comom/document/product/862/37710?from_cn_redirect=1#52).
20781
+ * Last modification time of the digital watermark template in [ISO date and time format](https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52).
20241
20782
  * @type {string || null}
20242
20783
  */
20243
20784
  this.UpdateTime = null;
@@ -20656,6 +21197,55 @@ class ExecuteFunctionResponse extends AbstractModel {
20656
21197
  }
20657
21198
  }
20658
21199
 
21200
+ /**
21201
+ * DesignVoiceAsync response structure.
21202
+ * @class
21203
+ */
21204
+ class DesignVoiceAsyncResponse extends AbstractModel {
21205
+ constructor(){
21206
+ super();
21207
+
21208
+ /**
21209
+ * <p>Error code. 0 is returned if the request is successful.</p>
21210
+ * @type {number || null}
21211
+ */
21212
+ this.ErrorCode = null;
21213
+
21214
+ /**
21215
+ * <p>Error message. success is returned if the request is successful.</p>
21216
+ * @type {string || null}
21217
+ */
21218
+ this.Msg = null;
21219
+
21220
+ /**
21221
+ * <p>Task ID, used when querying a task.</p>
21222
+ * @type {string || null}
21223
+ */
21224
+ this.TaskId = null;
21225
+
21226
+ /**
21227
+ * 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.
21228
+ * @type {string || null}
21229
+ */
21230
+ this.RequestId = null;
21231
+
21232
+ }
21233
+
21234
+ /**
21235
+ * @private
21236
+ */
21237
+ deserialize(params) {
21238
+ if (!params) {
21239
+ return;
21240
+ }
21241
+ this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
21242
+ this.Msg = 'Msg' in params ? params.Msg : null;
21243
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
21244
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
21245
+
21246
+ }
21247
+ }
21248
+
20659
21249
  /**
20660
21250
  * Type of an animated image generating task.
20661
21251
  * @class
@@ -20665,43 +21255,42 @@ class AnimatedGraphicTaskInput extends AbstractModel {
20665
21255
  super();
20666
21256
 
20667
21257
  /**
20668
- * Animated image generating template ID.
21258
+ * <p>Video-to-GIF conversion template ID.</p>
20669
21259
  * @type {number || null}
20670
21260
  */
20671
21261
  this.Definition = null;
20672
21262
 
20673
21263
  /**
20674
- * Start time of an animated image in a video in seconds.
21264
+ * <p>Start time of the GIF in the video, in seconds.</p>
20675
21265
  * @type {number || null}
20676
21266
  */
20677
21267
  this.StartTimeOffset = null;
20678
21268
 
20679
21269
  /**
20680
- * End time of an animated image in a video in seconds.
21270
+ * <p>End time of the GIF in the video, in seconds.</p>
20681
21271
  * @type {number || null}
20682
21272
  */
20683
21273
  this.EndTimeOffset = null;
20684
21274
 
20685
21275
  /**
20686
- * Target bucket of a generated animated image file. If this parameter is left empty, the `OutputStorage` value of the upper folder will be inherited.
21276
+ * <p>Target storage for the file after GIF conversion. If this is not specified, it inherits the value from the upper-level OutputStorage.</p>
20687
21277
  Note: This field may return null, indicating that no valid values can be obtained.
20688
21278
  * @type {TaskOutputStorage || null}
20689
21279
  */
20690
21280
  this.OutputStorage = null;
20691
21281
 
20692
21282
  /**
20693
- * Output path of a file after animated image generating, which can be a relative or absolute path.
20694
- If you need to define an output path, the path must end with `.{format}`. For variable names, refer to [Filename Variable](https://intl.cloud.tencent.com/document/product/862/37039?from_cn_redirect=1).
20695
- Relative path example:
20696
- <li>Filename_{Variable name}.{format}.</li>
20697
- <li>Filename.{format}.</li>
20698
- Absolute path example:
20699
- <li>/Custom path/Filename_{Variable name}.{format}.</li>
20700
- If left empty, a relative path is used by default: `{inputName}_animatedGraphic_{definition}.{format}`.
21283
+ * <p>Output path of the file after GIF conversion, which can be a relative or absolute path.<br>To define the output path, the path must end with <code>.{format}</code>. For variable names, see <a href="https://www.tencentcloud.com/document/product/862/37039?from_cn_redirect=1">File Name Variable Description</a>.<br>Relative path example:</p><li>File name_{variable name}.{format}</li><li>File name.{format}</li>Absolute path example:<li>/custom path/file name_{variable name}.{format}</li>If this is not specified, the default relative path is <code>{inputName}_animatedGraphic_{definition}.{format}</code>.
20701
21284
  * @type {string || null}
20702
21285
  */
20703
21286
  this.OutputObjectPath = null;
20704
21287
 
21288
+ /**
21289
+ * <p>Extended parameter.</p>
21290
+ * @type {string || null}
21291
+ */
21292
+ this.ExtInfo = null;
21293
+
20705
21294
  }
20706
21295
 
20707
21296
  /**
@@ -20721,6 +21310,7 @@ If left empty, a relative path is used by default: `{inputName}_animatedGraphic_
20721
21310
  this.OutputStorage = obj;
20722
21311
  }
20723
21312
  this.OutputObjectPath = 'OutputObjectPath' in params ? params.OutputObjectPath : null;
21313
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
20724
21314
 
20725
21315
  }
20726
21316
  }
@@ -21555,7 +22145,7 @@ class ScheduleExecRuleTaskResult extends AbstractModel {
21555
22145
  this.Status = null;
21556
22146
 
21557
22147
  /**
21558
- * Error code. An empty string indicates success, while other values indicate failure. For specific values, see the list of MPS error codes at 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.
22148
+ * Error code. An empty string indicates success, while other values indicate failure. For specific values, see the list of MPS error codes at https://www.tencentcloud.com/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.
21559
22149
  * @type {string || null}
21560
22150
  */
21561
22151
  this.ErrCodeExt = null;
@@ -23001,11 +23591,17 @@ class AiAnalysisTaskTagInput extends AbstractModel {
23001
23591
  super();
23002
23592
 
23003
23593
  /**
23004
- * Intelligent video tagging template ID.
23594
+ * <p>ID of the intelligent video tagging template.</p>
23005
23595
  * @type {number || null}
23006
23596
  */
23007
23597
  this.Definition = null;
23008
23598
 
23599
+ /**
23600
+ * <p>Extended parameter.</p>
23601
+ * @type {string || null}
23602
+ */
23603
+ this.ExtendedParameter = null;
23604
+
23009
23605
  }
23010
23606
 
23011
23607
  /**
@@ -23016,6 +23612,7 @@ class AiAnalysisTaskTagInput extends AbstractModel {
23016
23612
  return;
23017
23613
  }
23018
23614
  this.Definition = 'Definition' in params ? params.Definition : null;
23615
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
23019
23616
 
23020
23617
  }
23021
23618
  }
@@ -24764,11 +25361,17 @@ class AiAnalysisTaskHighlightInput extends AbstractModel {
24764
25361
  super();
24765
25362
 
24766
25363
  /**
24767
- * The ID of the intelligent highlight generation template.
25364
+ * <p>ID of the intelligent video highlight template.</p>
24768
25365
  * @type {number || null}
24769
25366
  */
24770
25367
  this.Definition = null;
24771
25368
 
25369
+ /**
25370
+ * <p>Extended parameter.</p>
25371
+ * @type {string || null}
25372
+ */
25373
+ this.ExtendedParameter = null;
25374
+
24772
25375
  }
24773
25376
 
24774
25377
  /**
@@ -24779,6 +25382,7 @@ class AiAnalysisTaskHighlightInput extends AbstractModel {
24779
25382
  return;
24780
25383
  }
24781
25384
  this.Definition = 'Definition' in params ? params.Definition : null;
25385
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
24782
25386
 
24783
25387
  }
24784
25388
  }
@@ -25100,11 +25704,17 @@ class AiAnalysisTaskVideoComprehensionInput extends AbstractModel {
25100
25704
  super();
25101
25705
 
25102
25706
  /**
25103
- * Video (audio) recognition template ID.
25707
+ * <p>ID of the video (audio) understanding template.</p>
25104
25708
  * @type {number || null}
25105
25709
  */
25106
25710
  this.Definition = null;
25107
25711
 
25712
+ /**
25713
+ * <p>Extended parameter.</p>
25714
+ * @type {string || null}
25715
+ */
25716
+ this.ExtendedParameter = null;
25717
+
25108
25718
  }
25109
25719
 
25110
25720
  /**
@@ -25115,6 +25725,7 @@ class AiAnalysisTaskVideoComprehensionInput extends AbstractModel {
25115
25725
  return;
25116
25726
  }
25117
25727
  this.Definition = 'Definition' in params ? params.Definition : null;
25728
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
25118
25729
 
25119
25730
  }
25120
25731
  }
@@ -27253,7 +27864,7 @@ class SmartSubtitleTaskFullTextResult extends AbstractModel {
27253
27864
  this.Status = null;
27254
27865
 
27255
27866
  /**
27256
- * Error code. A null string indicates that the task is successful, while other values indicate that the task has failed. For valid values, see the list of [MPS 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).
27867
+ * Error code. A null string indicates that the task is successful, while other values indicate that the task has failed. For valid values, see the list of [MPS error codes](https://www.tencentcloud.com/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).
27257
27868
  * @type {string || null}
27258
27869
  */
27259
27870
  this.ErrCodeExt = null;
@@ -27507,165 +28118,129 @@ class SmartSubtitleTemplateItem extends AbstractModel {
27507
28118
  super();
27508
28119
 
27509
28120
  /**
27510
- * Unique identifier of the smart subtitle template.
28121
+ * <p>Unique identifier of the smart subtitle template.</p>
27511
28122
  * @type {number || null}
27512
28123
  */
27513
28124
  this.Definition = null;
27514
28125
 
27515
28126
  /**
27516
- * Smart subtitle template name.
27517
- Note: This field may return null, indicating that no valid value can be obtained.
28127
+ * <p>Smart subtitle template name.</p>
28128
+ Note: This field may return null, indicating that no valid values can be obtained.
27518
28129
  * @type {string || null}
27519
28130
  */
27520
28131
  this.Name = null;
27521
28132
 
27522
28133
  /**
27523
- * Smart subtitle template description.
27524
- Note: This field may return null, indicating that no valid value can be obtained.
28134
+ * <p>Smart subtitle template description.</p>
28135
+ Note: This field may return null, indicating that no valid values can be obtained.
27525
28136
  * @type {string || null}
27526
28137
  */
27527
28138
  this.Comment = null;
27528
28139
 
27529
28140
  /**
27530
- * Template type. Valid values:
27531
- * Preset: system preset template
27532
- * Custom: user-defined template
27533
- Note: This field may return null, indicating that no valid value can be obtained.
28141
+ * <p>Template type. Valid values:</p><ul><li>Preset: preset template.</li><li>Custom: custom template.</li></ul>
28142
+ Note: This field may return null, indicating that no valid values can be obtained.
27534
28143
  * @type {string || null}
27535
28144
  */
27536
28145
  this.Type = null;
27537
28146
 
27538
28147
  /**
27539
- * ASR hotword lexicon parameter.
27540
- Note: This field may return null, indicating that no valid value can be obtained.
28148
+ * <p>ASR hotword lexicon parameters.</p>
28149
+ Note: This field may return null, indicating that no valid values can be obtained.
27541
28150
  * @type {AsrHotWordsConfigure || null}
27542
28151
  */
27543
28152
  this.AsrHotWordsConfigure = null;
27544
28153
 
27545
28154
  /**
27546
- * Name of the hotword lexicon associated with the template.
27547
- Note: This field may return null, indicating that no valid value can be obtained.
28155
+ * <p>Name of the hotword lexicon associated with the template.</p>
28156
+ Note: This field may return null, indicating that no valid values can be obtained.
27548
28157
  * @type {string || null}
27549
28158
  */
27550
28159
  this.AsrHotWordsLibraryName = null;
27551
28160
 
27552
28161
  /**
27553
- * List of source languages of the video with smart subtitles.
27554
- `zh`: Simplified Chinese.
27555
- `yue`: Cantonese.
27556
- `zh-PY`: Chinese, English, and Cantonese.
27557
- `zh_medical`: Chinese (medical scenario).
27558
- `zh_dialect`: Chinese dialect.
27559
- `prime_zh`: Chinese, English, and Chinese dialects.
27560
- `zh_en`: Chinese and English.
27561
- `en`: English.
27562
- `ja`: Japanese.
27563
- `ko`: Korean.
27564
- `fr`: French.
27565
- `es`: Spanish.
27566
- `it`: Italian.
27567
- `de`: German.
27568
- `tr`: Turkish.
27569
- `ru`: Russian.
27570
- `pt`: Portuguese (Brazil).
27571
- `pt-PT`: Portuguese (Portugal).
27572
- `vi`: Vietnamese.
27573
- `id`: Indonesian.
27574
- `ms`: Malay.
27575
- `th`: Thai.
27576
- `ar`: Arabic.
27577
- `hi`: Hindi.
27578
- `fil`: Filipino.
27579
- `auto`: automatic recognition (it is only supported in pure subtitle translation).
28162
+ * <p>Video source language list for smart subtitle:</p><p><code>zh</code>: Simplified Chinese<br><code>yue</code>: Cantonese<br><code>zh-PY</code>: Chinese, English, and Cantonese<br><code>zh_medical</code>: Chinese healthcare<br><code>zh_dialect</code>: Chinese dialect<br><code>prime_zh</code>: Chinese and English dialects<br><code>zh_en</code>: Chinese and English<br><code>en</code>: English<br><code>ja</code>: Japanese<br><code>ko</code>: Korean<br><code>fr</code>: French<br><code>es</code>: Spanish<br><code>it</code>: Italian<br><code>de</code>: German<br><code>tr</code>: Turkish<br><code>ru</code>: Russian<br><code>pt</code>: Portuguese (Brazil)<br><code>pt-PT</code>: Portuguese (Portugal)<br><code>vi</code>: Vietnamese<br><code>id</code>: Indonesian<br><code>ms</code>: Malay<br><code>th</code>: Thai<br><code>ar</code>: Arabic<br><code>hi</code>: Hindi<br><code>fil</code>: Filipino<br><code>auto</code>: Automatic identification (only supported for subtitle translation)</p>
27580
28163
  * @type {string || null}
27581
28164
  */
27582
28165
  this.VideoSrcLanguage = null;
27583
28166
 
27584
28167
  /**
27585
- * Smart subtitle file format.
27586
- - vtt: WebVTT.- srt: SRT.- original: same as the source subtitle file (for subtitle translation templates).- Not specified or empty: no subtitle file generated.Note: This field may return null, indicating that no valid values can be obtained.
28168
+ * <p>Smart subtitle file format.</p><ul><li>vtt: WebVTT.</li><li>srt: SRT.</li><li>original: same as the source subtitle file (for subtitle translation templates).</li><li>Not specified or empty: no subtitle file generated.</li></ul>
28169
+ Note: This field may return null, indicating that no valid values can be obtained.
27587
28170
  * @type {string || null}
27588
28171
  */
27589
28172
  this.SubtitleFormat = null;
27590
28173
 
27591
28174
  /**
27592
- * Smart subtitle language type.
27593
- 0: source language1: target language
27594
- 2: source language + target language
27595
- 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.
28175
+ * <p>Smart subtitle language type.<br>0: source language.<br>1: target language.<br>2: source language and target language.<br>Only 0 is supported when TranslateSwitch is OFF.<br>Only 1 or 2 is supported when TranslateSwitch is ON.</p>
27596
28176
  * @type {number || null}
27597
28177
  */
27598
28178
  this.SubtitleType = null;
27599
28179
 
27600
28180
  /**
27601
- * Subtitle translation switch.
27602
- ON: enable translation
27603
- OFF: disable translation
27604
- Note: This field may return null, indicating that no valid value can be obtained.
28181
+ * <p>Subtitle translation switch.<br>ON: enables translation.<br>OFF: disables translation.</p>
28182
+ Note: This field may return null, indicating that no valid values can be obtained.
27605
28183
  * @type {string || null}
27606
28184
  */
27607
28185
  this.TranslateSwitch = null;
27608
28186
 
27609
28187
  /**
27610
- * Target language for subtitle translation.
27611
- This field is valid when the value of TranslateSwitch is ON.
27612
- `zh`: Simplified Chinese.
27613
- `zh-TW`: Traditional Chinese.
27614
- `en`: English.
27615
- `ja`: Japanese.
27616
- `ko`: Korean.
27617
- `fr`: French.
27618
- `es`: Spanish.
27619
- `it`: Italian.
27620
- `de`: German.
27621
- `tr`: Turkish.
27622
- `ru`: Russian.
27623
- `pt`: Portuguese (Brazil).
27624
- `pt-PT`: Portuguese (Portugal).
27625
- `vi`: Vietnamese.
27626
- `id`: Indonesian.
27627
- `ms`: Malay.
27628
- `th`: Thai.
27629
- `ar`: Arabic.
27630
- `hi`: Hindi.
27631
- `fil`: Filipino.
27632
- **Note**: Use `/` to separate multiple languages, such as `en/ja`, which indicates English and Japanese.
28188
+ * <p>Target language for subtitle translation.<br>This parameter takes effect when TranslateSwitch is ON.<br><code>zh</code>: Simplified Chinese<br><code>zh-TW</code>: Traditional Chinese<br><code>en</code>: English<br><code>ja</code>: Japanese<br><code>ko</code>: Korean<br><code>fr</code>: French<br><code>es</code>: Spanish<br><code>it</code>: Italian<br><code>de</code>: German<br><code>tr</code>: Turkish<br><code>ru</code>: Russian<br><code>pt</code>: Portuguese (Brazil)<br><code>pt-PT</code>: Portuguese (Portugal)<br><code>vi</code>: Vietnamese<br><code>id</code>: Indonesian<br><code>ms</code>: Malay<br><code>th</code>: Thai<br><code>ar</code>: Arabic<br><code>hi</code>: Hindi<br><code>fil</code>: Filipino</p><p><strong>Note</strong>: Use <code>/</code> to separate multiple languages, such as <code>en/ja</code>, which indicates English and Japanese.</p>
27633
28189
  Note: This field may return null, indicating that no valid values can be obtained.
27634
28190
  * @type {string || null}
27635
28191
  */
27636
28192
  this.TranslateDstLanguage = null;
27637
28193
 
27638
28194
  /**
27639
- * Template creation time in [ISO datetime format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
28195
+ * <p>Template creation time, in <a href="https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52">ISO date format</a>.</p>
27640
28196
  * @type {string || null}
27641
28197
  */
27642
28198
  this.CreateTime = null;
27643
28199
 
27644
28200
  /**
27645
- * Last modification time of the template in [ISO datetime format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
28201
+ * <p>Last template modification time, in <a href="https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52">ISO date format</a>.</p>
27646
28202
  * @type {string || null}
27647
28203
  */
27648
28204
  this.UpdateTime = null;
27649
28205
 
27650
28206
  /**
27651
- * Alias of the preset smart subtitle template.
27652
- Note: This field may return null, indicating that no valid value can be obtained.
28207
+ * <p>Preset template alias for smart subtitle.</p>
28208
+ Note: This field may return null, indicating that no valid values can be obtained.
27653
28209
  * @type {string || null}
27654
28210
  */
27655
28211
  this.AliasName = null;
27656
28212
 
27657
28213
  /**
27658
- * Subtitle processing type:- 0: ASR subtitle recognition.- 1: subtitle translation.- 2: OCR subtitle recognition.
28214
+ * <p>Subtitle processing type:</p><ul><li>0: ASR.</li><li>1: subtitle translation.</li><li>2: OCR.</li></ul>
27659
28215
  * @type {number || null}
27660
28216
  */
27661
28217
  this.ProcessType = null;
27662
28218
 
27663
28219
  /**
27664
- * Area configurations for the subtitle OCR extraction box.Note: This field may return null, indicating that no valid values can be obtained.
28220
+ * <p>Area configurations for the subtitle OCR extraction box.</p>
28221
+ Note: This field may return null, indicating that no valid values can be obtained.
27665
28222
  * @type {SelectingSubtitleAreasConfig || null}
27666
28223
  */
27667
28224
  this.SelectingSubtitleAreasConfig = null;
27668
28225
 
28226
+ /**
28227
+ * <p>Subtitle burn-in template ID.</p>
28228
+ * @type {number || null}
28229
+ */
28230
+ this.SubtitleEmbedId = null;
28231
+
28232
+ /**
28233
+ * <p>Speaker identification mode. Valid values:<br>0: Speaker identification is disabled.<br>1: Speaker identification is enabled.<br>Default value: 0.</p>
28234
+ * @type {number || null}
28235
+ */
28236
+ this.SpeakerMode = null;
28237
+
28238
+ /**
28239
+ * <p>Indicates whether to output the identified speaker to the subtitle file. Valid values:<br>0: The speaker is not output to the subtitle file.<br>1: The speaker is output to the VTT subtitle file.<br>Note: To use this parameter, the value of SpeakerMode cannot be 0.<br>Default value: 0.</p>
28240
+ * @type {number || null}
28241
+ */
28242
+ this.SpeakerLabel = null;
28243
+
27669
28244
  }
27670
28245
 
27671
28246
  /**
@@ -27701,6 +28276,9 @@ Note: This field may return null, indicating that no valid value can be obtained
27701
28276
  obj.deserialize(params.SelectingSubtitleAreasConfig)
27702
28277
  this.SelectingSubtitleAreasConfig = obj;
27703
28278
  }
28279
+ this.SubtitleEmbedId = 'SubtitleEmbedId' in params ? params.SubtitleEmbedId : null;
28280
+ this.SpeakerMode = 'SpeakerMode' in params ? params.SpeakerMode : null;
28281
+ this.SpeakerLabel = 'SpeakerLabel' in params ? params.SpeakerLabel : null;
27704
28282
 
27705
28283
  }
27706
28284
  }
@@ -28316,6 +28894,55 @@ If the value of Type is 1, the base64-encoded content of the hotword file is ret
28316
28894
  }
28317
28895
  }
28318
28896
 
28897
+ /**
28898
+ * TextToSpeechAsync request structure.
28899
+ * @class
28900
+ */
28901
+ class TextToSpeechAsyncRequest extends AbstractModel {
28902
+ constructor(){
28903
+ super();
28904
+
28905
+ /**
28906
+ * <p>Text to convert to speech.</p>
28907
+ * @type {string || null}
28908
+ */
28909
+ this.Text = null;
28910
+
28911
+ /**
28912
+ * <p>Voice ID.</p>
28913
+ * @type {string || null}
28914
+ */
28915
+ this.VoiceId = null;
28916
+
28917
+ /**
28918
+ * <p>Text language. The default value is Chinese.</p>
28919
+ * @type {string || null}
28920
+ */
28921
+ this.TextLang = null;
28922
+
28923
+ /**
28924
+ * <p>Extended parameters in the format of a JSON string.</p><p>synExt (Object): Extended text to speech parameter.<br>  duration (Float): Synthesized audio duration, in seconds. Example: 5.2.<br>  sampleRate (Integer): Synthesized audio sample rate. Default value: 16000. Supported values: [8000,16000,22050,32000,44100].<br>  pitch (Integer): -Pitch. Default value: 0 (original voice output). Value range: [-12, 12].</p><p>transExt (Object): Extended translation parameter.<br>  transInfo (Object).<br>   transDst (String): Target language, such as en.<br>  transRequirement (String): Translation requirements.</p>
28925
+ * @type {string || null}
28926
+ */
28927
+ this.ExtParam = null;
28928
+
28929
+ }
28930
+
28931
+ /**
28932
+ * @private
28933
+ */
28934
+ deserialize(params) {
28935
+ if (!params) {
28936
+ return;
28937
+ }
28938
+ this.Text = 'Text' in params ? params.Text : null;
28939
+ this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
28940
+ this.TextLang = 'TextLang' in params ? params.TextLang : null;
28941
+ this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
28942
+
28943
+ }
28944
+ }
28945
+
28319
28946
  /**
28320
28947
  * CreateSubtitleEmbedTemplate response structure.
28321
28948
  * @class
@@ -29188,7 +29815,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
29188
29815
  }
29189
29816
 
29190
29817
  /**
29191
- *
29818
+ * Output parameter setting for synchronous dubbing.
29192
29819
  * @class
29193
29820
  */
29194
29821
  class SyncDubbingOutputOption extends AbstractModel {
@@ -29196,7 +29823,7 @@ class SyncDubbingOutputOption extends AbstractModel {
29196
29823
  super();
29197
29824
 
29198
29825
  /**
29199
- *
29826
+ * <p>Output type of the synthesis result. </p><p>Enumeration values: </p><ul><li>data: Audio base64 encoding, </li><li>url: Audio URL, valid for 24 hours.</li></ul>
29200
29827
  * @type {string || null}
29201
29828
  */
29202
29829
  this.Type = null;
@@ -29347,11 +29974,17 @@ class AiAnalysisTaskDubbingInput extends AbstractModel {
29347
29974
  super();
29348
29975
 
29349
29976
  /**
29350
- * Video translation template ID.
29977
+ * <p>ID of the video localization template.</p>
29351
29978
  * @type {number || null}
29352
29979
  */
29353
29980
  this.Definition = null;
29354
29981
 
29982
+ /**
29983
+ * <p>Extended parameter.</p>
29984
+ * @type {string || null}
29985
+ */
29986
+ this.ExtendedParameter = null;
29987
+
29355
29988
  }
29356
29989
 
29357
29990
  /**
@@ -29362,6 +29995,7 @@ class AiAnalysisTaskDubbingInput extends AbstractModel {
29362
29995
  return;
29363
29996
  }
29364
29997
  this.Definition = 'Definition' in params ? params.Definition : null;
29998
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
29365
29999
 
29366
30000
  }
29367
30001
  }
@@ -30853,6 +31487,92 @@ Note: This field may return null, indicating that no valid value can be obtained
30853
31487
  }
30854
31488
  }
30855
31489
 
31490
+ /**
31491
+ * Episode project information.
31492
+ * @class
31493
+ */
31494
+ class Project extends AbstractModel {
31495
+ constructor(){
31496
+ super();
31497
+
31498
+ /**
31499
+ * <p>Project ID.</p>
31500
+ * @type {string || null}
31501
+ */
31502
+ this.ProjectId = null;
31503
+
31504
+ /**
31505
+ * <p>Project name.</p>
31506
+ * @type {string || null}
31507
+ */
31508
+ this.ProjectName = null;
31509
+
31510
+ /**
31511
+ * <p>Project description.</p>
31512
+ * @type {string || null}
31513
+ */
31514
+ this.Description = null;
31515
+
31516
+ /**
31517
+ * <p>Project term base.</p>
31518
+ * @type {Array.<TermBase> || null}
31519
+ */
31520
+ this.TermBase = null;
31521
+
31522
+ /**
31523
+ * <p>List of characters.</p>
31524
+ * @type {Array.<Speakers> || null}
31525
+ */
31526
+ this.Speakers = null;
31527
+
31528
+ /**
31529
+ * <p>Creation time (Unix timestamp).</p>
31530
+ * @type {number || null}
31531
+ */
31532
+ this.CreatedAt = null;
31533
+
31534
+ /**
31535
+ * <p>Update time (Unix timestamp).</p>
31536
+ * @type {number || null}
31537
+ */
31538
+ this.UpdatedAt = null;
31539
+
31540
+ }
31541
+
31542
+ /**
31543
+ * @private
31544
+ */
31545
+ deserialize(params) {
31546
+ if (!params) {
31547
+ return;
31548
+ }
31549
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
31550
+ this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
31551
+ this.Description = 'Description' in params ? params.Description : null;
31552
+
31553
+ if (params.TermBase) {
31554
+ this.TermBase = new Array();
31555
+ for (let z in params.TermBase) {
31556
+ let obj = new TermBase();
31557
+ obj.deserialize(params.TermBase[z]);
31558
+ this.TermBase.push(obj);
31559
+ }
31560
+ }
31561
+
31562
+ if (params.Speakers) {
31563
+ this.Speakers = new Array();
31564
+ for (let z in params.Speakers) {
31565
+ let obj = new Speakers();
31566
+ obj.deserialize(params.Speakers[z]);
31567
+ this.Speakers.push(obj);
31568
+ }
31569
+ }
31570
+ this.CreatedAt = 'CreatedAt' in params ? params.CreatedAt : null;
31571
+ this.UpdatedAt = 'UpdatedAt' in params ? params.UpdatedAt : null;
31572
+
31573
+ }
31574
+ }
31575
+
30856
31576
  /**
30857
31577
  * The result of a content moderation task of a scheme.
30858
31578
  * @class
@@ -31759,6 +32479,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
31759
32479
  }
31760
32480
  }
31761
32481
 
32482
+ /**
32483
+ * UpdateProject response structure.
32484
+ * @class
32485
+ */
32486
+ class UpdateProjectResponse extends AbstractModel {
32487
+ constructor(){
32488
+ super();
32489
+
32490
+ /**
32491
+ * 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.
32492
+ * @type {string || null}
32493
+ */
32494
+ this.RequestId = null;
32495
+
32496
+ }
32497
+
32498
+ /**
32499
+ * @private
32500
+ */
32501
+ deserialize(params) {
32502
+ if (!params) {
32503
+ return;
32504
+ }
32505
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
32506
+
32507
+ }
32508
+ }
32509
+
31762
32510
  /**
31763
32511
  * Face enhancement configuration.
31764
32512
  * @class
@@ -31914,11 +32662,17 @@ class AiAnalysisTaskFrameTagInput extends AbstractModel {
31914
32662
  super();
31915
32663
 
31916
32664
  /**
31917
- * Intelligent frame-specific video tagging template ID.
32665
+ * <p>ID of the intelligent video frame-by-frame tagging template.</p>
31918
32666
  * @type {number || null}
31919
32667
  */
31920
32668
  this.Definition = null;
31921
32669
 
32670
+ /**
32671
+ * <p>Extended parameter.</p>
32672
+ * @type {string || null}
32673
+ */
32674
+ this.ExtendedParameter = null;
32675
+
31922
32676
  }
31923
32677
 
31924
32678
  /**
@@ -31929,6 +32683,7 @@ class AiAnalysisTaskFrameTagInput extends AbstractModel {
31929
32683
  return;
31930
32684
  }
31931
32685
  this.Definition = 'Definition' in params ? params.Definition : null;
32686
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
31932
32687
 
31933
32688
  }
31934
32689
  }
@@ -33359,39 +34114,39 @@ class SyncDubbingResponse extends AbstractModel {
33359
34114
  super();
33360
34115
 
33361
34116
  /**
33362
- * Error code. 0 is returned if the request is successful.
34117
+ * <p>Error code. 0 is returned if the request is successful.</p>
33363
34118
  * @type {number || null}
33364
34119
  */
33365
34120
  this.ErrorCode = null;
33366
34121
 
33367
34122
  /**
33368
- * Error message. success is returned if the request is successful.
34123
+ * <p>Error message. success is returned if the request is successful.</p>
33369
34124
  * @type {string || null}
33370
34125
  */
33371
34126
  this.Msg = null;
33372
34127
 
33373
34128
  /**
33374
- * Synthetic audio in Base64 encoding and WAV format.
34129
+ * <p>Synthetic audio in Base64 encoding and WAV format.</p>
33375
34130
  Note: This field may return null, indicating that no valid values can be obtained.
33376
34131
  * @type {string || null}
33377
34132
  */
33378
34133
  this.AudioData = null;
33379
34134
 
33380
34135
  /**
33381
- *
34136
+ * <p>Synthetic audio URL. It is valid for 24 hours.</p>
33382
34137
  * @type {string || null}
33383
34138
  */
33384
34139
  this.AudioUrl = null;
33385
34140
 
33386
34141
  /**
33387
- * Cloned voice type ID.
34142
+ * <p>Cloned voice ID.</p>
33388
34143
  Note: This field may return null, indicating that no valid values can be obtained.
33389
34144
  * @type {string || null}
33390
34145
  */
33391
34146
  this.VoiceId = null;
33392
34147
 
33393
34148
  /**
33394
- *
34149
+ * <p>Extended information in the format of a JSON string. </p><p>duration: Duration of the resulting audio, in seconds.</p>
33395
34150
  * @type {string || null}
33396
34151
  */
33397
34152
  this.ExtInfo = null;
@@ -34792,7 +35547,7 @@ class ProcessLiveStreamRequest extends AbstractModel {
34792
35547
  super();
34793
35548
 
34794
35549
  /**
34795
- * <p>The live streaming URL (must be a live streaming address, supporting rtmp, hls, flv, trtc, webrtc, srt, etc.).<br>The trtc address is as follows:<br> trtc://trtc.rtc.qq.com/mps/<code>&lt;roomid&gt;</code>?sdkappid=<code>&lt;sdkappid&gt;</code>&amp;userid=<code>&lt;userid&gt;</code>&amp;usersig=<code>&lt;usersig&gt;</code><br><code>&lt;roomid&gt;</code> is the trtc room number ID, which must be a number.<br><code>&lt;sdkappid&gt;</code> is the trtc SDK app ID.<br><code>&lt;userid&gt;</code> is the user ID of the service entering the room, which can distinguish robots.<br><code>&lt;usersig&gt;</code> is the trtc user's signature.</p><p>WebRTC supports the live stream of <a href="https://www.tencentcloud.com/product/leb?from_cn_redirect=1">LEB</a>. To obtain the address, <a href="https://www.tencentcloud.com/document/product/267/32720?from_cn_redirect=1">see</a>.</p><p>For SRT-supported addresses, <a href="https://ffmpeg.org/ffmpeg-protocols.html#srt">refer</a>.</p>
35550
+ * <p>The live streaming URL (must be a live streaming address, supporting rtmp, hls, flv, trtc, webrtc, srt, etc.).<br>The trtc address is as follows:<br> trtc://trtc.rtc.qq.com/mps/<code>&lt;roomid&gt;</code>?sdkappid=<code>&lt;sdkappid&gt;</code>&amp;userid=<code>&lt;userid&gt;</code>&amp;usersig=<code>&lt;usersig&gt;</code><br><code>&lt;roomid&gt;</code> is the trtc room number ID, which must be a number.<br><code>&lt;sdkappid&gt;</code> is the trtc SDK app ID.<br><code>&lt;userid&gt;</code> is the user ID of the service entering the room, which can distinguish robots.<br><code>&lt;usersig&gt;</code> is the trtc user's signature.</p><p>WebRTC supports the live stream of <a href="https://www.tencentcloud.com/products/css?from_qcintl=topnav&lang=en&pg=">CSS</a>. To obtain the address, <a href="https://www.tencentcloud.com/document/product/267/32720?from_cn_redirect=1">see</a>.</p><p>For SRT-supported addresses, <a href="https://ffmpeg.org/ffmpeg-protocols.html#srt">refer</a>.</p>
34796
35551
  * @type {string || null}
34797
35552
  */
34798
35553
  this.Url = null;
@@ -35385,7 +36140,12 @@ class CreateSmartSubtitleTemplateRequest extends AbstractModel {
35385
36140
  this.Name = null;
35386
36141
 
35387
36142
  /**
35388
- * <p>Smart subtitling video source language<br>OCR recognition supports the following languages:<br><code>zh_en</code>: Chinese-English<br><code>multi</code>: Other<br>ASR recognition and pure caption translation currently support the following languages:<br><code>auto</code>: Auto-identification<br><code>zh</code>: Simplified Chinese<br><code>en</code>: English<br><code>ja</code>: Japanese<br><code>ko</code>: Korean<br><code>zh-PY</code>: Chinese-English-Cantonese<br><code>zh_medical</code>: Chinese health care<br><code>vi</code>: Vietnamese<br><code>ms</code>: Malay<br><code>id</code>: Indonesian<br><code>fil</code>: Filipino<br><code>th</code>: Thai<br><code>pt</code>: Portuguese<br><code>tr</code>: Turkish<br><code>ar</code>: Arabic<br><code>es</code>: Spanish<br><code>hi</code>: Hindi<br><code>fr</code>: French<br><code>de</code>: German<br><code>it</code>: Italian<br><code>zh_dialect</code>: Chinese dialect<br><code>zh_en</code>: Chinese-English<br><code>yue</code>: Cantonese<br><code>ru</code>: Russian<br><code>prime_zh</code>: Chinese-English dialect<br><code>af-ZA</code>: Afrikaans (South Africa)<br><code>sq-AL</code>: Albanian (Albania)<br><code>am-ET</code>: Amharic (Ethiopia)<br><code>ar-DZ</code>: Arabic (Algeria)<br><code>ar-BH</code>: Arabic (Bahrain)<br><code>ar-EG</code>: Arabic (Egypt)<br><code>ar-IQ</code>: Arabic (Iraq)<br><code>ar-IL</code>: Arabic (Israel)<br><code>ar-JO</code>: Arabic (Jordan)<br><code>ar-KW</code>: Arabic (Kuwait)<br><code>ar-LB</code>: Arabic (Lebanon)<br><code>ar-MR</code>: Arabic (Mauritania)<br><code>ar-MA</code>: Arabic (Morocco)<br><code>ar-OM</code>: Arabic (Oman)<br><code>ar-QA</code>: Arabic (Qatar)<br><code>ar-SA</code>: Arabic (Saudi Arabia)<br><code>ar-PS</code>: Arabic (State of Palestine)<br><code>ar-SY</code>: Arabic (Syria)<br><code>ar-TN</code>: Arabic (Tunisia)<br><code>ar-AE</code>: Arabic (United Arab Emirates)<br><code>ar-YE</code>: Arabic (Yemen)<br><code>hy-AM</code>: Armenian (Armenia)<br><code>az-AZ</code>: Azerbaijani (Azerbaijan)<br><code>eu-ES</code>: Basque (Spain)<br><code>bn-BD</code>: Bengali (Bangladesh)<br><code>bn-IN</code>: Bengali (India)<br><code>bs-BA</code>: Bosnian (Bosnia and Herzegovina)<br><code>bg-BG</code>: Bulgarian (Bulgaria)<br><code>my-MM</code>: Burmese (Myanmar)<br><code>ca-ES</code>: Catalan (Spain)<br><code>hr-HR</code>: Croatian (Croatia)<br><code>cs-CZ</code>: Czech (Czech Republic)<br><code>da-DK</code>: Danish (Denmark)<br><code>nl-BE</code>: Dutch (Belgium)<br><code>nl-NL</code>: Dutch (Netherlands)<br><code>en-AU</code>: English (Australia)<br><code>en-CA</code>: English (Canada)<br><code>en-GH</code>: English (Ghana)<br><code>en-HK</code>: English (Hong Kong (China))<br><code>en-IN</code>: English (India)<br><code>en-IE</code>: English (Ireland)<br><code>en-KE</code>: English (Kenya)<br><code>en-NZ</code>: English (New Zealand)<br><code>en-NG</code>: English (Nigeria)<br><code>en-PK</code>: English (Pakistan)<br><code>en-PH</code>: English (Philippines)<br><code>en-SG</code>: English (Singapore)<br><code>en-ZA</code>: English (South Africa)<br><code>en-TZ</code>: English (Tanzania)<br><code>en-GB</code>: English (UK)<br><code>en-US</code>: English (United States)<br><code>et-EE</code>: Estonian (Estonia)<br><code>fil-PH</code>: Filipino (Philippines)<br><code>fi-FI</code>: Finnish (Finland)<br><code>fr-BE</code>: French (Belgium)<br><code>fr-CA</code>: French (Canada)<br><code>fr-FR</code>: French (France)<br><code>fr-CH</code>: French (Switzerland)<br><code>gl-ES</code>: Galician (Spain)<br><code>ka-GE</code>: Georgian (Georgia)<br><code>el-GR</code>: Greek (Greece)<br><code>gu-IN</code>: Gujarati (India)<br><code>iw-IL</code>: Hebrew (Israel)<br><code>hi-IN</code>: Hindi (India)<br><code>hu-HU</code>: Hungarian (Hungary)<br><code>is-IS</code>: Icelandic (Iceland)<br><code>id-ID</code>: Indonesian (Indonesia)<br><code>it-IT</code>: Italian (Italy)<br><code>it-CH</code>: Italian (Switzerland)<br><code>ja-JP</code>: Japanese (Japan)<br><code>jv-ID</code>: Javanese (Indonesia)<br><code>kn-IN</code>: Kannada (India)<br><code>kk-KZ</code>: Kazakh (Kazakhstan)<br><code>km-KH</code>: Khmer (Cambodia)<br><code>rw-RW</code>: Kinyarwanda (Rwanda)<br><code>ko-KR</code>: Korean (South Korea)<br><code>lo-LA</code>: Lao (Laos)<br><code>lv-LV</code>: Latvian (Latvia)<br><code>lt-LT</code>: Lithuanian (Lithuania)<br><code>mk-MK</code>: Macedonian (North Macedonia)<br><code>ms-MY</code>: Malay (Malaysia)<br><code>ml-IN</code>: Malayalam (India)<br><code>mr-IN</code>: Marathi (India)<br><code>mn-MN</code>: Mongolian (Mongolia)<br><code>ne-NP</code>: Nepali (Nepal)<br><code>no-NO</code>: Norwegian Bokmål (Norway)<br><code>fa-IR</code>: Persian (Iran)<br><code>pl-PL</code>: Polish (Poland)<br><code>pt-BR</code>: Portuguese (Brazil)<br><code>pt-PT</code>: Portuguese (Portugal)<br><code>ro-RO</code>: Romanian (Romania)<br><code>ru-RU</code>: Russian (Russia)<br><code>sr-RS</code>: Serbian (Serbia)<br><code>si-LK</code>: Sinhalese (Sri Lanka)<br><code>sk-SK</code>: Slovak (Slovakia)<br><code>sl-SI</code>: Slovenian (Slovenia)<br><code>st-ZA</code>: Southern Sotho (South Africa)<br><code>es-AR</code>: Spanish (Argentina)<br><code>es-BO</code>: Spanish (Bolivia)<br><code>es-CL</code>: Spanish (Chile)<br><code>es-CO</code>: Spanish (Colombia)<br><code>es-CR</code>: Spanish (Costa Rica)<br><code>es-DO</code>: Spanish (Dominican Republic)<br><code>es-EC</code>: Spanish (Ecuador)<br><code>es-SV</code>: Spanish (El Salvador)<br><code>es-GT</code>: Spanish (Guatemala)<br><code>es-HN</code>: Spanish (Honduras)<br><code>es-MX</code>: Spanish (Mexico)<br><code>es-NI</code>: Spanish (Nicaragua)<br><code>es-PA</code>: Spanish (Panama)<br><code>es-PY</code>: Spanish (Paraguay)<br><code>es-PE</code>: Spanish (Peru)<br><code>es-PR</code>: Spanish (Puerto Rico)<br><code>es-ES</code>: Spanish (Spain)<br><code>es-US</code>: Spanish (United States)<br><code>es-UY</code>: Spanish (Uruguay)<br><code>es-VE</code>: Spanish (Venezuela)<br><code>su-ID</code>: Sundanese (Indonesia)<br><code>sw-KE</code>: Swahili (Kenya)<br><code>sw-TZ</code>: Swahili (Tanzania)<br><code>sv-SE</code>: Swedish (Sweden)<br><code>ta-IN</code>: Tamil (India)<br><code>ta-MY</code>: Tamil (Malaysia)<br><code>ta-SG</code>: Tamil (Singapore)<br><code>ta-LK</code>: Tamil (Sri Lanka)<br><code>te-IN</code>: Telugu (India)<br><code>th-TH</code>: Thai (Thailand)<br><code>ts-ZA</code>: Tsonga (South Africa)<br><code>tr-TR</code>: Turkish (Türkiye)<br><code>uk-UA</code>: Ukrainian (Ukraine)<br><code>ur-IN</code>: Urdu (India)<br><code>ur-PK</code>: Urdu (Pakistan)<br><code>uz-UZ</code>: Uzbek (Uzbekistan)<br><code>ve-ZA</code>: Venda (South Africa)<code>vi-VN</code>: Vietnamese (Vietnam)<br><code>xh-ZA</code>: Xhosa (South Africa)<br><code>zu-ZA</code>: Zulu (South Africa)</p>
36143
+ * <p>Smart subtitling video source language<br>OCR recognition supports the following languages:<br><code>zh_en</code>: Chinese-English<br><code>multi</code>: Other<br><br>ASR recognition and pure caption translation currently support the following:
36144
+
36145
+ [ASR Supported Languages](https://www.tencentcloud.com/zh/document/product/1041/68175#ASRlanguages)
36146
+
36147
+
36148
+ Common available language codes:<br>`auto` (Auto Recognition), <br>`zh` (Simplified Chinese), <br>`en` (English), <br>`ja` (Japanese), <br>`ko` (Korean), <br>`zh-PY `(Chinese, English and Cantonese), <br>`zh_medical `(Medical Chinese), <br>`vi` (Vietnamese), <br>`ms` (Malay), <br>`id` (Indonesian), <br>`fil` (Filipino), <br>`th` (Thai), <br>`pt` (Portuguese), <br>`tr` (Turkish), <br>`ar` (Arabic), <br>`es` (Spanish), <br>`hi` (Hindi), <br>`fr` (French), <br>`de` (German), <br>`it` (Italian), <br>`zh_dialect` (Chinese Dialects), <br>`zh_en` (Chinese & English Mixed), <br>`yue` (Cantonese), <br>`ru` (Russian), <br>`prime_zh` (Chinese, English & Chinese Dialects)
35389
36149
  * @type {string || null}
35390
36150
  */
35391
36151
  this.VideoSrcLanguage = null;
@@ -35444,6 +36204,18 @@ class CreateSmartSubtitleTemplateRequest extends AbstractModel {
35444
36204
  */
35445
36205
  this.SubtitleEmbedId = null;
35446
36206
 
36207
+ /**
36208
+ * <p>Speaker identification switch. Valid values:<br>0: Speaker identification is disabled.<br>1: Speaker identification is enabled.<br>By default, speaker identification is disabled.</p>
36209
+ * @type {number || null}
36210
+ */
36211
+ this.SpeakerMode = null;
36212
+
36213
+ /**
36214
+ * <p>Indicates whether to output the identified speaker to the subtitle file. Valid values:<br>0: The speaker is not output to the subtitle file.<br>1: The speaker is output to the VTT subtitle file.<br>Note: To use this parameter, the value of SpeakerMode cannot be 0.<br>By default, the speaker is not output to the subtitle file.</p>
36215
+ * @type {number || null}
36216
+ */
36217
+ this.SpeakerLabel = null;
36218
+
35447
36219
  }
35448
36220
 
35449
36221
  /**
@@ -35474,6 +36246,8 @@ class CreateSmartSubtitleTemplateRequest extends AbstractModel {
35474
36246
  this.SelectingSubtitleAreasConfig = obj;
35475
36247
  }
35476
36248
  this.SubtitleEmbedId = 'SubtitleEmbedId' in params ? params.SubtitleEmbedId : null;
36249
+ this.SpeakerMode = 'SpeakerMode' in params ? params.SpeakerMode : null;
36250
+ this.SpeakerLabel = 'SpeakerLabel' in params ? params.SpeakerLabel : null;
35477
36251
 
35478
36252
  }
35479
36253
  }
@@ -35544,37 +36318,43 @@ class QualityControlData extends AbstractModel {
35544
36318
  super();
35545
36319
 
35546
36320
  /**
35547
- * When this field is set to true, it indicates that the video has no audio track.
36321
+ * <p>A value of true indicates that the video has no audio track.</p>
35548
36322
  * @type {boolean || null}
35549
36323
  */
35550
36324
  this.NoAudio = null;
35551
36325
 
35552
36326
  /**
35553
- * When this field is set to true, it indicates that the video has no video track.
36327
+ * <p>A value of true indicates that the video has no video track.</p>
35554
36328
  * @type {boolean || null}
35555
36329
  */
35556
36330
  this.NoVideo = null;
35557
36331
 
35558
36332
  /**
35559
- * No-reference quality score of the video (100 points in total).
36333
+ * <p>No-reference quality score of the video, on a scale of 0 to 100.</p>
35560
36334
  * @type {number || null}
35561
36335
  */
35562
36336
  this.QualityEvaluationScore = null;
35563
36337
 
35564
36338
  /**
35565
- * No-reference quality score of the video (MOS).
36339
+ * <p>No-reference quality score of the video (MOS).</p>
35566
36340
  * @type {number || null}
35567
36341
  */
35568
36342
  this.QualityEvaluationMeanOpinionScore = null;
35569
36343
 
35570
36344
  /**
35571
- * Exception items identified in content quality inspection.
36345
+ * <p>Video aesthetic score. Value range: [0, 100].</p>
36346
+ * @type {number || null}
36347
+ */
36348
+ this.AestheticEvaluationScore = null;
36349
+
36350
+ /**
36351
+ * <p>Exception items detected in content quality inspection.</p>
35572
36352
  * @type {Array.<QualityControlResult> || null}
35573
36353
  */
35574
36354
  this.QualityControlResultSet = null;
35575
36355
 
35576
36356
  /**
35577
- * Exception items identified in format diagnosis.
36357
+ * <p>Exception items detected in format diagnosis.</p>
35578
36358
  * @type {Array.<ContainerDiagnoseResultItem> || null}
35579
36359
  */
35580
36360
  this.ContainerDiagnoseResultSet = null;
@@ -35592,6 +36372,7 @@ class QualityControlData extends AbstractModel {
35592
36372
  this.NoVideo = 'NoVideo' in params ? params.NoVideo : null;
35593
36373
  this.QualityEvaluationScore = 'QualityEvaluationScore' in params ? params.QualityEvaluationScore : null;
35594
36374
  this.QualityEvaluationMeanOpinionScore = 'QualityEvaluationMeanOpinionScore' in params ? params.QualityEvaluationMeanOpinionScore : null;
36375
+ this.AestheticEvaluationScore = 'AestheticEvaluationScore' in params ? params.AestheticEvaluationScore : null;
35595
36376
 
35596
36377
  if (params.QualityControlResultSet) {
35597
36378
  this.QualityControlResultSet = new Array();
@@ -35703,410 +36484,25 @@ class TextTranslationRequest extends AbstractModel {
35703
36484
  super();
35704
36485
 
35705
36486
  /**
35706
- * Text to be translated, which must be encoded in UTF-8 format. Characters not encoded in UTF-8 format cannot be translated. Input valid text. Unconventional content, such as HTML tags, may also cause translation failures. The text length per request must be less than 2,000 characters.
36487
+ * <p>Text to be translated. The text must be encoded in UTF-8 format. Non-UTF-8 encoded characters may cause translation failures. Provide valid text. Unconventional text such as HTML tags may fail to translate. The text length per request cannot exceed 2,000 characters.</p>
35707
36488
  * @type {string || null}
35708
36489
  */
35709
36490
  this.SourceText = null;
35710
36491
 
35711
36492
  /**
35712
- * Source language. Valid values:
35713
- "auto": "automatic recognition (recognized as a language).",
35714
- "ab": "Abkhaz language.",
35715
- "ace": Acehnese.",
35716
- "ach": "Acholi.",
35717
- "af": "Afrikaans.",
35718
- "ak": "Twi (Akan).",
35719
- "am": "Amharic",
35720
- "ar": "Arabic.",
35721
- "as": "Assamese.",
35722
- "ay": "Aymara.",
35723
- "az": "Azerbaijani.",
35724
- "ba": "Bashkir.",
35725
- "ban": "Balinese",
35726
- "bbc": "Batak Toba.",
35727
- "bem": "Bemba",
35728
- "bew": "Betawi",
35729
- "bg": "Bulgarian.",
35730
- "bho": "Bhojpuri.",
35731
- "bik": "Bikol",
35732
- "bm": "Bambara.",
35733
- "bn": "Bengali.",
35734
- "br": "Breton.",
35735
- "bs": "Bosnian.",
35736
- "btx": "Batak Karo.",
35737
- "bts": "Batak Simalungun.",
35738
- "bua": "Buryat.",
35739
- "ca": "Catalan.",
35740
- "ceb": "Cebuano.",
35741
- "cgg": "Kiga",
35742
- "chm": "Meadow Mari language.",
35743
- "ckb": "Kurdish (Sorani).",
35744
- "cnh": "Hakha Chin.",
35745
- "co": "Corsican.",
35746
- "crh": "Crimean Tatar.",
35747
- "crs": "Seychellois Creole.",
35748
- "cs": "Czech.",
35749
- "cv": "Chuvash.",
35750
- "cy": "Welsh.",
35751
- "da": "Danish.",
35752
- "de": "German.",
35753
- "din": "Dinka",
35754
- "doi": "Dogri.",
35755
- "dov": "Dombe.",
35756
- "dv": "Divehi.",
35757
- "dz": "Dzongkha.",
35758
- "ee": "Ewe",
35759
- "el": "Greek.",
35760
- "en": "English.",
35761
- "eo": "Esperanto.",
35762
- "es": "Spanish.",
35763
- "et": "Estonian.",
35764
- "eu": "Basque.",
35765
- "fa": "Persian.",
35766
- "ff": "Fula.",
35767
- "fi": "Finnish.",
35768
- "fil": "Filipino (Tagalog).",
35769
- "fj": "Fijian.",
35770
- "fr": "French.",
35771
- "fr-CA": "French (Canada).",
35772
- "fr-FR": "French (France).",
35773
- "fy": "Frisian.",
35774
- "ga": "Irish.",
35775
- "gaa": "Ga.",
35776
- "gd": "Scottish Gaelic.",
35777
- "gl": "Galician.",
35778
- "gn": "Guarani.",
35779
- "gom": "Goan Konkani.",
35780
- "gu": "Gujarati.",
35781
- "gv": "Manx.",
35782
- "ha": "Hausa",
35783
- "haw": "Hawaiian.",
35784
- "he": "Hebrew.",
35785
- "hi": "Hindi.",
35786
- "hil": "Hiligaynon.",
35787
- "hmn": "Hmong.",
35788
- "hr": "Croatian.",
35789
- "hrx": "Hunsrik.",
35790
- "ht": "Haitian Creole.",
35791
- "hu": "Hungarian.",
35792
- "hy": "Armenian.",
35793
- "id": "Indonesian.",
35794
- "ig": "Igbo",
35795
- "ilo": "Iloko.",
35796
- "is": "Icelandic.",
35797
- "it": "Italian.",
35798
- "iw": "Hebrew.",
35799
- "ja": "Japanese.",
35800
- "jv": "Javanese.",
35801
- "jw": "Javanese.",
35802
- "ka": "Georgian.",
35803
- "kk": "Kazakh.",
35804
- "km": "Khmer.",
35805
- "kn": "Kanada.",
35806
- "ko": "Korean.",
35807
- "kri": "Krio",
35808
- "ku": "Kurdish (Kurmanji).",
35809
- "ktu": "Kituba.",
35810
- "ky": "Kirghiz.",
35811
- "la": "Latin.",
35812
- "lb": "Luxembourgish.",
35813
- "lg": "Ganda (Luganda).",
35814
- "li": "Limburgish.",
35815
- "lij": "Ligurian.",
35816
- "lmo": "Lombard.",
35817
- "ln": "Lingala.",
35818
- "lo": "Lao.",
35819
- "lt": "Lithuanian.",
35820
- "ltg": "Latgalian.",
35821
- "luo": "Luo",
35822
- "lus": "Mizo.",
35823
- "lv": "Latvian.",
35824
- "mai": "Maithili.",
35825
- "mak": "Makassar.",
35826
- "mg": "Malagasy.",
35827
- "mi": "Maori.",
35828
- "min": "Minangkabau.",
35829
- "mk": "Macedonian.",
35830
- "ml": "Malayalam.",
35831
- "mn": "Mongolian.",
35832
- "mr": "Marathi.",
35833
- "ms": "Malay.",
35834
- "mt": "Maltese.",
35835
- "my": "Burmese.",
35836
- "ne": "Nepali.",
35837
- "new": "Nepali (Newar).",
35838
- "nl": "Dutch.",
35839
- "no": "Norwegian.",
35840
- "nr": "Ndebele (South).",
35841
- "nso": "Northern Sotho (Sepedi).",
35842
- "nus": "Nuer.",
35843
- "ny": "Chichewa (Nyanja).",
35844
- "oc": "Occitan.",
35845
- "om": "Oromo",
35846
- "or": "Odia (Oria).",
35847
- "pa": "Punjabi.",
35848
- "pag": "Pangasinan.",
35849
- "pam": "Kapampangan.",
35850
- "pap": "Papiamento",
35851
- "pl": "Polish.",
35852
- "ps": "Pashto",
35853
- "pt": "Portuguese.",
35854
- "pt-BR": "Portuguese (Brazil).",
35855
- "pt-PT": "Portuguese (Portugal).",
35856
- "qu": "Quechuan.",
35857
- "ro": "Romanian.",
35858
- "rom": "Romani.",
35859
- "rn": "Rundi",
35860
- "ru": "Russian.",
35861
- "rw": "Kinyarwanda.",
35862
- "sa": "Sanskrit.",
35863
- "scn": "Sicilian.",
35864
- "sd": "Sindhi.",
35865
- "sg": "Sango",
35866
- "shn": "Shan.",
35867
- "si": "Sinhalese.",
35868
- "sk": "Slovak.",
35869
- "sl": "Slovene.",
35870
- "sm": "Samoan.",
35871
- "sn": "Shona.",
35872
- "so": "Somali.",
35873
- "sq": "Albanian.",
35874
- "sr": "Serbian.",
35875
- "ss": "Swati.",
35876
- "st": "Sesotho.",
35877
- "su": "Sundanese.",
35878
- "sv": "Swedish.",
35879
- "sw": "Swahili.",
35880
- "szl": "Silesian.",
35881
- "ta": "Tamil.",
35882
- "te": "Telugu.",
35883
- "tet": "Tetum.",
35884
- "tg": "Tajik.",
35885
- "th": "Thai.",
35886
- "ti": "Tigrinya.",
35887
- "tk": "Turkmen.",
35888
- "tl": " Filipino (Tagalog).",
35889
- "tn": "Tswana.",
35890
- "tr": "Turkish.",
35891
- "ts": "Tsonga.",
35892
- "tt": "Tatar.",
35893
- "ug": "Uyghur.",
35894
- "uk": "Ukrainian.",
35895
- "ur": "Urdu.",
35896
- "uz": "Uzbek.",
35897
- "vi": "Vietnamese.",
35898
- "xh": "Xhosa.",
35899
- "yi": "Yiddish.",
35900
- "yo": "Yoruba.",
35901
- "yua": "Yucatec Maya.",
35902
- "yue": "Cantonese.",
35903
- "zh": "Simplified Chinese.",
35904
- "zh-TW": "Chinese (Traditional).",
35905
- "zu": "Zulu."
36493
+ * <p>Source language. Valid values:<br> &quot;auto&quot;: &quot; Auto-detection (detects as one language)&quot;,<br> &quot;ab&quot;: &quot;Abkhaz&quot;,<br> &quot;ace&quot;: &quot;Acehnese&quot;,<br> &quot;ach&quot;: &quot;Acholi&quot;,<br> &quot;af&quot;: &quot;Afrikaans&quot;,<br> &quot;ak&quot;: &quot;Akan&quot;,<br> &quot;am&quot;: &quot;Amharic&quot;,<br> &quot;ar&quot;: &quot;Arabic&quot;,<br> &quot;as&quot;: &quot;Assamese&quot;,<br> &quot;ay&quot;: &quot;Aymara&quot;,<br> &quot;az&quot;: &quot;Azerbaijani&quot;,<br> &quot;ba&quot;: &quot;Bashkir&quot;,<br> &quot;ban&quot;: &quot;Balinese&quot;,<br> &quot;bbc&quot;: &quot;Batak Toba&quot;,<br> &quot;bem&quot;: &quot;Bemba&quot;,<br> &quot;bew&quot;: &quot;Betawi&quot;,<br> &quot;bg&quot;: &quot;Bulgarian&quot;,<br> &quot;bho&quot;: &quot;Bhojpuri&quot;,<br> &quot;bik&quot;: &quot;Bikol&quot;,<br> &quot;bm&quot;: &quot;Bambara&quot;,<br> &quot;bn&quot;: &quot;Bengali&quot;,<br> &quot;br&quot;: &quot;Breton&quot;,<br> &quot;bs&quot;: &quot;Bosnian&quot;,<br> &quot;btx&quot;: &quot;Batak Karo&quot;,<br> &quot;bts&quot;: &quot;Batak Simalungun&quot;,<br> &quot;bua&quot;: &quot;Buryat&quot;,<br> &quot;ca&quot;: &quot;Catalan&quot;,<br> &quot;ceb&quot;: &quot;Cebuano&quot;,<br> &quot;cgg&quot;: &quot;Kiga&quot;,<br> &quot;chm&quot;: &quot;Meadow Mari&quot;,<br> &quot;ckb&quot;: &quot;Kurdish (Sorani)&quot;,<br> &quot;cnh&quot;: &quot;Hakha Chin&quot;,<br> &quot;co&quot;: &quot;Corsican&quot;,<br> &quot;crh&quot;: &quot;Crimean Tatar&quot;,<br> &quot;crs&quot;: &quot;Seychellois Creole&quot;,<br> &quot;cs&quot;: &quot;Czech&quot;,<br> &quot;cv&quot;: &quot;Chuvash&quot;,<br> &quot;cy&quot;: &quot;Welsh&quot;,<br> &quot;da&quot;: &quot;Danish&quot;,<br> &quot;de&quot;: &quot;German&quot;,<br> &quot;din&quot;: &quot;Dinka&quot;,<br> &quot;doi&quot;: &quot;Dogri&quot;,<br> &quot;dov&quot;: &quot;Dombe&quot;,<br> &quot;dv&quot;: &quot;Dhivehi&quot;,<br> &quot;dz&quot;: &quot;Dzongkha&quot;,<br> &quot;ee&quot;: &quot;Ewe&quot;,<br> &quot;el&quot;: &quot;Greek&quot;,<br> &quot;en&quot;: &quot;English&quot;,<br> &quot;eo&quot;: &quot;Esperanto&quot;,<br> &quot;es&quot;: &quot;Spanish&quot;,<br> &quot;et&quot;: &quot;Estonian&quot;,<br> &quot;eu&quot;: &quot;Basque&quot;,<br> &quot;fa&quot;: &quot;Persian&quot;,<br> &quot;ff&quot;: &quot;Fula&quot;,<br> &quot;fi&quot;: &quot;Finnish&quot;,<br> &quot;fil&quot;: &quot;Filipino (Tagalog)&quot;,<br> &quot;fj&quot;: &quot;Fijian&quot;,<br> &quot;fr&quot;: &quot;French&quot;,<br> &quot;fr-CA&quot;: &quot;French (Canada)&quot;,<br> &quot;fr-FR&quot;: &quot;French (France)&quot;,<br> &quot;fy&quot;: &quot;Frisian&quot;,<br> &quot;ga&quot;: &quot;Irish&quot;,<br> &quot;gaa&quot;: &quot;Ga&quot;,<br> &quot;gd&quot;: &quot;Scottish Gaelic&quot;,<br> &quot;gl&quot;: &quot;Galician&quot;,<br> &quot;gn&quot;: &quot;Guarani&quot;,<br> &quot;gom&quot;: &quot;Konkani&quot;,<br> &quot;gu&quot;: &quot;Gujarati&quot;,<br> &quot;gv&quot;: &quot;Manx&quot;,<br> &quot;ha&quot;: &quot;Hausa&quot;,<br> &quot;haw&quot;: &quot;Hawaiian&quot;,<br> &quot;he&quot;: &quot;Hebrew&quot;,<br> &quot;hi&quot;: &quot;Hindi&quot;,<br> &quot;hil&quot;: &quot;Hiligaynon&quot;,<br> &quot;hmn&quot;: &quot;Hmong&quot;,<br> &quot;hr&quot;: &quot;Croatian&quot;,<br> &quot;hrx&quot;: &quot;Hunsrik&quot;,<br> &quot;ht&quot;: &quot;Haitian Creole&quot;,<br> &quot;hu&quot;: &quot;Hungarian&quot;,<br> &quot;hy&quot;: &quot;Armenian&quot;,<br> &quot;id&quot;: &quot;Indonesian&quot;,<br> &quot;ig&quot;: &quot;Igbo&quot;,<br> &quot;ilo&quot;: &quot;Ilocano&quot;,<br> &quot;is&quot;: &quot;Icelandic&quot;,<br> &quot;it&quot;: &quot;Italian&quot;,<br> &quot;iw&quot;: &quot;Hebrew&quot;,<br> &quot;ja&quot;: &quot;Japanese&quot;,<br> &quot;jv&quot;: &quot;Javanese&quot;,<br> &quot;jw&quot;: &quot;Javanese&quot;,<br> &quot;ka&quot;: &quot;Georgian&quot;,<br> &quot;kk&quot;: &quot;Kazakh&quot;,<br> &quot;km&quot;: &quot;Khmer&quot;,<br> &quot;kn&quot;: &quot;Kannada&quot;,<br> &quot;ko&quot;: &quot;Korean&quot;,<br> &quot;kri&quot;: &quot;Krio&quot;,<br> &quot;ku&quot;: &quot;Kurdish (Kurmanji)&quot;,<br> &quot;ktu&quot;: &quot;Kituba&quot;,<br> &quot;ky&quot;: &quot;Kyrgyz&quot;,<br> &quot;la&quot;: &quot;Latin&quot;,<br> &quot;lb&quot;: &quot;Luxembourgish&quot;,<br> &quot;lg&quot;: &quot;Ganda (Luganda)&quot;,<br> &quot;li&quot;: &quot;Limburgish&quot;,<br> &quot;lij&quot;: &quot;Ligurian&quot;,<br> &quot;lmo&quot;: &quot;Lombard&quot;,<br> &quot;ln&quot;: &quot;Lingala&quot;,<br> &quot;lo&quot;: &quot;Lao&quot;,<br> &quot;lt&quot;: &quot;Lithuanian&quot;,<br> &quot;ltg&quot;: &quot;Latgalian&quot;,<br> &quot;luo&quot;: &quot;Luo&quot;,<br> &quot;lus&quot;: &quot;Mizo&quot;,<br> &quot;lv&quot;: &quot;Latvian&quot;,<br> &quot;mai&quot;: &quot;Maithili&quot;,<br> &quot;mak&quot;: &quot;Makassar&quot;,<br> &quot;mg&quot;: &quot;Malagasy&quot;,<br> &quot;mi&quot;: &quot;Maori&quot;,<br> &quot;min&quot;: &quot;Minangkabau&quot;,<br> &quot;mk&quot;: &quot;Macedonian&quot;,<br> &quot;ml&quot;: &quot;Malayalam&quot;,<br> &quot;mn&quot;: &quot;Mongolian&quot;,<br> &quot;mr&quot;: &quot;Marathi&quot;,<br> &quot;ms&quot;: &quot;Malay&quot;,<br> &quot;mt&quot;: &quot;Maltese&quot;,<br> &quot;my&quot;: &quot;Burmese&quot;,<br> &quot;ne&quot;: &quot;Nepali&quot;,<br> &quot;new&quot;: &quot;Newari&quot;,<br> &quot;nl&quot;: &quot;Dutch&quot;,<br> &quot;no&quot;: &quot;Norwegian&quot;,<br> &quot;nr&quot;: &quot;Southern Ndebele&quot;,<br> &quot;nso&quot;: &quot;Northern Sotho (Sepedi)&quot;,<br> &quot;nus&quot;: &quot;Nuer&quot;,<br> &quot;ny&quot;: &quot;Chichewa (Nyanja)&quot;,<br> &quot;oc&quot;: &quot;Occitan&quot;,<br> &quot;om&quot;: &quot;Oromo&quot;,<br> &quot;or&quot;: &quot;Odia (Oriya)&quot;,<br> &quot;pa&quot;: &quot;Punjabi&quot;,<br> &quot;pag&quot;: &quot;Pangasinan&quot;,<br> &quot;pam&quot;: &quot;Kapampangan&quot;,<br> &quot;pap&quot;: &quot;Papiamento&quot;,<br> &quot;pl&quot;: &quot;Polish&quot;,<br> &quot;ps&quot;: &quot;Pashto&quot;,<br> &quot;pt&quot;: &quot;Portuguese&quot;,<br> &quot;pt-BR&quot;: &quot;Portuguese (Brazil)&quot;,<br> &quot;pt-PT&quot;: &quot;Portuguese (Portugal)&quot;,<br> &quot;qu&quot;: &quot;Quechua&quot;,<br> &quot;ro&quot;: &quot;Romanian&quot;,<br> &quot;rom&quot;: &quot;Romani&quot;,<br> &quot;rn&quot;: &quot;Rundi&quot;,<br> &quot;ru&quot;: &quot;Russian&quot;,<br> &quot;rw&quot;: &quot;Kinyarwanda&quot;,<br> &quot;sa&quot;: &quot;Sanskrit&quot;,<br> &quot;scn&quot;: &quot;Sicilian&quot;,<br> &quot;sd&quot;: &quot;Sindhi&quot;,<br> &quot;sg&quot;: &quot;Sango&quot;,<br> &quot;shn&quot;: &quot;Shan&quot;,<br> &quot;si&quot;: &quot;Sinhala&quot;,<br> &quot;sk&quot;: &quot;Slovak&quot;,<br> &quot;sl&quot;: &quot;Slovenian&quot;,<br> &quot;sm&quot;: &quot;Samoan&quot;,<br> &quot;sn&quot;: &quot;Shona&quot;,<br> &quot;so&quot;: &quot;Somali&quot;,<br> &quot;sq&quot;: &quot;Albanian&quot;,<br> &quot;sr&quot;: &quot;Serbian&quot;,<br> &quot;ss&quot;: &quot;Swati&quot;,<br> &quot;st&quot;: &quot;Sotho&quot;,<br> &quot;su&quot;: &quot;Sundanese&quot;,<br> &quot;sv&quot;: &quot;Swedish&quot;,<br> &quot;sw&quot;: &quot;Swahili&quot;,<br> &quot;szl&quot;: &quot;Silesian&quot;,<br> &quot;ta&quot;: &quot;Tamil&quot;,<br> &quot;te&quot;: &quot;Telugu&quot;,<br> &quot;tet&quot;: &quot;Tetum&quot;,<br> &quot;tg&quot;: &quot;Tajik&quot;,<br> &quot;th&quot;: &quot;Thai&quot;,<br> &quot;ti&quot;: &quot;Tigrinya&quot;,<br> &quot;tk&quot;: &quot;Turkmen&quot;,<br> &quot;tl&quot;: &quot;Filipino (Tagalog)&quot;,<br> &quot;tn&quot;: &quot;Tswana&quot;,<br> &quot;tr&quot;: &quot;Turkish&quot;,<br> &quot;ts&quot;: &quot;Tsonga&quot;,<br> &quot;tt&quot;: &quot;Tatar&quot;,<br> &quot;ug&quot;: &quot;Uyghur&quot;,<br> &quot;uk&quot;: &quot;Ukrainian&quot;,<br> &quot;ur&quot;: &quot;Urdu&quot;,<br> &quot;uz&quot;: &quot;Uzbek&quot;,<br> &quot;vi&quot;: &quot;Vietnamese&quot;,<br> &quot;xh&quot;: &quot;Xhosa&quot;,<br> &quot;yi&quot;: &quot;Yiddish&quot;,<br> &quot;yo&quot;: &quot;Yoruba&quot;,<br> &quot;yua&quot;: &quot;Yucatec Maya&quot;,<br> &quot;yue&quot;: &quot;Cantonese&quot;,<br> &quot;zh&quot;: &quot;Simplified Chinese&quot;,<br> &quot;zh-TW&quot;: &quot;Traditional Chinese&quot;,<br> &quot;zu&quot;: &quot;Zulu&quot;</p>
35906
36494
  * @type {string || null}
35907
36495
  */
35908
36496
  this.Source = null;
35909
36497
 
35910
36498
  /**
35911
- * Target language. Valid values:
35912
- "ab": "Abkhaz language.",
35913
- "ace": "Acehnese.",
35914
- "ach": "Acholi.",
35915
- "af": "Afrikaans.",
35916
- "ak": "Twi (Akan).",
35917
- "am": "Amharic",
35918
- "ar": "Arabic.",
35919
- "as": "Assamese.",
35920
- "ay": "Aymara.",
35921
- "az": "Azerbaijani.",
35922
- "ba": "Bashkir.",
35923
- "ban": "Balinese",
35924
- "bbc": "Batak Toba.",
35925
- "bem": "Bemba",
35926
- "bew": "Betawi",
35927
- "bg": "Bulgarian.",
35928
- "bho": "Bhojpuri.",
35929
- "bik": "Bikol",
35930
- "bm": "Bambara.",
35931
- "bn": "Bengali.",
35932
- "br": "Breton.",
35933
- "bs": "Bosnian.",
35934
- "btx": "Batak Karo.",
35935
- "bts": "Batak Simalungun.",
35936
- "bua": "Buryat.",
35937
- "ca": "Catalan.",
35938
- "ceb": "Cebuano.",
35939
- "cgg": "Kiga",
35940
- "chm": "Meadow Mari language.",
35941
- "ckb": "Kurdish (Sorani).",
35942
- "cnh": "Hakha Chin.",
35943
- "co": "Corsican.",
35944
- "crh": "Crimean Tatar.",
35945
- "crs": "Seychellois Creole.",
35946
- "cs": "Czech.",
35947
- "cv": "Chuvash.",
35948
- "cy": "Welsh.",
35949
- "da": "Danish.",
35950
- "de": "German.",
35951
- "din": "Dinka",
35952
- "doi": "Dogri.",
35953
- "dov": "Dombe.",
35954
- "dv": "Divehi.",
35955
- "dz": "Dzongkha.",
35956
- "ee": "Ewe",
35957
- "el": "Greek.",
35958
- "en": "English.",
35959
- "eo": "Esperanto.",
35960
- "es": "Spanish.",
35961
- "et": "Estonian.",
35962
- "eu": "Basque.",
35963
- "fa": "Persian.",
35964
- "ff": "Fula.",
35965
- "fi": "Finnish.",
35966
- "fil": "Filipino (Tagalog).",
35967
- "fj": "Fijian.",
35968
- "fr": "French.",
35969
- "fr-CA": "French (Canada).",
35970
- "fr-FR": "French (France).",
35971
- "fy": "Frisian.",
35972
- "ga": "Irish.",
35973
- "gaa": "Ga.",
35974
- "gd": "Scottish Gaelic.",
35975
- "gl": "Galician.",
35976
- "gn": "Guarani.",
35977
- "gom": "Goan Konkani.",
35978
- "gu": "Gujarati.",
35979
- "gv": "Manx.",
35980
- "ha": "Hausa",
35981
- "haw": "Hawaiian.",
35982
- "he": "Hebrew.",
35983
- "hi": "Hindi.",
35984
- "hil": "Hiligaynon.",
35985
- "hmn": "Hmong.",
35986
- "hr": "Croatian.",
35987
- "hrx": "Hunsrik.",
35988
- "ht": "Haitian Creole.",
35989
- "hu": "Hungarian.",
35990
- "hy": "Armenian.",
35991
- "id": "Indonesian.",
35992
- "ig": "Igbo",
35993
- "ilo": "Iloko.",
35994
- "is": "Icelandic.",
35995
- "it": "Italian.",
35996
- "iw": "Hebrew.",
35997
- "ja": "Japanese.",
35998
- "jv": "Javanese.",
35999
- "jw": "Javanese.",
36000
- "ka": "Georgian.",
36001
- "kk": "Kazakh.",
36002
- "km": "Khmer.",
36003
- "kn": "Kanada.",
36004
- "ko": "Korean.",
36005
- "kri": "Krio",
36006
- "ku": "Kurdish (Kurmanji).",
36007
- "ktu": "Kituba.",
36008
- "ky": "Kirghiz.",
36009
- "la": "Latin.",
36010
- "lb": "Luxembourgish.",
36011
- "lg": "Ganda (Luganda).",
36012
- "li": "Limburgish.",
36013
- "lij": "Ligurian.",
36014
- "lmo": "Lombard.",
36015
- "ln": "Lingala.",
36016
- "lo": "Lao.",
36017
- "lt": "Lithuanian.",
36018
- "ltg": "Latgalian.",
36019
- "luo": "Luo",
36020
- "lus": "Mizo.",
36021
- "lv": "Latvian.",
36022
- "mai": "Maithili.",
36023
- "mak": "Makassar.",
36024
- "mg": "Malagasy.",
36025
- "mi": "Maori.",
36026
- "min": "Minangkabau.",
36027
- "mk": "Macedonian.",
36028
- "ml": "Malayalam.",
36029
- "mn": "Mongolian.",
36030
- "mr": "Marathi.",
36031
- "ms": "Malay.",
36032
- "mt": "Maltese.",
36033
- "my": "Burmese.",
36034
- "ne": "Nepali.",
36035
- "new": "Nepali (Newar).",
36036
- "nl": "Dutch.",
36037
- "no": "Norwegian.",
36038
- "nr": "Ndebele (South).",
36039
- "nso": "Northern Sotho (Sepedi).",
36040
- "nus": "Nuer.",
36041
- "ny": "Chichewa (Nyanja).",
36042
- "oc": "Occitan.",
36043
- "om": "Oromo",
36044
- "or": "Odia (Oria).",
36045
- "pa": "Punjabi.",
36046
- "pag": "Pangasinan.",
36047
- "pam": "Kapampangan.",
36048
- "pap": "Papiamento",
36049
- "pl": "Polish.",
36050
- "ps": "Pashto",
36051
- "pt": "Portuguese.",
36052
- "pt-BR": "Portuguese (Brazil).",
36053
- "pt-PT": "Portuguese (Portugal).",
36054
- "qu": "Quechuan.",
36055
- "ro": "Romanian.",
36056
- "rom": "Romani.",
36057
- "rn": "Rundi",
36058
- "ru": "Russian.",
36059
- "rw": "Kinyarwanda.",
36060
- "sa": "Sanskrit.",
36061
- "scn": "Sicilian.",
36062
- "sd": "Sindhi.",
36063
- "sg": "Sango",
36064
- "shn": "Shan.",
36065
- "si": "Sinhalese.",
36066
- "sk": "Slovak.",
36067
- "sl": "Slovene.",
36068
- "sm": "Samoan.",
36069
- "sn": "Shona.",
36070
- "so": "Somali.",
36071
- "sq": "Albanian.",
36072
- "sr": "Serbian.",
36073
- "ss": "Swati.",
36074
- "st": "Sesotho.",
36075
- "su": "Sundanese.",
36076
- "sv": "Swedish.",
36077
- "sw": "Swahili.",
36078
- "szl": "Silesian.",
36079
- "ta": "Tamil.",
36080
- "te": "Telugu.",
36081
- "tet": "Tetum.",
36082
- "tg": "Tajik.",
36083
- "th": "Thai.",
36084
- "ti": "Tigrinya.",
36085
- "tk": "Turkmen.",
36086
- "tl": " Filipino (Tagalog).",
36087
- "tn": "Tswana.",
36088
- "tr": "Turkish.",
36089
- "ts": "Tsonga.",
36090
- "tt": "Tatar.",
36091
- "ug": "Uyghur.",
36092
- "uk": "Ukrainian.",
36093
- "ur": "Urdu.",
36094
- "uz": "Uzbek.",
36095
- "vi": "Vietnamese.",
36096
- "xh": "Xhosa.",
36097
- "yi": "Yiddish.",
36098
- "yo": "Yoruba.",
36099
- "yua": "Yucatec Maya.",
36100
- "yue": "Cantonese.",
36101
- "zh": "Simplified Chinese.",
36102
- "zh-TW": "Chinese (Traditional).",
36103
- "zu": "Zulu."
36499
+ * <p>Target language. Valid values:<br> &quot;ab&quot;: &quot;Abkhaz&quot;,<br> &quot;ace&quot;: &quot;Acehnese&quot;,<br> &quot;ach&quot;: &quot;Acholi&quot;,<br> &quot;af&quot;: &quot;Afrikaans&quot;,<br> &quot;ak&quot;: &quot;Akan&quot;,<br> &quot;am&quot;: &quot;Amharic&quot;,<br> &quot;ar&quot;: &quot;Arabic&quot;,<br> &quot;as&quot;: &quot;Assamese&quot;,<br> &quot;ay&quot;: &quot;Aymara&quot;,<br> &quot;az&quot;: &quot;Azerbaijani&quot;,<br> &quot;ba&quot;: &quot;Bashkir&quot;,<br> &quot;ban&quot;: &quot;Balinese&quot;,<br> &quot;bbc&quot;: &quot;Batak Toba&quot;,<br> &quot;bem&quot;: &quot;Bemba&quot;,<br> &quot;bew&quot;: &quot;Betawi&quot;,<br> &quot;bg&quot;: &quot;Bulgarian&quot;,<br> &quot;bho&quot;: &quot;Bhojpuri&quot;,<br> &quot;bik&quot;: &quot;Bikol&quot;,<br> &quot;bm&quot;: &quot;Bambara&quot;,<br> &quot;bn&quot;: &quot;Bengali&quot;,<br> &quot;br&quot;: &quot;Breton&quot;,<br> &quot;bs&quot;: &quot;Bosnian&quot;,<br> &quot;btx&quot;: &quot;Batak Karo&quot;,<br> &quot;bts&quot;: &quot;Batak Simalungun&quot;,<br> &quot;bua&quot;: &quot;Buryat&quot;,<br> &quot;ca&quot;: &quot;Catalan&quot;,<br> &quot;ceb&quot;: &quot;Cebuano&quot;,<br> &quot;cgg&quot;: &quot;Kiga&quot;,<br> &quot;chm&quot;: &quot;Meadow Mari&quot;,<br> &quot;ckb&quot;: &quot;Kurdish (Sorani)&quot;,<br> &quot;cnh&quot;: &quot;Hakha Chin&quot;,<br> &quot;co&quot;: &quot;Corsican&quot;,<br> &quot;crh&quot;: &quot;Crimean Tatar&quot;,<br> &quot;crs&quot;: &quot;Seychellois Creole&quot;,<br> &quot;cs&quot;: &quot;Czech&quot;,<br> &quot;cv&quot;: &quot;Chuvash&quot;,<br> &quot;cy&quot;: &quot;Welsh&quot;,<br> &quot;da&quot;: &quot;Danish&quot;,<br> &quot;de&quot;: &quot;German&quot;,<br> &quot;din&quot;: &quot;Dinka&quot;,<br> &quot;doi&quot;: &quot;Dogri&quot;,<br> &quot;dov&quot;: &quot;Dombe&quot;,<br> &quot;dv&quot;: &quot;Dhivehi&quot;,<br> &quot;dz&quot;: &quot;Dzongkha&quot;,<br> &quot;ee&quot;: &quot;Ewe&quot;,<br> &quot;el&quot;: &quot;Greek&quot;,<br> &quot;en&quot;: &quot;English&quot;,<br> &quot;eo&quot;: &quot;Esperanto&quot;,<br> &quot;es&quot;: &quot;Spanish&quot;,<br> &quot;et&quot;: &quot;Estonian&quot;,<br> &quot;eu&quot;: &quot;Basque&quot;,<br> &quot;fa&quot;: &quot;Persian&quot;,<br> &quot;ff&quot;: &quot;Fula&quot;,<br> &quot;fi&quot;: &quot;Finnish&quot;,<br> &quot;fil&quot;: &quot;Filipino (Tagalog)&quot;,<br> &quot;fj&quot;: &quot;Fijian&quot;,<br> &quot;fr&quot;: &quot;French&quot;,<br> &quot;fr-CA&quot;: &quot;French (Canada)&quot;,<br> &quot;fr-FR&quot;: &quot;French (France)&quot;,<br> &quot;fy&quot;: &quot;Frisian&quot;,<br> &quot;ga&quot;: &quot;Irish&quot;,<br> &quot;gaa&quot;: &quot;Ga&quot;,<br> &quot;gd&quot;: &quot;Scottish Gaelic&quot;,<br> &quot;gl&quot;: &quot;Galician&quot;,<br> &quot;gn&quot;: &quot;Guarani&quot;,<br> &quot;gom&quot;: &quot;Konkani&quot;,<br> &quot;gu&quot;: &quot;Gujarati&quot;,<br> &quot;gv&quot;: &quot;Manx&quot;,<br> &quot;ha&quot;: &quot;Hausa&quot;,<br> &quot;haw&quot;: &quot;Hawaiian&quot;,<br> &quot;he&quot;: &quot;Hebrew&quot;,<br> &quot;hi&quot;: &quot;Hindi&quot;,<br> &quot;hil&quot;: &quot;Hiligaynon&quot;,<br> &quot;hmn&quot;: &quot;Hmong&quot;,<br> &quot;hr&quot;: &quot;Croatian&quot;,<br> &quot;hrx&quot;: &quot;Hunsrik&quot;,<br> &quot;ht&quot;: &quot;Haitian Creole&quot;,<br> &quot;hu&quot;: &quot;Hungarian&quot;,<br> &quot;hy&quot;: &quot;Armenian&quot;,<br> &quot;id&quot;: &quot;Indonesian&quot;,<br> &quot;ig&quot;: &quot;Igbo&quot;,<br> &quot;ilo&quot;: &quot;Ilocano&quot;,<br> &quot;is&quot;: &quot;Icelandic&quot;,<br> &quot;it&quot;: &quot;Italian&quot;,<br> &quot;iw&quot;: &quot;Hebrew&quot;,<br> &quot;ja&quot;: &quot;Japanese&quot;,<br> &quot;jv&quot;: &quot;Javanese&quot;,<br> &quot;jw&quot;: &quot;Javanese&quot;,<br> &quot;ka&quot;: &quot;Georgian&quot;,<br> &quot;kk&quot;: &quot;Kazakh&quot;,<br> &quot;km&quot;: &quot;Khmer&quot;,<br> &quot;kn&quot;: &quot;Kannada&quot;,<br> &quot;ko&quot;: &quot;Korean&quot;,<br> &quot;kri&quot;: &quot;Krio&quot;,<br> &quot;ku&quot;: &quot;Kurdish (Kurmanji)&quot;,<br> &quot;ktu&quot;: &quot;Kituba&quot;,<br> &quot;ky&quot;: &quot;Kyrgyz&quot;,<br> &quot;la&quot;: &quot;Latin&quot;,<br> &quot;lb&quot;: &quot;Luxembourgish&quot;,<br> &quot;lg&quot;: &quot;Ganda (Luganda)&quot;,<br> &quot;li&quot;: &quot;Limburgish&quot;,<br> &quot;lij&quot;: &quot;Ligurian&quot;,<br> &quot;lmo&quot;: &quot;Lombard&quot;,<br> &quot;ln&quot;: &quot;Lingala&quot;,<br> &quot;lo&quot;: &quot;Lao&quot;,<br> &quot;lt&quot;: &quot;Lithuanian&quot;,<br> &quot;ltg&quot;: &quot;Latgalian&quot;,<br> &quot;luo&quot;: &quot;Luo&quot;,<br> &quot;lus&quot;: &quot;Mizo&quot;,<br> &quot;lv&quot;: &quot;Latvian&quot;,<br> &quot;mai&quot;: &quot;Maithili&quot;,<br> &quot;mak&quot;: &quot;Makassar&quot;,<br> &quot;mg&quot;: &quot;Malagasy&quot;,<br> &quot;mi&quot;: &quot;Maori&quot;,<br> &quot;min&quot;: &quot;Minangkabau&quot;,<br> &quot;mk&quot;: &quot;Macedonian&quot;,<br> &quot;ml&quot;: &quot;Malayalam&quot;,<br> &quot;mn&quot;: &quot;Mongolian&quot;,<br> &quot;mr&quot;: &quot;Marathi&quot;,<br> &quot;ms&quot;: &quot;Malay&quot;,<br> &quot;mt&quot;: &quot;Maltese&quot;,<br> &quot;my&quot;: &quot;Burmese&quot;,<br> &quot;ne&quot;: &quot;Nepali&quot;,<br> &quot;new&quot;: &quot;Newari&quot;,<br> &quot;nl&quot;: &quot;Dutch&quot;,<br> &quot;no&quot;: &quot;Norwegian&quot;,<br> &quot;nr&quot;: &quot;Southern Ndebele&quot;,<br> &quot;nso&quot;: &quot;Northern Sotho (Sepedi)&quot;,<br> &quot;nus&quot;: &quot;Nuer&quot;,<br> &quot;ny&quot;: &quot;Chichewa (Nyanja)&quot;,<br> &quot;oc&quot;: &quot;Occitan&quot;,<br> &quot;om&quot;: &quot;Oromo&quot;,<br> &quot;or&quot;: &quot;Odia (Oriya)&quot;,<br> &quot;pa&quot;: &quot;Punjabi&quot;,<br> &quot;pag&quot;: &quot;Pangasinan&quot;,<br> &quot;pam&quot;: &quot;Kapampangan&quot;,<br> &quot;pap&quot;: &quot;Papiamento&quot;,<br> &quot;pl&quot;: &quot;Polish&quot;,<br> &quot;ps&quot;: &quot;Pashto&quot;,<br> &quot;pt&quot;: &quot;Portuguese&quot;,<br> &quot;pt-BR&quot;: &quot;Portuguese (Brazil)&quot;,<br> &quot;pt-PT&quot;: &quot;Portuguese (Portugal)&quot;,<br> &quot;qu&quot;: &quot;Quechua&quot;,<br> &quot;ro&quot;: &quot;Romanian&quot;,<br> &quot;rom&quot;: &quot;Romani&quot;,<br> &quot;rn&quot;: &quot;Rundi&quot;,<br> &quot;ru&quot;: &quot;Russian&quot;,<br> &quot;rw&quot;: &quot;Kinyarwanda&quot;,<br> &quot;sa&quot;: &quot;Sanskrit&quot;,<br> &quot;scn&quot;: &quot;Sicilian&quot;,<br> &quot;sd&quot;: &quot;Sindhi&quot;,<br> &quot;sg&quot;: &quot;Sango&quot;,<br> &quot;shn&quot;: &quot;Shan&quot;,<br> &quot;si&quot;: &quot;Sinhala&quot;,<br> &quot;sk&quot;: &quot;Slovak&quot;,<br> &quot;sl&quot;: &quot;Slovenian&quot;,<br> &quot;sm&quot;: &quot;Samoan&quot;,<br> &quot;sn&quot;: &quot;Shona&quot;,<br> &quot;so&quot;: &quot;Somali&quot;,<br> &quot;sq&quot;: &quot;Albanian&quot;,<br> &quot;sr&quot;: &quot;Serbian&quot;,<br> &quot;ss&quot;: &quot;Swati&quot;,<br> &quot;st&quot;: &quot;Sotho&quot;,<br> &quot;su&quot;: &quot;Sundanese&quot;,<br> &quot;sv&quot;: &quot;Swedish&quot;,<br> &quot;sw&quot;: &quot;Swahili&quot;,<br> &quot;szl&quot;: &quot;Silesian&quot;,<br> &quot;ta&quot;: &quot;Tamil&quot;,<br> &quot;te&quot;: &quot;Telugu&quot;,<br> &quot;tet&quot;: &quot;Tetum&quot;,<br> &quot;tg&quot;: &quot;Tajik&quot;,<br> &quot;th&quot;: &quot;Thai&quot;,<br> &quot;ti&quot;: &quot;Tigrinya&quot;,<br> &quot;tk&quot;: &quot;Turkmen&quot;,<br> &quot;tl&quot;: &quot;Filipino (Tagalog)&quot;,<br> &quot;tn&quot;: &quot;Tswana&quot;,<br> &quot;tr&quot;: &quot;Turkish&quot;,<br> &quot;ts&quot;: &quot;Tsonga&quot;,<br> &quot;tt&quot;: &quot;Tatar&quot;,<br> &quot;ug&quot;: &quot;Uyghur&quot;,<br> &quot;uk&quot;: &quot;Ukrainian&quot;,<br> &quot;ur&quot;: &quot;Urdu&quot;,<br> &quot;uz&quot;: &quot;Uzbek&quot;,<br> &quot;vi&quot;: &quot;Vietnamese&quot;,<br> &quot;xh&quot;: &quot;Xhosa&quot;,<br> &quot;yi&quot;: &quot;Yiddish&quot;,<br> &quot;yo&quot;: &quot;Yoruba&quot;,<br> &quot;yua&quot;: &quot;Yucatec Maya&quot;,<br> &quot;yue&quot;: &quot;Cantonese&quot;,<br> &quot;zh&quot;: &quot;Simplified Chinese&quot;,<br> &quot;zh-TW&quot;: &quot;Traditional Chinese&quot;,<br> &quot;zu&quot;: &quot;Zulu&quot;</p>
36104
36500
  * @type {string || null}
36105
36501
  */
36106
36502
  this.Target = null;
36107
36503
 
36108
36504
  /**
36109
- * User extension parameter.
36505
+ * <p>User extension parameter.</p>
36110
36506
  * @type {string || null}
36111
36507
  */
36112
36508
  this.UserExtPara = null;
@@ -37148,11 +37544,17 @@ class AiAnalysisTaskHeadTailInput extends AbstractModel {
37148
37544
  super();
37149
37545
 
37150
37546
  /**
37151
- * Opening and closing segments recognition template ID.
37547
+ * <p>ID of the intro and outro recognition template.</p>
37152
37548
  * @type {number || null}
37153
37549
  */
37154
37550
  this.Definition = null;
37155
37551
 
37552
+ /**
37553
+ * <p>Extended parameter.</p>
37554
+ * @type {string || null}
37555
+ */
37556
+ this.ExtendedParameter = null;
37557
+
37156
37558
  }
37157
37559
 
37158
37560
  /**
@@ -37163,6 +37565,7 @@ class AiAnalysisTaskHeadTailInput extends AbstractModel {
37163
37565
  return;
37164
37566
  }
37165
37567
  this.Definition = 'Definition' in params ? params.Definition : null;
37568
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
37166
37569
 
37167
37570
  }
37168
37571
  }
@@ -38058,6 +38461,64 @@ Note: This field may return null, indicating that no valid values can be obtaine
38058
38461
  }
38059
38462
  }
38060
38463
 
38464
+ /**
38465
+ * DescribeVoices response structure.
38466
+ * @class
38467
+ */
38468
+ class DescribeVoicesResponse extends AbstractModel {
38469
+ constructor(){
38470
+ super();
38471
+
38472
+ /**
38473
+ * <p>Error code. 0 is returned if the request is successful.</p>
38474
+ * @type {number || null}
38475
+ */
38476
+ this.ErrorCode = null;
38477
+
38478
+ /**
38479
+ * <p>Error message. success is returned if the request is successful.</p>
38480
+ * @type {string || null}
38481
+ */
38482
+ this.Msg = null;
38483
+
38484
+ /**
38485
+ * <p>Available voice list.</p>
38486
+ Note: This field may return null, indicating that no valid values can be obtained.
38487
+ * @type {Array.<VoiceInfo> || null}
38488
+ */
38489
+ this.Voices = null;
38490
+
38491
+ /**
38492
+ * 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.
38493
+ * @type {string || null}
38494
+ */
38495
+ this.RequestId = null;
38496
+
38497
+ }
38498
+
38499
+ /**
38500
+ * @private
38501
+ */
38502
+ deserialize(params) {
38503
+ if (!params) {
38504
+ return;
38505
+ }
38506
+ this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
38507
+ this.Msg = 'Msg' in params ? params.Msg : null;
38508
+
38509
+ if (params.Voices) {
38510
+ this.Voices = new Array();
38511
+ for (let z in params.Voices) {
38512
+ let obj = new VoiceInfo();
38513
+ obj.deserialize(params.Voices[z]);
38514
+ this.Voices.push(obj);
38515
+ }
38516
+ }
38517
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
38518
+
38519
+ }
38520
+ }
38521
+
38061
38522
  /**
38062
38523
  * ModifyPersonSample response structure.
38063
38524
  * @class
@@ -39580,52 +40041,25 @@ Note: This field may return null, indicating that no valid values can be obtaine
39580
40041
  }
39581
40042
 
39582
40043
  /**
39583
- * Control parameter of a face recognition task
40044
+ * DescribeVoices request structure.
39584
40045
  * @class
39585
40046
  */
39586
- class FaceConfigureInfo extends AbstractModel {
40047
+ class DescribeVoicesRequest extends AbstractModel {
39587
40048
  constructor(){
39588
40049
  super();
39589
40050
 
39590
40051
  /**
39591
- * Switch of a face recognition task. Valid values:
39592
- <li>ON: Enables an intelligent face recognition task;</li>
39593
- <li>OFF: Disables an intelligent face recognition task.</li>
40052
+ * <p>Voice type. </p><p>Enumeration value: </p><ul><li>system: System audio.</li></ul>
39594
40053
  * @type {string || null}
39595
40054
  */
39596
- this.Switch = null;
39597
-
39598
- /**
39599
- * Face recognition filter score. If this score is reached or exceeded, a recognition result will be returned. Value range: 0-100. Default value: 95.
39600
- * @type {number || null}
39601
- */
39602
- this.Score = null;
39603
-
39604
- /**
39605
- * The default face filter labels, which specify the types of faces to return. If this parameter is left empty, the detection results for all labels are returned. Valid values:
39606
- <li>entertainment (people in the entertainment industry)</li>
39607
- <li>sport (sports celebrities)</li>
39608
- <li>politician</li>
39609
- * @type {Array.<string> || null}
39610
- */
39611
- this.DefaultLibraryLabelSet = null;
40055
+ this.VoiceType = null;
39612
40056
 
39613
40057
  /**
39614
- * Custom face tags for filter, which specify the face recognition results to return. If this parameter is not specified or left empty, the recognition results for all custom face tags are returned.
39615
- Up to 100 tags are allowed, each containing no more than 16 characters.
39616
- * @type {Array.<string> || null}
39617
- */
39618
- this.UserDefineLibraryLabelSet = null;
39619
-
39620
- /**
39621
- * Figure library. Valid values:
39622
- <li>Default: Default figure library;</li>
39623
- <li>UserDefine: Custom figure library.</li>
39624
- <li>All: Both default and custom figure libraries will be used.</li>
39625
- Default value: All (both default and custom figure libraries will be used.)
40058
+ * <p>Extended parameters in the format of a JSON string. </p><p>Other filter criteria:
40059
+ voiceName (String): Voice name, fuzzy matching. labels (Array of String): Tags. Matches voices that contain these tags.</p>
39626
40060
  * @type {string || null}
39627
40061
  */
39628
- this.FaceLibrary = null;
40062
+ this.ExtParam = null;
39629
40063
 
39630
40064
  }
39631
40065
 
@@ -39636,11 +40070,8 @@ Default value: All (both default and custom figure libraries will be used.)
39636
40070
  if (!params) {
39637
40071
  return;
39638
40072
  }
39639
- this.Switch = 'Switch' in params ? params.Switch : null;
39640
- this.Score = 'Score' in params ? params.Score : null;
39641
- this.DefaultLibraryLabelSet = 'DefaultLibraryLabelSet' in params ? params.DefaultLibraryLabelSet : null;
39642
- this.UserDefineLibraryLabelSet = 'UserDefineLibraryLabelSet' in params ? params.UserDefineLibraryLabelSet : null;
39643
- this.FaceLibrary = 'FaceLibrary' in params ? params.FaceLibrary : null;
40073
+ this.VoiceType = 'VoiceType' in params ? params.VoiceType : null;
40074
+ this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
39644
40075
 
39645
40076
  }
39646
40077
  }
@@ -40007,19 +40438,19 @@ class TextTranslationResponse extends AbstractModel {
40007
40438
  super();
40008
40439
 
40009
40440
  /**
40010
- * Text after translation.
40441
+ * <p>Translated text.</p>
40011
40442
  * @type {string || null}
40012
40443
  */
40013
40444
  this.TargetText = null;
40014
40445
 
40015
40446
  /**
40016
- * Source language. See the input parameter Source.
40447
+ * <p>Source language. See the input parameter Source.</p>
40017
40448
  * @type {string || null}
40018
40449
  */
40019
40450
  this.Source = null;
40020
40451
 
40021
40452
  /**
40022
- * Target language. See the input parameter Target.
40453
+ * <p>Target language. See the input parameter Target.</p>
40023
40454
  * @type {string || null}
40024
40455
  */
40025
40456
  this.Target = null;
@@ -40200,6 +40631,18 @@ class ModifySmartSubtitleTemplateRequest extends AbstractModel {
40200
40631
  */
40201
40632
  this.SubtitleEmbedId = null;
40202
40633
 
40634
+ /**
40635
+ * <p>Speaker identification switch. Valid values:<br>0: Speaker identification is disabled.<br>1: Speaker identification is enabled.</p>
40636
+ * @type {number || null}
40637
+ */
40638
+ this.SpeakerMode = null;
40639
+
40640
+ /**
40641
+ * <p>Indicates whether to output the identified speaker to the subtitle file. Valid values:<br>0: The speaker is not output to the subtitle file.<br>1: The speaker is output to the VTT subtitle file.<br>Note: To use this parameter, the value of SpeakerMode cannot be 0.</p>
40642
+ * @type {number || null}
40643
+ */
40644
+ this.SpeakerLabel = null;
40645
+
40203
40646
  }
40204
40647
 
40205
40648
  /**
@@ -40231,6 +40674,8 @@ class ModifySmartSubtitleTemplateRequest extends AbstractModel {
40231
40674
  this.SelectingSubtitleAreasConfig = obj;
40232
40675
  }
40233
40676
  this.SubtitleEmbedId = 'SubtitleEmbedId' in params ? params.SubtitleEmbedId : null;
40677
+ this.SpeakerMode = 'SpeakerMode' in params ? params.SpeakerMode : null;
40678
+ this.SpeakerLabel = 'SpeakerLabel' in params ? params.SpeakerLabel : null;
40234
40679
 
40235
40680
  }
40236
40681
  }
@@ -41051,44 +41496,43 @@ class SampleSnapshotTaskInput extends AbstractModel {
41051
41496
  super();
41052
41497
 
41053
41498
  /**
41054
- * Sampled screenshot template ID.
41499
+ * <p>Sampled screenshot template ID.</p>
41055
41500
  * @type {number || null}
41056
41501
  */
41057
41502
  this.Definition = null;
41058
41503
 
41059
41504
  /**
41060
- * List of up to 10 image or text watermarks.
41061
- Note: This field may return null, indicating that no valid values can be obtained.
41505
+ * <p>Watermark list. Up to 10 image or text watermarks are supported.</p>
41062
41506
  * @type {Array.<WatermarkInput> || null}
41063
41507
  */
41064
41508
  this.WatermarkSet = null;
41065
41509
 
41066
41510
  /**
41067
- * Target bucket of a sampled screenshot. If this parameter is left empty, the `OutputStorage` value of the upper folder will be inherited.
41511
+ * <p>Target storage for the file after the sampled screenshot is taken. If this is not specified, it inherits the value from the upper-level OutputStorage.</p>
41068
41512
  Note: This field may return null, indicating that no valid values can be obtained.
41069
41513
  * @type {TaskOutputStorage || null}
41070
41514
  */
41071
41515
  this.OutputStorage = null;
41072
41516
 
41073
41517
  /**
41074
- * Output path of an image file after sampled screenshot taking, which can be a relative or absolute path.
41075
- If you need to define an output path, the path must end with `.{format}`. For variable names, refer to [Filename Variable](https://intl.cloud.tencent.com/document/product/862/37039?from_cn_redirect=1).Relative path example:
41076
- <li>Filename_{Variable name}.{format}.</li>
41077
- <li>Filename.{format}.</li>
41078
- Absolute path example:
41079
- <li>/Custom path/Filename_{Variable name}.{format}.</li>
41080
- If left empty, a relative path is used by default: `{inputName}_sampleSnapshot_{definition}_{number}.{format}`.
41518
+ * <p>Output path of the image file after the sampled screenshot is taken, which can be a relative or absolute path.<br>To define the output path, the path must end with <code>.{format}</code>. For variable names, see <a href="https://www.tencentcloud.com/document/product/862/37039?from_cn_redirect=1">File Name Variable Description</a>.<br>Relative path example:</p><li>File name_{variable name}.{format}</li><li>File name.{format}</li>Absolute path example:<li>/custom path/file name_{variable name}.{format}</li>If this is not specified, the default relative path is <code>{inputName}_sampleSnapshot_{definition}_{number}.{format}</code>.
41081
41519
  * @type {string || null}
41082
41520
  */
41083
41521
  this.OutputObjectPath = null;
41084
41522
 
41085
41523
  /**
41086
- * Rule of the `{number}` variable in the sampled screenshot output path.
41524
+ * <p>Rule of the <code>{number}</code> variable in the output path after the sampled screenshot is taken.</p>
41087
41525
  Note: This field may return null, indicating that no valid values can be obtained.
41088
41526
  * @type {NumberFormat || null}
41089
41527
  */
41090
41528
  this.ObjectNumberFormat = null;
41091
41529
 
41530
+ /**
41531
+ * <p>Extended parameter.</p>
41532
+ * @type {string || null}
41533
+ */
41534
+ this.ExtInfo = null;
41535
+
41092
41536
  }
41093
41537
 
41094
41538
  /**
@@ -41121,6 +41565,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
41121
41565
  obj.deserialize(params.ObjectNumberFormat)
41122
41566
  this.ObjectNumberFormat = obj;
41123
41567
  }
41568
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
41124
41569
 
41125
41570
  }
41126
41571
  }
@@ -42007,11 +42452,17 @@ class AiAnalysisTaskDescriptionInput extends AbstractModel {
42007
42452
  super();
42008
42453
 
42009
42454
  /**
42010
- * Intelligent description template ID.
42455
+ * <p>ID of the intelligent video description template.</p>
42011
42456
  * @type {number || null}
42012
42457
  */
42013
42458
  this.Definition = null;
42014
42459
 
42460
+ /**
42461
+ * <p>Extended parameter.</p>
42462
+ * @type {string || null}
42463
+ */
42464
+ this.ExtendedParameter = null;
42465
+
42015
42466
  }
42016
42467
 
42017
42468
  /**
@@ -42022,6 +42473,7 @@ class AiAnalysisTaskDescriptionInput extends AbstractModel {
42022
42473
  return;
42023
42474
  }
42024
42475
  this.Definition = 'Definition' in params ? params.Definition : null;
42476
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
42025
42477
 
42026
42478
  }
42027
42479
  }
@@ -42035,11 +42487,17 @@ class AiAnalysisTaskCoverInput extends AbstractModel {
42035
42487
  super();
42036
42488
 
42037
42489
  /**
42038
- * Intelligent video cover generating template ID.
42490
+ * <p>ID of the intelligent video cover template.</p>
42039
42491
  * @type {number || null}
42040
42492
  */
42041
42493
  this.Definition = null;
42042
42494
 
42495
+ /**
42496
+ * <p>Extended parameter.</p>
42497
+ * @type {string || null}
42498
+ */
42499
+ this.ExtendedParameter = null;
42500
+
42043
42501
  }
42044
42502
 
42045
42503
  /**
@@ -42050,6 +42508,7 @@ class AiAnalysisTaskCoverInput extends AbstractModel {
42050
42508
  return;
42051
42509
  }
42052
42510
  this.Definition = 'Definition' in params ? params.Definition : null;
42511
+ this.ExtendedParameter = 'ExtendedParameter' in params ? params.ExtendedParameter : null;
42053
42512
 
42054
42513
  }
42055
42514
  }
@@ -42529,7 +42988,7 @@ class AiAnalysisTaskCutoutResult extends AbstractModel {
42529
42988
  this.Status = null;
42530
42989
 
42531
42990
  /**
42532
- * Error code. An empty string indicates that the task is successful, while other values indicate that the task has failed. For valid values, see the list of [MPS 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).
42991
+ * Error code. An empty string indicates that the task is successful, while other values indicate that the task has failed. For valid values, see the list of [MPS error codes](https://www.tencentcloud.com/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).
42533
42992
  * @type {string || null}
42534
42993
  */
42535
42994
  this.ErrCodeExt = null;
@@ -42666,13 +43125,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
42666
43125
  this.ErasePrivacyConfig = null;
42667
43126
 
42668
43127
  /**
42669
- * Template creation time in [ISO datetime format](https://www.tencentcloud.comom/document/product/862/37710?from_cn_redirect=1#52).
43128
+ * Template creation time in [ISO datetime format](https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52).
42670
43129
  * @type {string || null}
42671
43130
  */
42672
43131
  this.CreateTime = null;
42673
43132
 
42674
43133
  /**
42675
- * Last modification time of the template in [ISO datetime format](https://www.tencentcloud.comom/document/product/862/37710?from_cn_redirect=1#52).
43134
+ * Last modification time of the template in [ISO datetime format](https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52).
42676
43135
  * @type {string || null}
42677
43136
  */
42678
43137
  this.UpdateTime = null;
@@ -43380,7 +43839,7 @@ module.exports = {
43380
43839
  AiReviewPoliticalOcrTaskInput: AiReviewPoliticalOcrTaskInput,
43381
43840
  SmartSubtitleTaskTransTextResult: SmartSubtitleTaskTransTextResult,
43382
43841
  CreateSmartEraseTemplateRequest: CreateSmartEraseTemplateRequest,
43383
- EnhanceConfig: EnhanceConfig,
43842
+ DescribeTextToSpeechAsyncTaskRequest: DescribeTextToSpeechAsyncTaskRequest,
43384
43843
  MediaInputInfo: MediaInputInfo,
43385
43844
  CreateWorkflowRequest: CreateWorkflowRequest,
43386
43845
  OcrWordsConfigureInfo: OcrWordsConfigureInfo,
@@ -43484,6 +43943,7 @@ module.exports = {
43484
43943
  TextWatermarkTemplateInput: TextWatermarkTemplateInput,
43485
43944
  ModifyAIAnalysisTemplateResponse: ModifyAIAnalysisTemplateResponse,
43486
43945
  DescribeWordSamplesResponse: DescribeWordSamplesResponse,
43946
+ UpdateProjectRequest: UpdateProjectRequest,
43487
43947
  DescribeAIRecognitionTemplatesResponse: DescribeAIRecognitionTemplatesResponse,
43488
43948
  ScratchRepairConfig: ScratchRepairConfig,
43489
43949
  DescribeImageTaskDetailRequest: DescribeImageTaskDetailRequest,
@@ -43515,6 +43975,7 @@ module.exports = {
43515
43975
  CreateWordSamplesRequest: CreateWordSamplesRequest,
43516
43976
  SmartEraseWatermarkConfig: SmartEraseWatermarkConfig,
43517
43977
  Speakers: Speakers,
43978
+ FaceConfigureInfo: FaceConfigureInfo,
43518
43979
  DescribeSmartEraseTemplatesRequest: DescribeSmartEraseTemplatesRequest,
43519
43980
  PoliticalAsrReviewTemplateInfoForUpdate: PoliticalAsrReviewTemplateInfoForUpdate,
43520
43981
  AiSampleFaceOperation: AiSampleFaceOperation,
@@ -43560,9 +44021,11 @@ module.exports = {
43560
44021
  AsrFullTextConfigureInfoForUpdate: AsrFullTextConfigureInfoForUpdate,
43561
44022
  LiveRecordFile: LiveRecordFile,
43562
44023
  ComposeSourceMedia: ComposeSourceMedia,
44024
+ TextToSpeechAsyncResponse: TextToSpeechAsyncResponse,
43563
44025
  CreatePersonSampleResponse: CreatePersonSampleResponse,
43564
44026
  CreateContentReviewTemplateResponse: CreateContentReviewTemplateResponse,
43565
44027
  ModifyBlindWatermarkTemplateResponse: ModifyBlindWatermarkTemplateResponse,
44028
+ EnhanceConfig: EnhanceConfig,
43566
44029
  ProhibitedConfigureInfoForUpdate: ProhibitedConfigureInfoForUpdate,
43567
44030
  ComposeEmptyItem: ComposeEmptyItem,
43568
44031
  TagConfigureInfoForUpdate: TagConfigureInfoForUpdate,
@@ -43579,6 +44042,7 @@ module.exports = {
43579
44042
  BatchProcessMediaRequest: BatchProcessMediaRequest,
43580
44043
  DescribeWatermarkTemplatesRequest: DescribeWatermarkTemplatesRequest,
43581
44044
  TaskOutputStorage: TaskOutputStorage,
44045
+ VoiceInfo: VoiceInfo,
43582
44046
  ModifyAIAnalysisTemplateRequest: ModifyAIAnalysisTemplateRequest,
43583
44047
  UserDefineConfigureInfo: UserDefineConfigureInfo,
43584
44048
  SubtitlePosition: SubtitlePosition,
@@ -43636,6 +44100,7 @@ module.exports = {
43636
44100
  AigcImageInfo: AigcImageInfo,
43637
44101
  DeleteContentReviewTemplateResponse: DeleteContentReviewTemplateResponse,
43638
44102
  VODInputInfo: VODInputInfo,
44103
+ DesignVoiceAsyncRequest: DesignVoiceAsyncRequest,
43639
44104
  ImageWatermarkTemplate: ImageWatermarkTemplate,
43640
44105
  ModifyQualityControlTemplateResponse: ModifyQualityControlTemplateResponse,
43641
44106
  AsrWordsConfigureInfo: AsrWordsConfigureInfo,
@@ -43644,6 +44109,7 @@ module.exports = {
43644
44109
  AiSamplePerson: AiSamplePerson,
43645
44110
  SmartSubtitleTaskAsrFullTextResult: SmartSubtitleTaskAsrFullTextResult,
43646
44111
  BatchSmartSubtitlesResult: BatchSmartSubtitlesResult,
44112
+ QueryProjectResponse: QueryProjectResponse,
43647
44113
  DescribeDesignTaskRequest: DescribeDesignTaskRequest,
43648
44114
  SimpleAesDrm: SimpleAesDrm,
43649
44115
  DescribeWorkflowsResponse: DescribeWorkflowsResponse,
@@ -43656,10 +44122,12 @@ module.exports = {
43656
44122
  VideoTemplateInfoForUpdate: VideoTemplateInfoForUpdate,
43657
44123
  AnimatedGraphicsTemplate: AnimatedGraphicsTemplate,
43658
44124
  WorkflowTrigger: WorkflowTrigger,
44125
+ QueryProjectRequest: QueryProjectRequest,
43659
44126
  LiveStreamAiRecognitionResultInfo: LiveStreamAiRecognitionResultInfo,
43660
44127
  ActivityPara: ActivityPara,
43661
44128
  ModifyAsrHotwordsResponse: ModifyAsrHotwordsResponse,
43662
44129
  UserDefineAsrTextReviewTemplateInfoForUpdate: UserDefineAsrTextReviewTemplateInfoForUpdate,
44130
+ DescribeTextToSpeechAsyncTaskResponse: DescribeTextToSpeechAsyncTaskResponse,
43663
44131
  ModifyImageSpriteTemplateResponse: ModifyImageSpriteTemplateResponse,
43664
44132
  MediaContentReviewAsrTextSegmentItem: MediaContentReviewAsrTextSegmentItem,
43665
44133
  CreateWatermarkTemplateRequest: CreateWatermarkTemplateRequest,
@@ -43674,6 +44142,7 @@ module.exports = {
43674
44142
  CreateScheduleRequest: CreateScheduleRequest,
43675
44143
  LiveStreamTagRecognitionResult: LiveStreamTagRecognitionResult,
43676
44144
  ExecuteFunctionResponse: ExecuteFunctionResponse,
44145
+ DesignVoiceAsyncResponse: DesignVoiceAsyncResponse,
43677
44146
  AnimatedGraphicTaskInput: AnimatedGraphicTaskInput,
43678
44147
  LiveSmartSubtitlesTaskInput: LiveSmartSubtitlesTaskInput,
43679
44148
  MosaicInput: MosaicInput,
@@ -43796,6 +44265,7 @@ module.exports = {
43796
44265
  CreateLiveRecordTemplateResponse: CreateLiveRecordTemplateResponse,
43797
44266
  ActivityResult: ActivityResult,
43798
44267
  DescribeAsrHotwordsResponse: DescribeAsrHotwordsResponse,
44268
+ TextToSpeechAsyncRequest: TextToSpeechAsyncRequest,
43799
44269
  CreateSubtitleEmbedTemplateResponse: CreateSubtitleEmbedTemplateResponse,
43800
44270
  ResetWorkflowResponse: ResetWorkflowResponse,
43801
44271
  HLSConfigureInfo: HLSConfigureInfo,
@@ -43843,6 +44313,7 @@ module.exports = {
43843
44313
  ComposeMediaTrack: ComposeMediaTrack,
43844
44314
  ProhibitedOcrReviewTemplateInfo: ProhibitedOcrReviewTemplateInfo,
43845
44315
  ImageEraseLogoConfig: ImageEraseLogoConfig,
44316
+ Project: Project,
43846
44317
  ScheduleReviewTaskResult: ScheduleReviewTaskResult,
43847
44318
  ModifySubtitleEmbedTemplateRequest: ModifySubtitleEmbedTemplateRequest,
43848
44319
  ModifyTranscodeTemplateResponse: ModifyTranscodeTemplateResponse,
@@ -43856,6 +44327,7 @@ module.exports = {
43856
44327
  ModifyQualityControlTemplateRequest: ModifyQualityControlTemplateRequest,
43857
44328
  DescribeImageSpriteTemplatesResponse: DescribeImageSpriteTemplatesResponse,
43858
44329
  TaskNotifyConfig: TaskNotifyConfig,
44330
+ UpdateProjectResponse: UpdateProjectResponse,
43859
44331
  FaceEnhanceConfig: FaceEnhanceConfig,
43860
44332
  LiveStreamAiReviewImagePornResult: LiveStreamAiReviewImagePornResult,
43861
44333
  DeleteProjectRequest: DeleteProjectRequest,
@@ -43949,6 +44421,7 @@ module.exports = {
43949
44421
  DeleteWorkflowResponse: DeleteWorkflowResponse,
43950
44422
  ExecuteFunctionRequest: ExecuteFunctionRequest,
43951
44423
  AiAnalysisTaskHeadTailOutput: AiAnalysisTaskHeadTailOutput,
44424
+ DescribeVoicesResponse: DescribeVoicesResponse,
43952
44425
  ModifyPersonSampleResponse: ModifyPersonSampleResponse,
43953
44426
  DeleteTranscodeTemplateResponse: DeleteTranscodeTemplateResponse,
43954
44427
  LiveStreamObjectRecognitionResult: LiveStreamObjectRecognitionResult,
@@ -43973,7 +44446,7 @@ module.exports = {
43973
44446
  EditMediaFileInfo: EditMediaFileInfo,
43974
44447
  ComposeAudioStream: ComposeAudioStream,
43975
44448
  SmartSubtitleTaskTransTextSegmentItem: SmartSubtitleTaskTransTextSegmentItem,
43976
- FaceConfigureInfo: FaceConfigureInfo,
44449
+ DescribeVoicesRequest: DescribeVoicesRequest,
43977
44450
  LiveAiParagraphInfo: LiveAiParagraphInfo,
43978
44451
  AiRecognitionTaskFaceResultOutput: AiRecognitionTaskFaceResultOutput,
43979
44452
  PornImgReviewTemplateInfoForUpdate: PornImgReviewTemplateInfoForUpdate,