tencentcloud-sdk-nodejs-intl-en 3.0.1388 → 3.0.1390

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.
@@ -346,31 +346,31 @@ class AiRecognitionTaskAsrFullTextSegmentItem extends AbstractModel {
346
346
  super();
347
347
 
348
348
  /**
349
- * Confidence of a recognition segment. Value range: 0-100.
349
+ * <p>Confidence of the recognized segment. Value range: 0100.</p>
350
350
  * @type {number || null}
351
351
  */
352
352
  this.Confidence = null;
353
353
 
354
354
  /**
355
- * Start time offset of a recognition segment in seconds.
355
+ * <p>Start time offset of the recognized segment, in seconds.</p>
356
356
  * @type {number || null}
357
357
  */
358
358
  this.StartTimeOffset = null;
359
359
 
360
360
  /**
361
- * End time offset of a recognition segment in seconds.
361
+ * <p>End time offset of the recognized segment, in seconds.</p>
362
362
  * @type {number || null}
363
363
  */
364
364
  this.EndTimeOffset = null;
365
365
 
366
366
  /**
367
- * Recognized text.
367
+ * <p>Recognized text.</p>
368
368
  * @type {string || null}
369
369
  */
370
370
  this.Text = null;
371
371
 
372
372
  /**
373
- * Word timestamp information.
373
+ * <p>Word timestamp information.</p>
374
374
  * @type {Array.<WordResult> || null}
375
375
  */
376
376
  this.Wordlist = null;
@@ -923,67 +923,61 @@ class CreateTranscodeTemplateRequest extends AbstractModel {
923
923
  super();
924
924
 
925
925
  /**
926
- * Container format. Valid values: mp4, flv, hls, ts, webm, mkv, mxf, mov, mp3, flac, ogg, and m4a. Among them, mp3, flac, ogg, and m4a are for audio-only files.
926
+ * <p>Container format. Valid values: mp4, flv, hls, ts, webm, mkv, mxf, mov, mp3, flac, ogg, m4a, and wav. Among them, mp3, flac, ogg, m4a, and wav are for audio-only files.</p>
927
927
  * @type {string || null}
928
928
  */
929
929
  this.Container = null;
930
930
 
931
931
  /**
932
- * Name of a transcoding template. Length limit: 64 characters.
932
+ * <p>Transcoding template name. Length limit: 64 characters.</p>
933
933
  * @type {string || null}
934
934
  */
935
935
  this.Name = null;
936
936
 
937
937
  /**
938
- * Template description. Length limit: 256 characters.
938
+ * <p>Transcoding template description. Length limit: 256 characters.</p>
939
939
  * @type {string || null}
940
940
  */
941
941
  this.Comment = null;
942
942
 
943
943
  /**
944
- * Whether to remove video data. Valid values:
945
- <li>0: Retain</li>
946
- <li>1: Remove</li>
947
- Default value: 0.
944
+ * <p>Indicates whether to remove video data. Valid values:</p><li>0: Data is reserved.</li><li>1: Data is removed.</li>Default value: 0.
948
945
  * @type {number || null}
949
946
  */
950
947
  this.RemoveVideo = null;
951
948
 
952
949
  /**
953
- * Whether to remove audio data. Valid values:
954
- <li>0: Retain</li>
955
- <li>1: Remove</li>
956
- Default value: 0.
950
+ * <p>Indicates whether to remove audio data. Valid values:</p><li>0: Data is reserved.</li><li>1: Data is removed.</li>Default value: 0.
957
951
  * @type {number || null}
958
952
  */
959
953
  this.RemoveAudio = null;
960
954
 
961
955
  /**
962
- * Video stream configuration parameter. This field is required when `RemoveVideo` is 0.
956
+ * <p>Video stream configuration parameters. This field is required when RemoveVideo is 0.</p>
963
957
  * @type {VideoTemplateInfo || null}
964
958
  */
965
959
  this.VideoTemplate = null;
966
960
 
967
961
  /**
968
- * Audio stream configuration parameter. This field is required when `RemoveAudio` is 0.
962
+ * <p>Audio stream configuration parameters. This field is required when RemoveAudio is 0.</p>
969
963
  * @type {AudioTemplateInfo || null}
970
964
  */
971
965
  this.AudioTemplate = null;
972
966
 
973
967
  /**
974
- * TESHD transcoding parameter. To enable it, please contact your Tencent Cloud sales rep.
968
+ * <p>Top Speed Codec transcoding parameters.</p>
975
969
  * @type {TEHDConfig || null}
976
970
  */
977
971
  this.TEHDConfig = null;
978
972
 
979
973
  /**
980
- * Audio/Video enhancement configuration.
974
+ * <p>Audio/video enhancement configurations.</p>
981
975
  * @type {EnhanceConfig || null}
982
976
  */
983
977
  this.EnhanceConfig = null;
984
978
 
985
979
  /**
986
- * Additional parameter, which is a serialized JSON string.
980
+ * <p>Extended parameter, which is a serialized JSON string.</p>
987
981
  * @type {string || null}
988
982
  */
989
983
  this.StdExtInfo = null;
@@ -1619,6 +1613,41 @@ Note: The HLS segment format for adaptive bitrate streaming is based on this fie
1619
1613
  }
1620
1614
  }
1621
1615
 
1616
+ /**
1617
+ *
1618
+ * @class
1619
+ */
1620
+ class CustomVariable extends AbstractModel {
1621
+ constructor(){
1622
+ super();
1623
+
1624
+ /**
1625
+ *
1626
+ * @type {string || null}
1627
+ */
1628
+ this.Type = null;
1629
+
1630
+ /**
1631
+ *
1632
+ * @type {string || null}
1633
+ */
1634
+ this.Description = null;
1635
+
1636
+ }
1637
+
1638
+ /**
1639
+ * @private
1640
+ */
1641
+ deserialize(params) {
1642
+ if (!params) {
1643
+ return;
1644
+ }
1645
+ this.Type = 'Type' in params ? params.Type : null;
1646
+ this.Description = 'Description' in params ? params.Description : null;
1647
+
1648
+ }
1649
+ }
1650
+
1622
1651
  /**
1623
1652
  * AI narration and video re-creation result info.
1624
1653
  * @class
@@ -2281,6 +2310,46 @@ Note: This field may return null, indicating that no valid values can be obtaine
2281
2310
  }
2282
2311
  }
2283
2312
 
2313
+ /**
2314
+ * Data structure that indicates the subtitle area coordinates for the automatic hard subtitle area detection. The confidence is also included.
2315
+ * @class
2316
+ */
2317
+ class SubtitleArea extends AbstractModel {
2318
+ constructor(){
2319
+ super();
2320
+
2321
+ /**
2322
+ * <p>Detected subtitle area.</p>
2323
+ * @type {EraseArea || null}
2324
+ */
2325
+ this.Area = null;
2326
+
2327
+ /**
2328
+ * <p>Confidence of the detected area.</p><p>Value range: [0, 100].</p>
2329
+ * @type {number || null}
2330
+ */
2331
+ this.Confidence = null;
2332
+
2333
+ }
2334
+
2335
+ /**
2336
+ * @private
2337
+ */
2338
+ deserialize(params) {
2339
+ if (!params) {
2340
+ return;
2341
+ }
2342
+
2343
+ if (params.Area) {
2344
+ let obj = new EraseArea();
2345
+ obj.deserialize(params.Area)
2346
+ this.Area = obj;
2347
+ }
2348
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
2349
+
2350
+ }
2351
+ }
2352
+
2284
2353
  /**
2285
2354
  * Information of the time point screenshots in a VOD file
2286
2355
  * @class
@@ -3907,13 +3976,38 @@ class SyncDubbingRequest extends AbstractModel {
3907
3976
  this.AudioLang = null;
3908
3977
 
3909
3978
  /**
3910
- * <p>Output parameters.</p><p>Specifies the output format, etc.</p>
3979
+ * <p>Voice attribute.</p>
3980
+ * @type {VoiceProfile || null}
3981
+ */
3982
+ this.VoiceProfile = null;
3983
+
3984
+ /**
3985
+ * <p>Output parameters.</p><p>Specifies the output format, etc. The default output audio format is base64.</p>
3911
3986
  * @type {SyncDubbingOutputOption || null}
3912
3987
  */
3913
3988
  this.Output = null;
3914
3989
 
3915
3990
  /**
3916
- * <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>
3991
+ * <p>Resource ID. The resource needs to be enabled. The default value is the account's primary resource ID.</p>
3992
+ * @type {string || null}
3993
+ */
3994
+ this.ResourceId = null;
3995
+
3996
+ /**
3997
+ * <p>Extended parameters in the format of a JSON string.</p>
3998
+ <p>
3999
+
4000
+ - <strong>synExt</strong> Object; Extended text to speech parameter.<br>
4001
+ - <strong>duration</strong> Float; Synthesized audio duration, in seconds. Example: 5.2.<br>
4002
+ - <strong>sampleRate</strong> Integer; Synthesized audio sample rate. Default value: 16000. Valid values: [8000, 16000, 22050, 24000, 32000, 44100].<br>
4003
+ - <strong>pitch</strong> Integer; Pitch. Default value: 0 (original voice output). Valid values: [-12, 12].<br>
4004
+ - <strong>cloneExt</strong> Object; Extended voice cloning parameter.<br>
4005
+ - <strong>timeRanges</strong> Float; Specifies the time ranges for audio cloning. The default value is the first 20 seconds of the audio. Example: [[5.2, 10], [45, 59.8]].
4006
+
4007
+ </p>
4008
+
4009
+
4010
+
3917
4011
  * @type {string || null}
3918
4012
  */
3919
4013
  this.ExtParam = null;
@@ -3934,11 +4028,18 @@ class SyncDubbingRequest extends AbstractModel {
3934
4028
  this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
3935
4029
  this.AudioLang = 'AudioLang' in params ? params.AudioLang : null;
3936
4030
 
4031
+ if (params.VoiceProfile) {
4032
+ let obj = new VoiceProfile();
4033
+ obj.deserialize(params.VoiceProfile)
4034
+ this.VoiceProfile = obj;
4035
+ }
4036
+
3937
4037
  if (params.Output) {
3938
4038
  let obj = new SyncDubbingOutputOption();
3939
4039
  obj.deserialize(params.Output)
3940
4040
  this.Output = obj;
3941
4041
  }
4042
+ this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
3942
4043
  this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
3943
4044
 
3944
4045
  }
@@ -4828,58 +4929,36 @@ class AudioTemplateInfoForUpdate extends AbstractModel {
4828
4929
  super();
4829
4930
 
4830
4931
  /**
4831
- * Audio stream encoding format.
4832
- When audio transcoding is not needed, the value is:
4833
- <li>copy.</li>
4834
- When the outer parameter Container is mp3, the value is:
4835
- <li>mp3.</li>
4836
- When the outer parameter Container is ogg or flac, the value is:
4837
- <li>flac.</li>
4838
- When the outer parameter Container is m4a, valid values are:
4839
- <li>aac;</li>
4840
- <li>ac3.</li>
4841
- When the outer parameter Container is mp4 or flv, valid values are:
4842
- <li>aac: more suitable for mp4;</li>
4843
- <li>mp3: more suitable for flv;</li>
4844
- <li>mp2.</li>
4845
- When the outer parameter Container is hls, valid values are:
4846
- <li>aac;</li>
4847
- <li>mp3.</li>
4932
+ * <p>Audio stream encoding format.<br>When audio transcoding is not needed, the valid value is:</p><li>copy.</li>When the outer parameter Container is mp3, the valid value is:<li>mp3.</li>When the outer parameter Container is ogg or flac, the valid value is:<li>flac.</li>When the outer parameter Container is m4a, the valid values are:<li>aac;</li><li>ac3.</li>When the outer parameter Container is mp4 or flv, the valid values are:<li>aac: suitable for mp4.</li><li>mp3: suitable for flv.</li><li>mp2.</li>When the outer parameter Container is hls, the valid values are:<li>aac.</li><li>mp3.</li>When the outer parameter Container is wav, the valid values are:<li>pcm16 and pcm24.</li>
4848
4933
  Note: This field may return null, indicating that no valid values can be obtained.
4849
4934
  * @type {string || null}
4850
4935
  */
4851
4936
  this.Codec = null;
4852
4937
 
4853
4938
  /**
4854
- * Audio stream bitrate in Kbps. Value range: 0 and [26, 256]. If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
4939
+ * <p>Audio stream bitrate, in kbps. Value range: 0 and [26, 256]. When the value is 0, it means the audio bitrate remains consistent with that of the original audio.</p>
4940
+ Note: This field may return null, indicating that no valid values can be obtained.
4855
4941
  * @type {number || null}
4856
4942
  */
4857
4943
  this.Bitrate = null;
4858
4944
 
4859
4945
  /**
4860
- * 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.
4861
- 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).
4862
- Unit: Hz.
4863
- Note: Make sure that the sampling rate of the source audio stream is among the above options. Otherwise, transcoding may fail.
4946
+ * <p>Audio stream sampling rate. Different sampling rate options are provided for different encoding standards. Enter 0 to use the source audio sampling rate.<br>For details, see <a href="https://www.tencentcloud.com/document/product/862/77166?from_cn_redirect=1#f3b039f1-d817-4a96-b4e4-90132d31cd53">Audio Sampling Rate Range</a>.<br>Unit: Hz.<br>Note: Ensure the source audio stream sampling rate is within the supported range. Otherwise, transcoding may fail.</p>
4864
4947
  Note: This field may return null, indicating that no valid values can be obtained.
4865
4948
  * @type {number || null}
4866
4949
  */
4867
4950
  this.SampleRate = null;
4868
4951
 
4869
4952
  /**
4870
- * Audio channel mode. Valid values:
4871
- <li>1: mono-channel.</li>
4872
- <li>2: dual-channel.</li>
4873
- <li>6: 5.1 surround sound.
4874
- When the container format is audio (flac, ogg, mp3, and m4a), the audio channel cannot be set to 5.1 surround sound.
4875
-
4953
+ * <p>Audio channel mode. Valid values:</p><li>0: The number of audio channels follows that of the source.</li><li>1: Single channel.</li><li>2: Two channels.</li><li>6: 5.1 channels.</li>When the media container format is an audio format (mp3), the number of audio channels cannot be set to 5.1.<p>Default value: 2.<br>Note: If you set the audio channel to follow that of the source and the audio encoding format does not support the current audio channel, the transcoding task may fail.</p>
4876
4954
  Note: This field may return null, indicating that no valid values can be obtained.
4877
4955
  * @type {number || null}
4878
4956
  */
4879
4957
  this.AudioChannel = null;
4880
4958
 
4881
4959
  /**
4882
- * The audio tracks to retain. All audio tracks are retained by default.
4960
+ * <p>Specifies the retained audio tracks for output. All source tracks are retained by default.</p>
4961
+ Note: This field may return null, indicating that no valid values can be obtained.
4883
4962
  * @type {Array.<number> || null}
4884
4963
  */
4885
4964
  this.StreamSelects = null;
@@ -5724,6 +5803,83 @@ class AiAnalysisTaskFrameTagResult extends AbstractModel {
5724
5803
  }
5725
5804
  }
5726
5805
 
5806
+ /**
5807
+ * Fields of the updated voice.
5808
+ * @class
5809
+ */
5810
+ class VoiceUpdateFields extends AbstractModel {
5811
+ constructor(){
5812
+ super();
5813
+
5814
+ /**
5815
+ * <p>Voice name.</p>
5816
+ * @type {string || null}
5817
+ */
5818
+ this.Name = null;
5819
+
5820
+ /**
5821
+ * <p>Voice description.</p>
5822
+ * @type {string || null}
5823
+ */
5824
+ this.Description = null;
5825
+
5826
+ /**
5827
+ * <p>Gender.</p><p>Enumeration values:</p><ul><li>male: male</li><li>female: female</li><li>unknown: unknown</li></ul>
5828
+ * @type {string || null}
5829
+ */
5830
+ this.Gender = null;
5831
+
5832
+ /**
5833
+ * <p>Age.</p><p>Enumeration values:</p><ul><li>child: child</li><li>teenager: teenager</li><li>youth: youth</li><li>middle_aged: middle-aged</li><li>senior: senior</li><li>unknown: unknown</li></ul>
5834
+ * @type {string || null}
5835
+ */
5836
+ this.Age = null;
5837
+
5838
+ /**
5839
+ * <p>Language.</p>
5840
+ * @type {Array.<string> || null}
5841
+ */
5842
+ this.Languages = null;
5843
+
5844
+ /**
5845
+ * <p>Tag.</p>
5846
+ * @type {Array.<string> || null}
5847
+ */
5848
+ this.Labels = null;
5849
+
5850
+ /**
5851
+ * <p>Scenario.</p>
5852
+ * @type {Array.<string> || null}
5853
+ */
5854
+ this.Scenes = null;
5855
+
5856
+ /**
5857
+ * <p>Audition audio.</p>
5858
+ * @type {string || null}
5859
+ */
5860
+ this.AudioUrl = null;
5861
+
5862
+ }
5863
+
5864
+ /**
5865
+ * @private
5866
+ */
5867
+ deserialize(params) {
5868
+ if (!params) {
5869
+ return;
5870
+ }
5871
+ this.Name = 'Name' in params ? params.Name : null;
5872
+ this.Description = 'Description' in params ? params.Description : null;
5873
+ this.Gender = 'Gender' in params ? params.Gender : null;
5874
+ this.Age = 'Age' in params ? params.Age : null;
5875
+ this.Languages = 'Languages' in params ? params.Languages : null;
5876
+ this.Labels = 'Labels' in params ? params.Labels : null;
5877
+ this.Scenes = 'Scenes' in params ? params.Scenes : null;
5878
+ this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
5879
+
5880
+ }
5881
+ }
5882
+
5727
5883
  /**
5728
5884
  * Audio stream configuration parameter
5729
5885
  * @class
@@ -5733,67 +5889,32 @@ class AudioTemplateInfo extends AbstractModel {
5733
5889
  super();
5734
5890
 
5735
5891
  /**
5736
- * Specifies the encoding format of the audio stream.
5737
- When audio transcoding is not needed, the optional values are:.
5738
- <li>copy.</li>
5739
- When the outer parameter Container is mp3, the valid values are:.
5740
- <li>mp3.</li>
5741
- When the outer parameter Container is ogg or flac, the valid values are:.
5742
- <li>flac.</li>
5743
- When the outer parameter Container is m4a, valid values are:.
5744
- <li>aac;</li>
5745
- <li>ac3.</li>
5746
- When the outer parameter Container is mp4 or flv, valid values are:.
5747
- <li>aac: more suitable for mp4;</li>.
5748
- <li>mp3: more suitable for flv;</li>.
5749
- <li>mp2.</li>
5750
- When the outer parameter Container is hls, valid values are:.
5751
- <li>aac;</li>
5752
- <li>mp3;</li>
5753
- <li>eac3: used when merging adaptive transcoding audio tracks.</li>.
5892
+ * <p>Audio stream encoding format.<br>When audio transcoding is not needed, the valid value is:</p><li>copy.</li>When the outer parameter Container is mp3, the valid value is:<li>mp3.</li>When the outer parameter Container is ogg or flac, the valid value is:<li>flac.</li>When the outer parameter Container is m4a, the valid values are:<li>aac;</li><li>ac3.</li>When the outer parameter Container is mp4 or flv, the valid values are:<li>aac: suitable for mp4.</li><li>mp3: suitable for flv.</li><li>mp2.</li>When the outer parameter Container is hls, the valid values are:<li>aac.</li><li>mp3.</li><li>eac3: used when merging audio tracks with adaptive transcoding.</li>When the outer parameter Container is wav, the valid values are:<li>pcm16 and pcm24.</li>
5754
5893
  * @type {string || null}
5755
5894
  */
5756
5895
  this.Codec = null;
5757
5896
 
5758
5897
  /**
5759
- * The bitrate of the audio stream. value ranges from 0 to 26 and in the range of [26, 256]. measurement unit: kbps.
5760
- If the value is 0, the audio bitrate will be the same as that of the original audio.
5761
- Specifies that when using the TrackChannelInfo parameter for adaptive transcoding audio track merging, the valid values are:.
5762
- Cannot be set to 0.
5763
- 2). when Codec is aac, valid values: [26, 256].
5764
- 3). when Codec is ac3, valid values: [26, 640].
5765
- 4) when Codec is eac3, value range: [26, 6144]. remark: when SampleRate is 44100HZ, maximum value: 5644. when SampleRate is 48000HZ, maximum value: 6144.
5766
-
5767
-
5898
+ * <p>Audio stream bitrate, in kbps. Value range: 0 and [26, 256].<br>When the value is 0, it means the audio bitrate remains consistent with that of the original audio.<br>Note: If the TrackChannelInfo parameter is used for audio track merging with adaptive transcoding, the value range:<br>1) cannot be 0.<br>2) When Codec is aac, the value range is [26, 256].<br>3) When Codec is ac3, the value range is [26, 640].<br>4) When Codec is eac3, the value range is [26, 6144]. Note: When SampleRate is 44100HZ, the maximum value is 5644. When SampleRate is 48000HZ, the maximum value is 6144.</p>
5768
5899
  * @type {number || null}
5769
5900
  */
5770
5901
  this.Bitrate = null;
5771
5902
 
5772
5903
  /**
5773
- * 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.
5774
- 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).
5775
- Unit: Hz.
5776
- Note: Make sure that the sampling rate of the source audio stream is among the above options. Otherwise, transcoding may fail.
5904
+ * <p>Audio stream sampling rate. Different sampling rate options are provided for different encoding standards. Enter 0 to use the source audio sampling rate.<br>For details, see <a href="https://www.tencentcloud.com/document/product/862/77166?from_cn_redirect=1#f3b039f1-d817-4a96-b4e4-90132d31cd53">Audio Sampling Rate Range</a>.<br>Unit: Hz.<br>Note: Ensure the source audio stream sampling rate is within the supported range. Otherwise, transcoding may fail.</p>
5777
5905
  * @type {number || null}
5778
5906
  */
5779
5907
  this.SampleRate = null;
5780
5908
 
5781
5909
  /**
5782
- * Audio channel mode. Valid values:
5783
- <li>1: mono-channel.</li>
5784
- <li>2: dual-channel.</li>
5785
- <li>6: 5.1 surround sound.
5786
- <li>Default value: 2.
5787
- When the container format is audio (flac, ogg, mp3, and m4a), the audio channel cannot be set to 5.1 surround sound.
5910
+ * <p>Audio channel mode. Valid values:</p><li>0: The number of audio channels follows that of the source.</li><li>1: Single channel.</li><li>2: Two channels.</li><li>6: 5.1 channels.</li>When the media container format is an audio format (mp3), the number of audio channels cannot be set to 5.1.<p>Default value: 2.<br>Note: If you set the audio channel to follow that of the source and the audio encoding format does not support the current audio channel, the transcoding task may fail.</p>
5788
5911
  * @type {number || null}
5789
5912
  */
5790
5913
  this.AudioChannel = null;
5791
5914
 
5792
5915
  /**
5793
- * Merge audio track information.
5794
- This field only takes effect in adaptive bitrate transcoding.
5795
-
5796
- Note: This field may return null, indicating that no valid value can be obtained.
5916
+ * <p>Audio track merging information.<br>Note: This field only takes effect for adaptive transcoding.</p>
5917
+ Note: This field may return null, indicating that no valid values can be obtained.
5797
5918
  * @type {AudioTrackChannelInfo || null}
5798
5919
  */
5799
5920
  this.TrackChannelInfo = null;
@@ -6386,6 +6507,77 @@ This value only distinguishes template types. The task uses the values of Remove
6386
6507
  }
6387
6508
  }
6388
6509
 
6510
+ /**
6511
+ * Aggregation results of each LLM detection item.
6512
+ * @class
6513
+ */
6514
+ class LLMDetectionResultItem extends AbstractModel {
6515
+ constructor(){
6516
+ super();
6517
+
6518
+ /**
6519
+ * <p>Detection category.</p><p>Enumeration value:</p><ul><li>AIGCQualityCharacteristics: AIGC quality characteristics.</li></ul>
6520
+ * @type {string || null}
6521
+ */
6522
+ this.Category = null;
6523
+
6524
+ /**
6525
+ * <p>Detection group.</p><p>Enumeration values:</p><ul><li>AIGCAuthenticity: AIGC authenticity, including human body plausibility, physical plausibility, and cross-frame consistency.</li><li>AIGCTechQuality: AIGC technology quality, including aspect ratio, black border, and forced portrait mode.</li></ul>
6526
+ * @type {string || null}
6527
+ */
6528
+ this.Group = null;
6529
+
6530
+ /**
6531
+ * <p>Detection type name.</p><p>Enumeration values:</p><ul><li>BodyPoseCheck: Human body pose plausibility, which belongs to AIGCAuthenticity.</li><li>BodyDetailCheck: Human body detail plausibility, including finger count and facial symmetry, which belongs to AIGCAuthenticity.</li><li>PhysicRulesCheck: Physics rules plausibility, including perspective, lighting, and gravity, which belongs to AIGCAuthenticity.</li><li>ObjectConsistencyCheck: Cross-frame object consistency, which belongs to AIGCAuthenticity.</li><li>FormatCheck: Aspect ratio, black border, forced portrait mode, and other format issues, which belong to AIGCTechQuality.</li></ul>
6532
+ * @type {string || null}
6533
+ */
6534
+ this.Type = null;
6535
+
6536
+ /**
6537
+ * <p>Overall quality score. Value range: [0, 100]. Higher values indicate better quality.</p>
6538
+ * @type {number || null}
6539
+ */
6540
+ this.Score = null;
6541
+
6542
+ /**
6543
+ * <p>Detection confidence. Value range: [0, 100]. Higher values indicate greater certainty.</p>
6544
+ * @type {number || null}
6545
+ */
6546
+ this.Confidence = null;
6547
+
6548
+ /**
6549
+ * <p>List of issues detected. This is empty if no issue is detected.</p>
6550
+ * @type {Array.<LLMDetectionIssue> || null}
6551
+ */
6552
+ this.IssueSet = null;
6553
+
6554
+ }
6555
+
6556
+ /**
6557
+ * @private
6558
+ */
6559
+ deserialize(params) {
6560
+ if (!params) {
6561
+ return;
6562
+ }
6563
+ this.Category = 'Category' in params ? params.Category : null;
6564
+ this.Group = 'Group' in params ? params.Group : null;
6565
+ this.Type = 'Type' in params ? params.Type : null;
6566
+ this.Score = 'Score' in params ? params.Score : null;
6567
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
6568
+
6569
+ if (params.IssueSet) {
6570
+ this.IssueSet = new Array();
6571
+ for (let z in params.IssueSet) {
6572
+ let obj = new LLMDetectionIssue();
6573
+ obj.deserialize(params.IssueSet[z]);
6574
+ this.IssueSet.push(obj);
6575
+ }
6576
+ }
6577
+
6578
+ }
6579
+ }
6580
+
6389
6581
  /**
6390
6582
  * CreateProcessImageTemplate response structure.
6391
6583
  * @class
@@ -6489,65 +6681,61 @@ class ModifyTranscodeTemplateRequest extends AbstractModel {
6489
6681
  super();
6490
6682
 
6491
6683
  /**
6492
- * Unique ID of a transcoding template.
6684
+ * <p>Unique identifier of the transcoding template.</p>
6493
6685
  * @type {number || null}
6494
6686
  */
6495
6687
  this.Definition = null;
6496
6688
 
6497
6689
  /**
6498
- * Container format. Valid values: mp4; flv; hls; mp3; flac; ogg; m4a. Among them, mp3, flac, ogg, and m4a are for audio files.
6690
+ * <p>Container format. Valid values: mp4, flv, hls, mp3, flac, ogg, m4a, and wav. Among them, mp3, flac, ogg, m4a, and wav are for audio-only files.</p>
6499
6691
  * @type {string || null}
6500
6692
  */
6501
6693
  this.Container = null;
6502
6694
 
6503
6695
  /**
6504
- * Name of a transcoding template. Length limit: 64 characters.
6696
+ * <p>Transcoding template name. Length limit: 64 characters.</p>
6505
6697
  * @type {string || null}
6506
6698
  */
6507
6699
  this.Name = null;
6508
6700
 
6509
6701
  /**
6510
- * Template description. Length limit: 256 characters.
6702
+ * <p>Transcoding template description. Length limit: 256 characters.</p>
6511
6703
  * @type {string || null}
6512
6704
  */
6513
6705
  this.Comment = null;
6514
6706
 
6515
6707
  /**
6516
- * Whether to remove video data. Valid values:
6517
- <li>0: Retain</li>
6518
- <li>1: Remove</li>
6708
+ * <p>Indicates whether to remove video data. Valid values:</p><li>0: Data is reserved.</li><li>1: Data is removed.</li>
6519
6709
  * @type {number || null}
6520
6710
  */
6521
6711
  this.RemoveVideo = null;
6522
6712
 
6523
6713
  /**
6524
- * Whether to remove audio data. Valid values:
6525
- <li>0: Retain</li>
6526
- <li>1: Remove</li>
6714
+ * <p>Indicates whether to remove audio data. Valid values:</p><li>0: Data is reserved.</li><li>1: Data is removed.</li>
6527
6715
  * @type {number || null}
6528
6716
  */
6529
6717
  this.RemoveAudio = null;
6530
6718
 
6531
6719
  /**
6532
- * Video stream configuration parameter.
6720
+ * <p>Video stream configuration parameters.</p>
6533
6721
  * @type {VideoTemplateInfoForUpdate || null}
6534
6722
  */
6535
6723
  this.VideoTemplate = null;
6536
6724
 
6537
6725
  /**
6538
- * Audio stream configuration parameter.
6726
+ * <p>Audio stream configuration parameters.</p>
6539
6727
  * @type {AudioTemplateInfoForUpdate || null}
6540
6728
  */
6541
6729
  this.AudioTemplate = null;
6542
6730
 
6543
6731
  /**
6544
- * TESHD transcoding parameter. To enable it, please contact your Tencent Cloud sales rep.
6732
+ * <p>Top Speed Codec transcoding parameters.</p>
6545
6733
  * @type {TEHDConfigForUpdate || null}
6546
6734
  */
6547
6735
  this.TEHDConfig = null;
6548
6736
 
6549
6737
  /**
6550
- * Audio/Video enhancement settings.
6738
+ * <p>Audio/video enhancement parameters.</p>
6551
6739
  * @type {EnhanceConfig || null}
6552
6740
  */
6553
6741
  this.EnhanceConfig = null;
@@ -7345,26 +7533,32 @@ class ImageTaskInput extends AbstractModel {
7345
7533
  super();
7346
7534
 
7347
7535
  /**
7348
- * Image encoding configuration.
7349
- Note: This field may return null, indicating that no valid value can be obtained.
7536
+ * <p>Image encoding configuration.</p>
7537
+ Note: This field may return null, indicating that no valid values can be obtained.
7350
7538
  * @type {ImageEncodeConfig || null}
7351
7539
  */
7352
7540
  this.EncodeConfig = null;
7353
7541
 
7354
7542
  /**
7355
- * Image enhancement configuration.
7356
- Note: This field may return null, indicating that no valid value can be obtained.
7543
+ * <p>Image enhancement configuration.</p>
7544
+ Note: This field may return null, indicating that no valid values can be obtained.
7357
7545
  * @type {ImageEnhanceConfig || null}
7358
7546
  */
7359
7547
  this.EnhanceConfig = null;
7360
7548
 
7361
7549
  /**
7362
- * Image erasing configuration.
7363
- Note: This field may return null, indicating that no valid value can be obtained.
7550
+ * <p>Image erasing configuration.</p>
7551
+ Note: This field may return null, indicating that no valid values can be obtained.
7364
7552
  * @type {ImageEraseConfig || null}
7365
7553
  */
7366
7554
  this.EraseConfig = null;
7367
7555
 
7556
+ /**
7557
+ *
7558
+ * @type {AiPosterSuiteConfig || null}
7559
+ */
7560
+ this.AiPosterSuiteConfig = null;
7561
+
7368
7562
  }
7369
7563
 
7370
7564
  /**
@@ -7393,6 +7587,12 @@ Note: This field may return null, indicating that no valid value can be obtained
7393
7587
  this.EraseConfig = obj;
7394
7588
  }
7395
7589
 
7590
+ if (params.AiPosterSuiteConfig) {
7591
+ let obj = new AiPosterSuiteConfig();
7592
+ obj.deserialize(params.AiPosterSuiteConfig)
7593
+ this.AiPosterSuiteConfig = obj;
7594
+ }
7595
+
7396
7596
  }
7397
7597
  }
7398
7598
 
@@ -7861,6 +8061,53 @@ class AigcAudioOutputAudioInfo extends AbstractModel {
7861
8061
  }
7862
8062
  }
7863
8063
 
8064
+ /**
8065
+ * UpdateVoice request structure.
8066
+ * @class
8067
+ */
8068
+ class UpdateVoiceRequest extends AbstractModel {
8069
+ constructor(){
8070
+ super();
8071
+
8072
+ /**
8073
+ * <p>Voice ID.</p>
8074
+ * @type {string || null}
8075
+ */
8076
+ this.VoiceId = null;
8077
+
8078
+ /**
8079
+ * <p>Fields of the updated voice.</p>
8080
+ * @type {VoiceUpdateFields || null}
8081
+ */
8082
+ this.VoiceFields = null;
8083
+
8084
+ /**
8085
+ * <p>Extended parameters in the format of a JSON string.</p>
8086
+ * @type {string || null}
8087
+ */
8088
+ this.ExtParam = null;
8089
+
8090
+ }
8091
+
8092
+ /**
8093
+ * @private
8094
+ */
8095
+ deserialize(params) {
8096
+ if (!params) {
8097
+ return;
8098
+ }
8099
+ this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
8100
+
8101
+ if (params.VoiceFields) {
8102
+ let obj = new VoiceUpdateFields();
8103
+ obj.deserialize(params.VoiceFields)
8104
+ this.VoiceFields = obj;
8105
+ }
8106
+ this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
8107
+
8108
+ }
8109
+ }
8110
+
7864
8111
  /**
7865
8112
  * Result type of intelligent cover generating task
7866
8113
  * @class
@@ -8013,7 +8260,7 @@ class AigcImageExtraParam extends AbstractModel {
8013
8260
  super();
8014
8261
 
8015
8262
  /**
8016
- * <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>
8263
+ * <p>Aspect ratio of the generated video.</p><p>Supported aspect ratios for different models:</p><ol><li>Kling 2.1: 16:9, 9:16, 1:1, 4:3, 3:4, 3:2, 2:3, and 21:9.</li><li>Kling 3.0: 16:9, 9:16, 1:1, 4:3, 3:4, 3:2, 2:3, and 21:9.</li><li>Kling 3.0-Omni: 16:9, 9:16, 1:1, 4:3, 3:4, 3:2, 2:3, and 21:9.</li><li>Kling O1: 16:9, 9:16, 1:1, 4:3, 3:4, 3:2, 2:3, and 21:9.</li><li>Vidu q2: 16:9, 9:16, 1:1, 3:4, 4:3, 21:9, 2:3, and 3:2.</li><li>MJ v7: The aspect ratio needs to be specified in the prompt.</li></ol><p>Note: For more information about the aspect ratios of specific models, see the model website.</p>
8017
8264
  * @type {string || null}
8018
8265
  */
8019
8266
  this.AspectRatio = null;
@@ -8031,7 +8278,7 @@ class AigcImageExtraParam extends AbstractModel {
8031
8278
  this.LogoAdd = null;
8032
8279
 
8033
8280
  /**
8034
- *
8281
+ * <p>Specifies the output format of the image. JPEG and PNG formats are supported.</p>
8035
8282
  * @type {string || null}
8036
8283
  */
8037
8284
  this.OutputFormat = null;
@@ -11155,6 +11402,60 @@ class DescribeSmartEraseTemplatesRequest extends AbstractModel {
11155
11402
  }
11156
11403
  }
11157
11404
 
11405
+ /**
11406
+ * UpdateVoice response structure.
11407
+ * @class
11408
+ */
11409
+ class UpdateVoiceResponse extends AbstractModel {
11410
+ constructor(){
11411
+ super();
11412
+
11413
+ /**
11414
+ * <p>Error code. 0 is returned if the request is successful.</p>
11415
+ * @type {number || null}
11416
+ */
11417
+ this.ErrorCode = null;
11418
+
11419
+ /**
11420
+ * <p>Error message. success is returned if the request is successful.</p>
11421
+ * @type {string || null}
11422
+ */
11423
+ this.Msg = null;
11424
+
11425
+ /**
11426
+ * <p>Voice information after the update.</p>
11427
+ * @type {VoiceInfo || null}
11428
+ */
11429
+ this.Voice = null;
11430
+
11431
+ /**
11432
+ * 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.
11433
+ * @type {string || null}
11434
+ */
11435
+ this.RequestId = null;
11436
+
11437
+ }
11438
+
11439
+ /**
11440
+ * @private
11441
+ */
11442
+ deserialize(params) {
11443
+ if (!params) {
11444
+ return;
11445
+ }
11446
+ this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
11447
+ this.Msg = 'Msg' in params ? params.Msg : null;
11448
+
11449
+ if (params.Voice) {
11450
+ let obj = new VoiceInfo();
11451
+ obj.deserialize(params.Voice)
11452
+ this.Voice = obj;
11453
+ }
11454
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
11455
+
11456
+ }
11457
+ }
11458
+
11158
11459
  /**
11159
11460
  * The parameters for detecting sensitive information based on ASR.
11160
11461
  * @class
@@ -11764,6 +12065,76 @@ Note: This field may return null, indicating that no valid values can be obtaine
11764
12065
  }
11765
12066
  }
11766
12067
 
12068
+ /**
12069
+ * Issue detected by the LLM.
12070
+ * @class
12071
+ */
12072
+ class LLMDetectionIssue extends AbstractModel {
12073
+ constructor(){
12074
+ super();
12075
+
12076
+ /**
12077
+ * <p>Issue category tag.</p>
12078
+ * @type {string || null}
12079
+ */
12080
+ this.Tag = null;
12081
+
12082
+ /**
12083
+ * <p>Issue description.</p>
12084
+ * @type {string || null}
12085
+ */
12086
+ this.Description = null;
12087
+
12088
+ /**
12089
+ * <p>Quality score of the issue. Value range: [0, 100].</p>
12090
+ * @type {number || null}
12091
+ */
12092
+ this.Score = null;
12093
+
12094
+ /**
12095
+ * <p>Detection confidence for the issue. Value range: [0, 100].</p>
12096
+ * @type {number || null}
12097
+ */
12098
+ this.Confidence = null;
12099
+
12100
+ /**
12101
+ * <p>Issue start time (ms).</p>
12102
+ * @type {number || null}
12103
+ */
12104
+ this.StartTimeMs = null;
12105
+
12106
+ /**
12107
+ * <p>Issue end time (ms).</p>
12108
+ * @type {number || null}
12109
+ */
12110
+ this.EndTimeMs = null;
12111
+
12112
+ /**
12113
+ * <p>Additional data (JSON format), such as severity and other supplementary information.</p>
12114
+ * @type {string || null}
12115
+ */
12116
+ this.ExtraData = null;
12117
+
12118
+ }
12119
+
12120
+ /**
12121
+ * @private
12122
+ */
12123
+ deserialize(params) {
12124
+ if (!params) {
12125
+ return;
12126
+ }
12127
+ this.Tag = 'Tag' in params ? params.Tag : null;
12128
+ this.Description = 'Description' in params ? params.Description : null;
12129
+ this.Score = 'Score' in params ? params.Score : null;
12130
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
12131
+ this.StartTimeMs = 'StartTimeMs' in params ? params.StartTimeMs : null;
12132
+ this.EndTimeMs = 'EndTimeMs' in params ? params.EndTimeMs : null;
12133
+ this.ExtraData = 'ExtraData' in params ? params.ExtraData : null;
12134
+
12135
+ }
12136
+ }
12137
+
11767
12138
  /**
11768
12139
  * Control parameter of prohibited information detection in speech task
11769
12140
  * @class
@@ -12474,6 +12845,41 @@ Note: This field may return null, indicating that no valid values can be obtaine
12474
12845
  }
12475
12846
  }
12476
12847
 
12848
+ /**
12849
+ * DeleteVoice request structure.
12850
+ * @class
12851
+ */
12852
+ class DeleteVoiceRequest extends AbstractModel {
12853
+ constructor(){
12854
+ super();
12855
+
12856
+ /**
12857
+ * <p>Voice ID.</p>
12858
+ * @type {string || null}
12859
+ */
12860
+ this.VoiceId = null;
12861
+
12862
+ /**
12863
+ * <p>Extended parameters in the format of a JSON string.</p>
12864
+ * @type {string || null}
12865
+ */
12866
+ this.ExtParam = null;
12867
+
12868
+ }
12869
+
12870
+ /**
12871
+ * @private
12872
+ */
12873
+ deserialize(params) {
12874
+ if (!params) {
12875
+ return;
12876
+ }
12877
+ this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
12878
+ this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
12879
+
12880
+ }
12881
+ }
12882
+
12477
12883
  /**
12478
12884
  * DeleteAsrHotwords request structure.
12479
12885
  * @class
@@ -15006,6 +15412,12 @@ class VoiceInfo extends AbstractModel {
15006
15412
  */
15007
15413
  this.Gender = null;
15008
15414
 
15415
+ /**
15416
+ * <p>Age.</p><p>Enumeration values:</p><ul><li>child: child</li><li>teenager: teenager</li><li>youth: youth</li><li>middle_aged: middle-aged</li><li>senior: senior</li><li>unknown: unknown</li></ul>
15417
+ * @type {string || null}
15418
+ */
15419
+ this.Age = null;
15420
+
15009
15421
  /**
15010
15422
  * <p>List of supported languages. </p><p>For example: en.</p>
15011
15423
  * @type {Array.<string> || null}
@@ -15044,6 +15456,7 @@ class VoiceInfo extends AbstractModel {
15044
15456
  this.Description = 'Description' in params ? params.Description : null;
15045
15457
  this.Category = 'Category' in params ? params.Category : null;
15046
15458
  this.Gender = 'Gender' in params ? params.Gender : null;
15459
+ this.Age = 'Age' in params ? params.Age : null;
15047
15460
  this.Languages = 'Languages' in params ? params.Languages : null;
15048
15461
  this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
15049
15462
  this.Labels = 'Labels' in params ? params.Labels : null;
@@ -17435,25 +17848,25 @@ class CreateAigcVideoTaskRequest extends AbstractModel {
17435
17848
  super();
17436
17849
 
17437
17850
  /**
17438
- * <p>Model name.<br>Supported models:<br>Hunyuan.<br>Hailuo.<br>Kling.<br>Vidu.<br>OS.<br>GV.<br>PixVerse.</p>
17851
+ * <p>Model name.<br>Supported models:<br>Hunyuan.<br>Hailuo.<br>Kling.<br>Vidu.<br>PixVerse.<br>Mingmou.<br>H2.</p>
17439
17852
  * @type {string || null}
17440
17853
  */
17441
17854
  this.ModelName = null;
17442
17855
 
17443
17856
  /**
17444
- * <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>
17857
+ * <p>Specific version number of the model. By default, the system uses the supported stable version of the model.</p><ol><li>Hunyuan: [1.5].</li><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>PixVerse: [v5.6, v6, and c1].</li><li>H2: [1.0].</li></ol>
17445
17858
  * @type {string || null}
17446
17859
  */
17447
17860
  this.ModelVersion = null;
17448
17861
 
17449
17862
  /**
17450
- * <p>Scenario for the generated video.<br>Note: Not all models support scenarios.</p><ol><li>Kling supports motion control (motion_control).</li><li>Mingmou supports landscape-to-portrait conversion (land2port).</li><li>Vidu supports special effect templates (template_effect).</li></ol>
17863
+ * <p>Scenario for the generated video.<br>Note: Not all models support scenarios.</p><ol><li>Kling supports: motion control (motion_control), digital human (avatar_i2v), and lip sync (lip_sync).</li><li>Mingmou supports: landscape-to-portrait conversion (land2port).</li><li>Vidu supports: effect templates (template_effect).</li><li>Hunyuan supports: 3D world model (3d_scene). The returned file is not a video.</li></ol>
17451
17864
  * @type {string || null}
17452
17865
  */
17453
17866
  this.SceneType = null;
17454
17867
 
17455
17868
  /**
17456
- * <p>Description of the generated video. (Note: A maximum of 2000 characters is supported.) This parameter is required when no reference image is specified.</p>
17869
+ * <p>Description of the generated video. This parameter is required when no image is specified.</p>
17457
17870
  * @type {string || null}
17458
17871
  */
17459
17872
  this.Prompt = null;
@@ -17465,37 +17878,37 @@ class CreateAigcVideoTaskRequest extends AbstractModel {
17465
17878
  this.NegativePrompt = null;
17466
17879
 
17467
17880
  /**
17468
- * <p>The default value is False, meaning the model follows instructions strictly. For better results with more nuanced prompts, set this parameter to True to automatically optimize the input prompt and improve generation quality.</p>
17881
+ * <p>The default value is False, meaning the model follows instructions strictly.<br>For better results with more nuanced prompts, set this parameter to True to automatically optimize the input prompt and improve generation quality.</p>
17469
17882
  * @type {boolean || null}
17470
17883
  */
17471
17884
  this.EnhancePrompt = null;
17472
17885
 
17473
17886
  /**
17474
- * <p>Image URL for video generation. The URL must be accessible from the public network.<br>Note:</p><ol><li>The recommended image size is no more than 10 MB. Different models have different size limits.</li><li>Supported image formats: JPEG and PNG.</li><li>If the OS model is used, the input image dimension should be 1280x720 or 720x1280.</li></ol>
17887
+ * <p>Image URL used for video generation. The URL must be accessible from the public network.<br>Note:</p><ol><li>The recommended image size is no more than 10 MB. Different models have different size limits. See the model website for a more complete description.</li><li>Supported image formats: JPEG and PNG.</li></ol>
17475
17888
  * @type {string || null}
17476
17889
  */
17477
17890
  this.ImageUrl = null;
17478
17891
 
17479
17892
  /**
17480
- * <p>The model will generate a video using the image of this parameter as the ending frame.<br>Models that support this parameter:</p><ol><li>GV. If the ending frame image is specified, ImageUrl is required as the starting frame.</li><li>Kling. Version 2.1 supports starting and ending frames with a resolution of 1080P.</li><li>Vidu. q2-pro and q2-turbo support starting and ending frames.</li></ol><p>Note:</p><ol><li>The recommended image size is no more than 10 MB. Different models have different limits.</li><li>Supported image formats: JPEG and PNG.</li></ol>
17893
+ * <p>The model will generate a video using the image of this parameter as the ending frame.<br>Models that support this parameter:</p><ol><li>Kling 2.0, O1, 3.0, and 3.0-Omni support starting and ending frames.</li><li>Kling 1.6, 2.1, 2.5, and 2.6 support starting and ending frames with Resolution:1080p.</li><li>Vidu q2-pro, q2-turbo, q3-pro, and q3-turbo support starting and ending frames.</li><li>PixVerse v5.6, v6, and c1 support starting and ending frames.</li><li>Hailuo 02 supports starting and ending frames.</li></ol><p>Note:</p><ol><li>The recommended image size is no more than 10 MB. Different models have different limits.</li><li>Supported image formats: JPEG and PNG.</li></ol>
17481
17894
  * @type {string || null}
17482
17895
  */
17483
17896
  this.LastImageUrl = null;
17484
17897
 
17485
17898
  /**
17486
- * <p>List of up to 3 asset images, used to describe the images the model should use for video generation.</p><p>Model that supports multiple images:</p><ol><li>GV. If multiple images are specified, ImageUrl and LastImageUrl are unavailable.</li><li>Vidu supports video generation with multiple reference images. The q2 model accepts 1 to 7 images. The ReferenceType in ImageInfos can be used to specify the subject ID for the input.</li></ol><p>Note:</p><ol><li>The image size cannot exceed 10 MB.</li><li>Supported image formats: JPEG and PNG.</li></ol>
17899
+ * <p>List of multiple asset resource images used to describe the resource images used by the model for video generation.</p><p>Models that support multiple images:</p><ol><li>Vidu q2, q2-pro, q3-turbo, q3, and q3-mix support video generation with multiple reference images. One to 7 images can be uploaded. The ReferenceType in ImageInfos can be used to specify the subject ID for the input.</li><li>Kling O1, 3.0-Omni, and 1.6 support video generation with multiple reference images.<ol><li>Kling 1.6 allows uploading 1 to 4 images.</li><li>Kling O1 and 3.0-Omni allow uploading 1 to 7 images. If a reference video is present, 0 to 4 images can be uploaded.</li></ol></li><li>PixVerse, v5.6, v6, and c1 support video generation with multiple reference images. One to 7 images can be uploaded, and image names need to be specified via the Text field in ImageInfos.</li><li>H2 1.0 supports video generation with multiple image parameters. One to 9 images can be uploaded. If a reference video is present, 0 to 5 images can be uploaded.</li></ol><p>Note:</p><ol><li>The image size cannot exceed 10 MB.</li><li>Supported image formats: JPEG and PNG.</li></ol>
17487
17900
  * @type {Array.<AigcVideoReferenceImageInfo> || null}
17488
17901
  */
17489
17902
  this.ImageInfos = null;
17490
17903
 
17491
17904
  /**
17492
- * <p>Only Kling O1 supports reference video information.<br>This can be used as a feature reference video or a video for editing. The default type is video for editing. You can choose to keep the original sound of the video.</p>
17905
+ * <p>Only Kling O1, Kling 3.0-Omni, Vidu q2-pro, and H2 1.0 support reference video information.</p><ol><li>For Kling O1 and 3.0-Omni, the reference video can be used as a feature reference video or a video for editing. The default type is video for editing. You can choose to keep the original sound of the video.</li><li>Vidu q2-pro supports video reference.</li><li>H2 1.0 supports video reference.</li></ol>
17493
17906
  * @type {Array.<AigcVideoReferenceVideoInfo> || null}
17494
17907
  */
17495
17908
  this.VideoInfos = null;
17496
17909
 
17497
17910
  /**
17498
- * <p>Duration of the generated video.<br>Note:</p><ol><li>Kling supports 5 and 10 seconds. Default value: 5 seconds.</li><li>The std mode of Hailuo supports 6 and 10 seconds, and other modes support 6 seconds. Default value: 6 seconds.</li><li>Vidu supports 1 to 10 seconds.</li><li>GV supports 8 seconds. Default value: 8 seconds.</li><li>OS supports 4, 8, and 12 seconds. Default value: 8 seconds.</li></ol>
17911
+ * <p>Duration of the generated video.<br>Note:</p><ol><li>Kling: default value: 5 seconds.<ul><li>O1 supports 3 to 10 seconds.</li><li>3.0-Omni supports 3 to 15 seconds, or 3 to 10 seconds when a video reference is used.</li><li>3.0 supports 3 to 15 seconds.</li><li>Other versions support 5 and 10 seconds.</li></ul></li><li>The std mode of Hailuo supports 6 and 10 seconds, and other modes support 6 seconds. Default value: 6 seconds.</li><li>Vidu: default value: 5 seconds.<ul><li>q3-pro, q3-turbo, q3, and q3-mix support 3 to 16 seconds.</li><li>q2-pro, q2-turbo, and q2 support 1 to 10 seconds.</li></ul></li><li>PixVerse: default value: 5 seconds.<ul><li>v5.6 supports 5, 8, and 10 seconds.</li><li>v6 and c1 support 1 to 15 seconds.</li></ul></li><li>H2 supports 3 to 15 seconds. Default value: 5 seconds.</li></ol>
17499
17912
  * @type {number || null}
17500
17913
  */
17501
17914
  this.Duration = null;
@@ -17513,7 +17926,7 @@ class CreateAigcVideoTaskRequest extends AbstractModel {
17513
17926
  this.StoreCosParam = null;
17514
17927
 
17515
17928
  /**
17516
- * <p>Special scenario parameters required by the model, formatted as a JSON serialized string.<br>Example:<br>{"camera_control":{"type":"simple"}}.</p>
17929
+ * <p>Special scenario parameters or storyboard prompts required by the model, formatted as a JSON serialized string.<br>Example:<br>{"camera_control":{"type":"simple"}}.</p>
17517
17930
  * @type {string || null}
17518
17931
  */
17519
17932
  this.AdditionalParameters = null;
@@ -18619,6 +19032,18 @@ class DesignVoiceAsyncRequest extends AbstractModel {
18619
19032
  */
18620
19033
  this.Prompt = null;
18621
19034
 
19035
+ /**
19036
+ * <p>Voice attribute.</p>
19037
+ * @type {VoiceProfile || null}
19038
+ */
19039
+ this.VoiceProfile = null;
19040
+
19041
+ /**
19042
+ * <p>Audition audio text. The length cannot exceed 500.</p>
19043
+ * @type {string || null}
19044
+ */
19045
+ this.Text = null;
19046
+
18622
19047
  /**
18623
19048
  * <p>Extended parameters in the format of a JSON string.</p>
18624
19049
  * @type {string || null}
@@ -18635,6 +19060,13 @@ class DesignVoiceAsyncRequest extends AbstractModel {
18635
19060
  return;
18636
19061
  }
18637
19062
  this.Prompt = 'Prompt' in params ? params.Prompt : null;
19063
+
19064
+ if (params.VoiceProfile) {
19065
+ let obj = new VoiceProfile();
19066
+ obj.deserialize(params.VoiceProfile)
19067
+ this.VoiceProfile = obj;
19068
+ }
19069
+ this.Text = 'Text' in params ? params.Text : null;
18638
19070
  this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
18639
19071
 
18640
19072
  }
@@ -21176,24 +21608,30 @@ strongest: normal video quality, strongest resilience.
21176
21608
  }
21177
21609
 
21178
21610
  /**
21179
- * The parameters for detecting sensitive information.
21611
+ * DetectVideoSubtitleArea request structure.
21180
21612
  * @class
21181
21613
  */
21182
- class TerrorismConfigureInfoForUpdate extends AbstractModel {
21614
+ class DetectVideoSubtitleAreaRequest extends AbstractModel {
21183
21615
  constructor(){
21184
21616
  super();
21185
21617
 
21186
21618
  /**
21187
- * The parameters for detecting sensitive information in images.
21188
- * @type {TerrorismImgReviewTemplateInfoForUpdate || null}
21619
+ * <p>Input information, which supports only URL and COS.</p>
21620
+ * @type {MediaInputInfo || null}
21189
21621
  */
21190
- this.ImgReviewInfo = null;
21622
+ this.InputInfo = null;
21191
21623
 
21192
21624
  /**
21193
- * The parameters for detecting sensitive information based on OCR.
21194
- * @type {TerrorismOcrReviewTemplateInfoForUpdate || null}
21625
+ * <p>Video language. If you know the language of the video, you can specify this parameter to improve the recognition accuracy.</p><p>Enumeration values:</p><ul><li>zh_en: Chinese and English</li><li>en: English</li><li>ja: Japanese</li><li>ko: Korean</li></ul>
21626
+ * @type {string || null}
21195
21627
  */
21196
- this.OcrReviewInfo = null;
21628
+ this.VideoLanguage = null;
21629
+
21630
+ /**
21631
+ * <p>Extended parameter. This is left empty by default.</p>
21632
+ * @type {string || null}
21633
+ */
21634
+ this.UserExtPara = null;
21197
21635
 
21198
21636
  }
21199
21637
 
@@ -21205,17 +21643,13 @@ class TerrorismConfigureInfoForUpdate extends AbstractModel {
21205
21643
  return;
21206
21644
  }
21207
21645
 
21208
- if (params.ImgReviewInfo) {
21209
- let obj = new TerrorismImgReviewTemplateInfoForUpdate();
21210
- obj.deserialize(params.ImgReviewInfo)
21211
- this.ImgReviewInfo = obj;
21212
- }
21213
-
21214
- if (params.OcrReviewInfo) {
21215
- let obj = new TerrorismOcrReviewTemplateInfoForUpdate();
21216
- obj.deserialize(params.OcrReviewInfo)
21217
- this.OcrReviewInfo = obj;
21646
+ if (params.InputInfo) {
21647
+ let obj = new MediaInputInfo();
21648
+ obj.deserialize(params.InputInfo)
21649
+ this.InputInfo = obj;
21218
21650
  }
21651
+ this.VideoLanguage = 'VideoLanguage' in params ? params.VideoLanguage : null;
21652
+ this.UserExtPara = 'UserExtPara' in params ? params.UserExtPara : null;
21219
21653
 
21220
21654
  }
21221
21655
  }
@@ -23301,6 +23735,59 @@ Note: This field may return null, indicating that no valid values can be obtaine
23301
23735
  }
23302
23736
  }
23303
23737
 
23738
+ /**
23739
+ * The information about the sensitive content detected based on OCR.
23740
+ * @class
23741
+ */
23742
+ class AiReviewPoliticalOcrTaskOutput extends AbstractModel {
23743
+ constructor(){
23744
+ super();
23745
+
23746
+ /**
23747
+ * The confidence score for the OCR-based detection of sensitive information. Value range: 0-100.
23748
+ * @type {number || null}
23749
+ */
23750
+ this.Confidence = null;
23751
+
23752
+ /**
23753
+ * The suggestion for handling the sensitive information detected based on OCR. Valid values:
23754
+ <li>pass</li>
23755
+ <li>review</li>
23756
+ <li>block</li>
23757
+ * @type {string || null}
23758
+ */
23759
+ this.Suggestion = null;
23760
+
23761
+ /**
23762
+ * The video segments that contain sensitive information detected based on OCR.
23763
+ * @type {Array.<MediaContentReviewOcrTextSegmentItem> || null}
23764
+ */
23765
+ this.SegmentSet = null;
23766
+
23767
+ }
23768
+
23769
+ /**
23770
+ * @private
23771
+ */
23772
+ deserialize(params) {
23773
+ if (!params) {
23774
+ return;
23775
+ }
23776
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
23777
+ this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
23778
+
23779
+ if (params.SegmentSet) {
23780
+ this.SegmentSet = new Array();
23781
+ for (let z in params.SegmentSet) {
23782
+ let obj = new MediaContentReviewOcrTextSegmentItem();
23783
+ obj.deserialize(params.SegmentSet[z]);
23784
+ this.SegmentSet.push(obj);
23785
+ }
23786
+ }
23787
+
23788
+ }
23789
+ }
23790
+
23304
23791
  /**
23305
23792
  * Digital watermark parameter type in the MPS task.
23306
23793
  * @class
@@ -23531,7 +24018,7 @@ class DescribeAIAnalysisTemplatesRequest extends AbstractModel {
23531
24018
  }
23532
24019
 
23533
24020
  /**
23534
- * Information required for uploading AIGC result files to COS. The LVB_QCSRole role needs to be created and authorized.
24021
+ * Information required for uploading AIGC result files to COS. The MPS_QcsRole role needs to be created and authorized.
23535
24022
  * @class
23536
24023
  */
23537
24024
  class AigcStoreCosParam extends AbstractModel {
@@ -23605,6 +24092,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
23605
24092
  */
23606
24093
  this.VoiceId = null;
23607
24094
 
24095
+ /**
24096
+ * <p>Audition audio URL.</p>
24097
+ * @type {string || null}
24098
+ */
24099
+ this.AudioUrl = null;
24100
+
23608
24101
  /**
23609
24102
  * <p>Extended information.</p>
23610
24103
  Note: This field may return null, indicating that no valid values can be obtained.
@@ -23631,6 +24124,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
23631
24124
  this.Msg = 'Msg' in params ? params.Msg : null;
23632
24125
  this.Status = 'Status' in params ? params.Status : null;
23633
24126
  this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
24127
+ this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
23634
24128
  this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
23635
24129
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
23636
24130
 
@@ -25327,19 +25821,19 @@ class AiRecognitionTaskOcrFullTextSegmentTextItem extends AbstractModel {
25327
25821
  super();
25328
25822
 
25329
25823
  /**
25330
- * Confidence of a recognition segment. Value range: 0-100.
25824
+ * <p>Confidence of the recognized segment. Value range: 0100.</p>
25331
25825
  * @type {number || null}
25332
25826
  */
25333
25827
  this.Confidence = null;
25334
25828
 
25335
25829
  /**
25336
- * Zone coordinates of a recognition result. The array contains four elements: [x1,y1,x2,y2], i.e., the horizontal and vertical coordinates of the top-left and bottom-right corners.
25830
+ * <p>Area coordinates of the recognition result. The array contains 4 elements [x1,y1,x2,y2], representing the horizontal and vertical coordinates of the top-left corner and bottom-right corner.</p>
25337
25831
  * @type {Array.<number> || null}
25338
25832
  */
25339
25833
  this.AreaCoordSet = null;
25340
25834
 
25341
25835
  /**
25342
- * Recognized text.
25836
+ * <p>Recognized text.</p>
25343
25837
  * @type {string || null}
25344
25838
  */
25345
25839
  this.Text = null;
@@ -25397,39 +25891,38 @@ class SmartSubtitleTaskAsrFullTextSegmentItem extends AbstractModel {
25397
25891
  super();
25398
25892
 
25399
25893
  /**
25400
- * Confidence of a recognized segment. Value range: 0-100.
25894
+ * <p>Confidence of the recognized segment. Value range: 0100.</p>
25401
25895
  * @type {number || null}
25402
25896
  */
25403
25897
  this.Confidence = null;
25404
25898
 
25405
25899
  /**
25406
- * Start time offset of a recognized segment, in seconds.
25900
+ * <p>Start time offset of the recognized segment, in seconds.</p>
25407
25901
  * @type {number || null}
25408
25902
  */
25409
25903
  this.StartTimeOffset = null;
25410
25904
 
25411
25905
  /**
25412
- * End time offset of a recognized segment, in seconds.
25906
+ * <p>End time offset of the recognized segment, in seconds.</p>
25413
25907
  * @type {number || null}
25414
25908
  */
25415
25909
  this.EndTimeOffset = null;
25416
25910
 
25417
25911
  /**
25418
- * Recognized text.
25912
+ * <p>Recognized text.</p>
25419
25913
  * @type {string || null}
25420
25914
  */
25421
25915
  this.Text = null;
25422
25916
 
25423
25917
  /**
25424
- * Word timestamp information.
25425
-
25426
- Note: This field may return null, indicating that no valid value can be obtained.
25918
+ * <p>Word timestamp information.</p>
25919
+ Note: This field may return null, indicating that no valid values can be obtained.
25427
25920
  * @type {Array.<WordResult> || null}
25428
25921
  */
25429
25922
  this.Wordlist = null;
25430
25923
 
25431
25924
  /**
25432
- * Speaker ID (if speaker recognition is enabled).
25925
+ * <p>Speaker ID (if speaker recognition is enabled).</p>
25433
25926
  * @type {string || null}
25434
25927
  */
25435
25928
  this.SpeakerId = null;
@@ -27184,6 +27677,63 @@ Note: This field may return null, indicating that no valid value can be obtained
27184
27677
  }
27185
27678
  }
27186
27679
 
27680
+ /**
27681
+ * DetectVideoSubtitleArea response structure.
27682
+ * @class
27683
+ */
27684
+ class DetectVideoSubtitleAreaResponse extends AbstractModel {
27685
+ constructor(){
27686
+ super();
27687
+
27688
+ /**
27689
+ * <p>Video width.</p><p>Unit: px.</p>
27690
+ * @type {number || null}
27691
+ */
27692
+ this.Width = null;
27693
+
27694
+ /**
27695
+ * <p>Video height.</p><p>Unit: px.</p>
27696
+ * @type {number || null}
27697
+ */
27698
+ this.Height = null;
27699
+
27700
+ /**
27701
+ * <p>Detected subtitle box. If nothing is detected, the value is empty.</p>
27702
+ * @type {Array.<SubtitleArea> || null}
27703
+ */
27704
+ this.Result = null;
27705
+
27706
+ /**
27707
+ * 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.
27708
+ * @type {string || null}
27709
+ */
27710
+ this.RequestId = null;
27711
+
27712
+ }
27713
+
27714
+ /**
27715
+ * @private
27716
+ */
27717
+ deserialize(params) {
27718
+ if (!params) {
27719
+ return;
27720
+ }
27721
+ this.Width = 'Width' in params ? params.Width : null;
27722
+ this.Height = 'Height' in params ? params.Height : null;
27723
+
27724
+ if (params.Result) {
27725
+ this.Result = new Array();
27726
+ for (let z in params.Result) {
27727
+ let obj = new SubtitleArea();
27728
+ obj.deserialize(params.Result[z]);
27729
+ this.Result.push(obj);
27730
+ }
27731
+ }
27732
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
27733
+
27734
+ }
27735
+ }
27736
+
27187
27737
  /**
27188
27738
  * Result of the sentence recognition.
27189
27739
  * @class
@@ -29605,6 +30155,46 @@ Note: This field may return null, indicating that no valid value can be obtained
29605
30155
  }
29606
30156
  }
29607
30157
 
30158
+ /**
30159
+ * DetectVideoWatermark request structure.
30160
+ * @class
30161
+ */
30162
+ class DetectVideoWatermarkRequest extends AbstractModel {
30163
+ constructor(){
30164
+ super();
30165
+
30166
+ /**
30167
+ * <p>Input information, which supports only URL and COS.</p>
30168
+ * @type {MediaInputInfo || null}
30169
+ */
30170
+ this.InputInfo = null;
30171
+
30172
+ /**
30173
+ * <p>Extended parameter. This is left empty by default.</p>
30174
+ * @type {string || null}
30175
+ */
30176
+ this.UserExtPara = null;
30177
+
30178
+ }
30179
+
30180
+ /**
30181
+ * @private
30182
+ */
30183
+ deserialize(params) {
30184
+ if (!params) {
30185
+ return;
30186
+ }
30187
+
30188
+ if (params.InputInfo) {
30189
+ let obj = new MediaInputInfo();
30190
+ obj.deserialize(params.InputInfo)
30191
+ this.InputInfo = obj;
30192
+ }
30193
+ this.UserExtPara = 'UserExtPara' in params ? params.UserExtPara : null;
30194
+
30195
+ }
30196
+ }
30197
+
29608
30198
  /**
29609
30199
  * ModifySmartSubtitleTemplate response structure.
29610
30200
  * @class
@@ -32781,63 +33371,56 @@ class TaskNotifyConfig extends AbstractModel {
32781
33371
  super();
32782
33372
 
32783
33373
  /**
32784
- * Notification type. available values:.
32785
- <li>CMQ: offline. switch to TDMQ-CMQ.</li>.
32786
- <Li>TDMQ-CMQ: message queue</li>.
32787
- <li>URL: when a URL is specified, the HTTP callback is 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 the parseeventnotification api.</li>.
32788
- <Li>SCF: not recommended. additional configuration is required in the console.</li>.
32789
- <Li>AWS-SQS: aws queue, suitable for aws tasks only and requires the same region.</li>.
32790
- <font color="red">note: if left blank, it is TDMQ-CMQ by default. to use another type, you need to fill in the corresponding type value. if using TDMQ-CMQ message queue, an excessively large task response may cause queue failure.</font>.
33374
+ * <p>Notification type. Valid values:</p><li>CMQ: Removed. We recommend that you switch to TDMQ-CMQ.</li><li>TDMQ-CMQ: TDMQ.</li><li>URL: If URL is specified, HTTP callbacks are pushed to the URL specified in NotifyUrl. The callback protocol is HTTP and JSON. The packet body is the same as the output parameter of the event parsing notification API.</li><li>SCF: This is not recommended. Additional configuration for SCF is required in the console.</li><li>AWS-SQS: AWS queue. This is only suitable for AWS tasks in the same region.</li><font color="red"> Note: The default value is TDMQ-CMQ if this is not specified or empty. To use another type, you need to specify the corresponding value. If TDMQ-CMQ is used, oversized task response may cause failure to write to the queue. </font>
32791
33375
  * @type {string || null}
32792
33376
  */
32793
33377
  this.NotifyType = null;
32794
33378
 
32795
33379
  /**
32796
- * Workflow notification method. Valid values: Finish, Change. If this parameter is left empty, `Finish` will be used.
33380
+ * <p>Workflow notification mode. Valid values are Finish and Change. If this is not specified, the default value is Finish.</p>
32797
33381
  * @type {string || null}
32798
33382
  */
32799
33383
  this.NotifyMode = null;
32800
33384
 
32801
33385
  /**
32802
- * HTTP callback URL, required if `NotifyType` is set to `URL`
33386
+ * <p>HTTP callback URL. This is required if NotifyType is URL.</p>
32803
33387
  * @type {string || null}
32804
33388
  */
32805
33389
  this.NotifyUrl = null;
32806
33390
 
32807
33391
  /**
32808
- * The CMQ or TDMQ-CMQ model. Valid values: Queue, Topic.
33392
+ * <p>CMQ or TDMQ for CMQ model. Valid values are Queue and Topic.</p>
32809
33393
  * @type {string || null}
32810
33394
  */
32811
33395
  this.CmqModel = null;
32812
33396
 
32813
33397
  /**
32814
- * The CMQ or TDMQ-CMQ region, such as `sh` (Shanghai) or `bj` (Beijing).
33398
+ * <p>CMQ or TDMQ for CMQ region, such as sh or bj.</p>
32815
33399
  * @type {string || null}
32816
33400
  */
32817
33401
  this.CmqRegion = null;
32818
33402
 
32819
33403
  /**
32820
- * The CMQ or TDMQ-CMQ topic to receive notifications. This parameter is valid when `CmqModel` is `Topic`.
33404
+ * <p>This field takes effect if the model is Topic. It indicates the topic name of the CMQ or TDMQ for CMQ for receiving event notifications.</p>
32821
33405
  * @type {string || null}
32822
33406
  */
32823
33407
  this.TopicName = null;
32824
33408
 
32825
33409
  /**
32826
- * The CMQ or TDMQ-CMQ queue to receive notifications. This parameter is valid when `CmqModel` is `Queue`.
33410
+ * <p>This field takes effect if the model is Queue. It indicates the queue name of the CMQ or TDMQ for CMQ for receiving event notifications.</p>
32827
33411
  * @type {string || null}
32828
33412
  */
32829
33413
  this.QueueName = null;
32830
33414
 
32831
33415
  /**
32832
- * The AWS SQS queue. This parameter is required if `NotifyType` is `AWS-SQS`.
32833
-
33416
+ * <p>AWS SQS callback. This is required if NotifyType is AWS-SQS.</p>
32834
33417
  Note: This field may return null, indicating that no valid values can be obtained.
32835
33418
  * @type {AwsSQS || null}
32836
33419
  */
32837
33420
  this.AwsSQS = null;
32838
33421
 
32839
33422
  /**
32840
- * key used to generate a callback signature.
33423
+ * <p>Key used to generate the callback signature.</p>
32841
33424
  * @type {string || null}
32842
33425
  */
32843
33426
  this.NotifyKey = null;
@@ -33832,6 +34415,76 @@ class AiRecognitionTaskOcrFullTextResultInput extends AbstractModel {
33832
34415
  }
33833
34416
  }
33834
34417
 
34418
+ /**
34419
+ * Voice attribute.
34420
+ * @class
34421
+ */
34422
+ class VoiceProfile extends AbstractModel {
34423
+ constructor(){
34424
+ super();
34425
+
34426
+ /**
34427
+ * <p>Voice name.</p>
34428
+ * @type {string || null}
34429
+ */
34430
+ this.Name = null;
34431
+
34432
+ /**
34433
+ * <p>Voice description.</p>
34434
+ * @type {string || null}
34435
+ */
34436
+ this.Description = null;
34437
+
34438
+ /**
34439
+ * <p>Gender.</p><p>Enumeration values:</p><ul><li>male: male</li><li>female: female</li><li>unknown: unknown</li></ul>
34440
+ * @type {string || null}
34441
+ */
34442
+ this.Gender = null;
34443
+
34444
+ /**
34445
+ * <p>Age.</p><p>Enumeration values:</p><ul><li>child: child</li><li>teenager: teenager</li><li>youth: youth</li><li>middle_aged: middle-aged</li><li>senior: senior</li><li>unknown: unknown</li></ul>
34446
+ * @type {string || null}
34447
+ */
34448
+ this.Age = null;
34449
+
34450
+ /**
34451
+ * <p>Language. 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>
34452
+ * @type {Array.<string> || null}
34453
+ */
34454
+ this.Languages = null;
34455
+
34456
+ /**
34457
+ * <p>Tag.</p>
34458
+ * @type {Array.<string> || null}
34459
+ */
34460
+ this.Labels = null;
34461
+
34462
+ /**
34463
+ * <p>Scenario.</p>
34464
+ * @type {Array.<string> || null}
34465
+ */
34466
+ this.Scenes = null;
34467
+
34468
+ }
34469
+
34470
+ /**
34471
+ * @private
34472
+ */
34473
+ deserialize(params) {
34474
+ if (!params) {
34475
+ return;
34476
+ }
34477
+ this.Name = 'Name' in params ? params.Name : null;
34478
+ this.Description = 'Description' in params ? params.Description : null;
34479
+ this.Gender = 'Gender' in params ? params.Gender : null;
34480
+ this.Age = 'Age' in params ? params.Age : null;
34481
+ this.Languages = 'Languages' in params ? params.Languages : null;
34482
+ this.Labels = 'Labels' in params ? params.Labels : null;
34483
+ this.Scenes = 'Scenes' in params ? params.Scenes : null;
34484
+
34485
+ }
34486
+ }
34487
+
33835
34488
  /**
33836
34489
  * Subtitle suppression module text stroke configuration
33837
34490
  * @class
@@ -35509,7 +36162,7 @@ class CreateTranscodeTemplateResponse extends AbstractModel {
35509
36162
  super();
35510
36163
 
35511
36164
  /**
35512
- * Unique ID of a transcoding template.
36165
+ * <p>Unique identifier of the transcoding template.</p>
35513
36166
  * @type {number || null}
35514
36167
  */
35515
36168
  this.Definition = null;
@@ -35932,7 +36585,7 @@ class ProcessLiveStreamRequest extends AbstractModel {
35932
36585
  super();
35933
36586
 
35934
36587
  /**
35935
- * <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>
36588
+ * <p>Live stream URL (this must be a live stream address; supported formats include RTMP, HLS, FLV, TRTC, WebRTC, and SRT).<br>TRTC address example:<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 ID.<br><code>&lt;sdkappid&gt;</code> is the TRTC SDK app ID.<br><code>&lt;userid&gt;</code> is the ID of the user who enters the room, which can be used to distinguish bots.<br><code>&lt;usersig&gt;</code> is the TRTC user signature.</p><p>WebRTC supports <a href="https://www.tencentcloud.com/product/leb?from_cn_redirect=1">LEB</a> live streams. For more information about how to obtain the address, see <a href="https://www.tencentcloud.com/document/product/267/32720?from_cn_redirect=1">this reference</a>.</p><p>For supported SRT addresses, see <a href="https://ffmpeg.org/ffmpeg-protocols.html#srt">this reference</a>.</p>
35936
36589
  * @type {string || null}
35937
36590
  */
35938
36591
  this.Url = null;
@@ -36525,12 +37178,7 @@ class CreateSmartSubtitleTemplateRequest extends AbstractModel {
36525
37178
  this.Name = null;
36526
37179
 
36527
37180
  /**
36528
- * <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:
36529
-
36530
- [ASR Supported Languages](https://www.tencentcloud.com/zh/document/product/1041/68175#ASRlanguages)
36531
-
36532
-
36533
- 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)
37181
+ * <p>Smart subtitling video source language.</p><p>For ASR and subtitle translation parameter values, see <a href="https://www.tencentcloud.com/document/product/862/116243?from_cn_redirect=1#ASRlanguages">ASR Languages</a>.</p><p>The following lists some commonly used values:</p><p><code>auto</code>: automatic identification. <code>zh</code>: Simplified Chinese. <code>en</code>: English. <code>ja</code>: Japanese. <code>ko</code>: Korean. <code>zh-PY</code>: Chinese, English, and Cantonese. <code>zh_medical</code>: Chinese health care. <code>vi</code>: Vietnamese. <code>ms</code>: Malay. <code>id</code>: Indonesian. <code>fil</code>: Filipino. <code>th</code>: Thai. <code>pt</code>: Portuguese. <code>tr</code>: Turkish. <code>ar</code>: Arabic. <code>es</code>: Spanish. <code>hi</code>: Hindi. <code>fr</code>: French. <code>de</code>: German. <code>it</code>: Italian. <code>zh_dialect</code>: Chinese dialect. <code>zh_en</code>: Chinese and English. <code>yue</code>: Cantonese. <code>ru</code>: Russian. <code>prime_zh</code>: Chinese and English dialects.</p><p>OCR only supports the following values:</p><p><code>zh_en</code>: Chinese and English<br><code>multi</code>: others</p><p>For languages supported by different values, see <a href="https://www.tencentcloud.com/document/product/862/116243?from_cn_redirect=1#OCRlanguages">OCR Languages</a></p>
36534
37182
  * @type {string || null}
36535
37183
  */
36536
37184
  this.VideoSrcLanguage = null;
@@ -36566,7 +37214,7 @@ Common available language codes:<br>`auto` (Auto Recognition), <br>`zh` (Simplif
36566
37214
  this.TranslateSwitch = null;
36567
37215
 
36568
37216
  /**
36569
- * <p>Subtitle target language<br>Take effect when TranslateSwitch is ON. Translation language list:<br><code>ab</code>: Abkhaz<br><code>ace</code>: Acehnese<br><code>ach</code>: Acholi<br><code>af</code>: Afrikaans<br><code>ak</code>: Akan<br><code>am</code>: Amharic<br><code>ar</code>: Arabic<br><code>as</code>: Assamese<br><code>ay</code>: Aymara<br><code>az</code>: Azerbaijani<br><code>ba</code>: Bashkir<br><code>ban</code>: Balinese<br><code>bbc</code>: Batak Toba<br><code>bem</code>: Bemba<br><code>bew</code>: Betawi<br><code>bg</code>: Bulgarian<br><code>bho</code>: Bhojpuri<br><code>bik</code>: Bikol<br><code>bm</code>: Bambara<br><code>bn</code>: Bengali<br><code>br</code>: Breton<br><code>bs</code>: Bosnian<br><code>btx</code>: Batak Karo<br><code>bts</code>: Batak Simalungun<br><code>bua</code>: Buryat<br><code>ca</code>: Catalan<br><code>ceb</code>: Cebuano<br><code>cgg</code>: Kiga<br><code>chm</code>: Meadow Mari<br><code>ckb</code>: Kurdish (Sorani)<br><code>cnh</code>: Hakha Chin<br><code>co</code>: Corsican<br><code>crh</code>: Crimean Tatar<br><code>crs</code>: Seychellois Creole<br><code>cs</code>: Czech<br><code>cv</code>: Chuvash<br><code>cy</code>: Welsh<br><code>da</code>: Danish<br><code>de</code>: German<br><code>din</code>: Dinka<br><code>doi</code>: Dogri<br><code>dov</code>: Dombe<br><code>dv</code>: Dhivehi<br><code>dz</code>: Dzongkha<br><code>ee</code>: Ewe<br><code>el</code>: Greek<br><code>en</code>: English<br><code>eo</code>: Esperanto<br><code>es</code>: Spanish<br><code>et</code>: Estonian<br><code>eu</code>: Basque<br><code>fa</code>: Persian<br><code>ff</code>: Fula<br><code>fi</code>: Finnish<br><code>fil</code>: Filipino (Tagalog)<br><code>fj</code>: Fijian<br><code>fr</code>: French<br><code>fr-CA</code>: French (Canada)<br><code>fr-FR</code>: French (France)<br><code>fy</code>: Frisian<br><code>ga</code>: Irish<br><code>gaa</code>: GaLanguage<br><code>gd</code>: Scottish Gaelic<br><code>gl</code>: Galician<br><code>gn</code>: Guarani<br><code>gom</code>: Konkani<br><code>gu</code>: Gujarati<br><code>gv</code>: Manx<br><code>ha</code>: Hausa<br><code>haw</code>: Hawaiian<br><code>he</code>: Hebrew<br><code>hi</code>: Hindi<br><code>hil</code>: Hiligaynon<br><code>hmn</code>: Hmong<br><code>hr</code>: Croatian<br><code>hrx</code>: Hunsrik<br><code>ht</code>: Haitian Creole<br><code>hu</code>: Hungarian<br><code>hy</code>: Armenian<br><code>id</code>: Indonesian<br><code>ig</code>: Igbo<br><code>ilo</code>: Ilocano<br><code>is</code>: Icelandic<br><code>it</code>: Italian<br><code>iw</code>: Hebrew<br><code>ja</code>: Japanese<br><code>jv</code>: Javanese<br><code>ka</code>: Georgian<br><code>kk</code>: Kazakh<br><code>km</code>: Khmer<br><code>kn</code>: Kannada<br><code>ko</code>: Korean<br><code>kri</code>: Krio<br><code>ku</code>: Kurdish (Kurmanji)<br><code>ktu</code>: Kituba<br><code>ky</code>: Kyrgyz<br><code>la</code>: Latin<br><code>lb</code>: Luxembourgish<br><code>lg</code>: Ganda (Luganda)<br><code>li</code>: Limburgish<br><code>lij</code>: Ligurian<br><code>lmo</code>: Lombard<br><code>ln</code>: Lingala<br><code>lo</code>: Lao<br><code>lt</code>: Lithuanian<br><code>ltg</code>: Latgalian<br><code>luo</code>: Luo<br><code>lus</code>: Mizo<br><code>lv</code>: Latvian<br><code>mai</code>: Maithili<br><code>mak</code>: Makassar<br><code>mg</code>: Malagasy<br><code>mi</code>: Maori<br><code>min</code>: Minangkabau<br><code>mk</code>: Macedonian<br><code>ml</code>: Malayalam<br><code>mn</code>: Mongolian<br><code>mr</code>: Marathi<br><code>ms</code>: Malay<br><code>mt</code>: Maltese<br><code>my</code>: Burmese<br><code>ne</code>: Nepali<br><code>new</code>: Newari<br><code>nl</code>: Dutch<br><code>no</code>: Norwegian<br><code>nr</code>: Southern Ndebele<br><code>nso</code>: Northern Sotho (Sepedi)<br><code>nus</code>: Nuer<br><code>ny</code>: Chichewa (Nyanja)<br><code>oc</code>: Occitan<br><code>om</code>: Oromo<br><code>or</code>: Odia<br><code>pa</code>: Punjabi<br><code>pag</code>: Pangasinan<br><code>pam</code>: Kapampangan<br><code>pap</code>: Papiamento<br><code>pl</code>: Polish<br><code>ps</code>: Pashto<br><code>pt</code>: Portuguese<br><code>pt-BR</code>: Portuguese (Brazil)<br><code>pt-PT</code>: Portuguese (Portugal)<br><code>qu</code>: Quechua<br><code>ro</code>: Romanian<br><code>rom</code>: Romani<br><code>rn</code>: Rundi<br><code>ru</code>: Russian<br><code>rw</code>: Kinyarwanda<br><code>sa</code>: Sanskrit<br><code>scn</code>: Sicilian<br><code>sd</code>: Sindhi<br><code>sg</code>: Sango<br><code>shn</code>: Shan<br><code>si</code>: Sinhalese<br><code>sk</code>: Slovak<br><code>sl</code>: Slovenian<br><code>sm</code>: Samoan<br><code>sn</code>: Shona<br><code>so</code>: Somali<br><code>sq</code>: Albanian<br><code>sr</code>: Serbian<br><code>ss</code>: Swati<br><code>st</code>: Sesotho<br><code>su</code>: Sundanese<br><code>sv</code>: Swedish<br><code>sw</code>: Swahili<br><code>szl</code>: Silesian<br><code>ta</code>: Tamil<br><code>te</code>: Telugu<br><code>tet</code>: Tetum<br><code>tg</code>: Tajik<br><code>th</code>: Thai<br><code>ti</code>: Tigrinya<br><code>tk</code>: Turkmen<br><code>tn</code>: Tswana<br><code>tr</code>: Turkish<br><code>ts</code>: Tsonga<br><code>tt</code>: Tatar<br><code>ug</code>: Uyghur<br><code>uk</code>: Ukrainian<br><code>ur</code>: Urdu<br><code>uz</code>: Uzbek<br><code>vi</code>: Vietnamese<br><code>xh</code>: Xhosa<br><code>yi</code>: Yiddish<br><code>yo</code>: Yoruba<br><code>yua</code>: Yucatec Maya<br><code>yue</code>: Cantonese<br><code>zh</code>: Simplified Chinese<br><code>zh-TW</code>: Traditional Chinese<br><code>zu</code>: Zulu</p><p><strong>Note</strong>: Use the multilingual method.<code>/</code> to separate, such as <code>en/ja</code>, which indicates English and Japanese.</p>
37217
+ * <p>This parameter takes effect when the value of TranslateSwitch is ON. Valid translation languages:</p><p>For ASR extraction and translation, see <a href="https://www.tencentcloud.com/document/product/862/116243?from_cn_redirect=1#ASRlanguages">ASR Translation Languages</a>.<br>For OCR extraction and translation, see <a href="https://www.tencentcloud.com/document/product/862/116243?from_cn_redirect=1#OCRlanguages">OCR Translation Languages</a>.</p><p><strong>Note</strong>: Use <code>/</code> to separate multiple languages, such as <code>en/ja</code>, which indicates English and Japanese.</p><p>Examples of some commonly used languages:</p><p><code>ar</code>: Arabic<br><code>en</code>: English<br><code>fr</code>: French<br><code>it</code>: Italian<br><code>ja</code>: Japanese<br><code>ko</code>: Korean<br><code>ru</code>: Russian<br><code>th</code>: Thai<br><code>tr</code>: Turkish<br><code>vi</code>: Vietnamese<br><code>yue</code>: Cantonese<br><code>zh</code>: Simplified Chinese<br><code>zh-TW</code>: Traditional Chinese</p>
36570
37218
  * @type {string || null}
36571
37219
  */
36572
37220
  this.TranslateDstLanguage = null;
@@ -36744,6 +37392,12 @@ class QualityControlData extends AbstractModel {
36744
37392
  */
36745
37393
  this.ContainerDiagnoseResultSet = null;
36746
37394
 
37395
+ /**
37396
+ * <p>LLM AIGC quality detection result.</p>
37397
+ * @type {LLMDetectionReport || null}
37398
+ */
37399
+ this.LLMDetectionReport = null;
37400
+
36747
37401
  }
36748
37402
 
36749
37403
  /**
@@ -36777,6 +37431,12 @@ class QualityControlData extends AbstractModel {
36777
37431
  }
36778
37432
  }
36779
37433
 
37434
+ if (params.LLMDetectionReport) {
37435
+ let obj = new LLMDetectionReport();
37436
+ obj.deserialize(params.LLMDetectionReport)
37437
+ this.LLMDetectionReport = obj;
37438
+ }
37439
+
36780
37440
  }
36781
37441
  }
36782
37442
 
@@ -37673,37 +38333,43 @@ class CreateAigcImageTaskRequest extends AbstractModel {
37673
38333
  super();
37674
38334
 
37675
38335
  /**
37676
- * <p>Model name.<br>Supported models:<br>Hunyuan.<br>GEM.<br>Qwen.</p>
38336
+ * <p>Model name.<br>Supported models:<br>Hunyuan.<br>Qwen.<br>Vidu.<br>Kling.<br>MJ.</p>
37677
38337
  * @type {string || null}
37678
38338
  */
37679
38339
  this.ModelName = null;
37680
38340
 
37681
38341
  /**
37682
- * <p>Specify the model version number. By default, the system uses the supported stable version of the model.</p><ol><li>GEM: [2.5 and 3.0].</li></ol>
38342
+ * <p>Specific version number of the model. By default, the system uses the supported stable version of the model.</p><ol><li>Hunyuan: [3.0].</li><li>Vidu: [q2].</li><li>Kling: [2.1, O1, 3.0, and 3.0-Omni].</li><li>Qwen: [0925].</li><li>MJ: [v7].</li></ol>
37683
38343
  * @type {string || null}
37684
38344
  */
37685
38345
  this.ModelVersion = null;
37686
38346
 
37687
38347
  /**
37688
- * <p>Description of the generated image. (Note: Supports up to 1000 characters.) This parameter is required when no reference image is passed in.</p>
38348
+ * <p>Used for scene-based image generation; only supported by some models.</p><p>Enumeration value:</p><ul><li>3d_panorama: panoramic view. Only Hunyuan supports this.</li></ul>
38349
+ * @type {string || null}
38350
+ */
38351
+ this.SceneType = null;
38352
+
38353
+ /**
38354
+ * <p>Description of the generated image. This parameter is required when no reference image is specified.</p>
37689
38355
  * @type {string || null}
37690
38356
  */
37691
38357
  this.Prompt = null;
37692
38358
 
37693
38359
  /**
37694
- * <p>Specifies the content you want to prevent the model from generating. Note: Not all models support this. For example: top lighting, bright colors, people, animals, multiple vehicles, and wind.</p>
38360
+ * <p>Specifies the content you want to prevent the model from generating. Note: Not all models support this.</p><p>For example: top lighting, bright colors, people, animals, multiple vehicles, and wind.</p>
37695
38361
  * @type {string || null}
37696
38362
  */
37697
38363
  this.NegativePrompt = null;
37698
38364
 
37699
38365
  /**
37700
- * <p>The default value is False, meaning the model follows instructions strictly. For better results with more nuanced prompts, set this parameter to True to automatically optimize the input prompt and improve generation quality.</p>
38366
+ * <p>The default value is False, meaning the model follows instructions strictly.<br>For better results with more nuanced prompts, set this parameter to True to automatically optimize the input prompt and improve generation quality.</p>
37701
38367
  * @type {boolean || null}
37702
38368
  */
37703
38369
  this.EnhancePrompt = null;
37704
38370
 
37705
38371
  /**
37706
- * <p>Used for inputting image information as a resource for reference. Default support for inputting an image.</p><p>Models supporting multi-image input:</p><ol><li>GEM, supporting up to 3 images as resource input.</li></ol><p>Note:</p><ol><li>Recommended image less than 7M. Limits vary by model.</li><li>Format support: jpeg, png, webp.</li></ol>
38372
+ * <p>Reference resource images. By default, one image can be specified.</p><p>Models supporting multiple images:</p><ol><li>Kling 2.1 supports up to 4 images as resource image input.</li><li>Kling 3.0-Omni supports up to 10 images as resource image input.</li><li>Kling O1 supports up to 10 images as resource image input.</li><li>Vidu q2 supports up to 7 images as resource image input.</li><li>Hunyuan 3.0 supports up to 3 images as resource image input.</li><li>MJ v7 supports up to 3 images as resource image input.</li></ol><p>Note:</p><ol><li>The recommended image size is less than 7 MB. Different models have different limits.</li><li>Supported image formats: JPEG, PNG, and WebP.</li></ol>
37707
38373
  * @type {Array.<AigcImageInfo> || null}
37708
38374
  */
37709
38375
  this.ImageInfos = null;
@@ -37715,7 +38381,7 @@ class CreateAigcImageTaskRequest extends AbstractModel {
37715
38381
  this.ExtraParameters = null;
37716
38382
 
37717
38383
  /**
37718
- * <p>Used to input some special scene parameters required by the model, serialized into a string in Json format. Example: {"size":"2048x2048"}</p>
38384
+ * <p>Special scenario parameters required by the model, formatted as a JSON serialized string.</p><ol><li>Hunyuan 3.0 supports freely setting resolution width and height within [512, 2048] pixels, with the product of width and height less than or equal to 1024x1024 pixels.</li><li>Qwen 0925 supports freely setting resolution width and height, with a valid total pixel range of [512x512=261632, 2048x2048=4194304].</li></ol><p>Example: {"size":"1024x1024"}.</p>
37719
38385
  * @type {string || null}
37720
38386
  */
37721
38387
  this.AdditionalParameters = null;
@@ -37743,6 +38409,7 @@ class CreateAigcImageTaskRequest extends AbstractModel {
37743
38409
  }
37744
38410
  this.ModelName = 'ModelName' in params ? params.ModelName : null;
37745
38411
  this.ModelVersion = 'ModelVersion' in params ? params.ModelVersion : null;
38412
+ this.SceneType = 'SceneType' in params ? params.SceneType : null;
37746
38413
  this.Prompt = 'Prompt' in params ? params.Prompt : null;
37747
38414
  this.NegativePrompt = 'NegativePrompt' in params ? params.NegativePrompt : null;
37748
38415
  this.EnhancePrompt = 'EnhancePrompt' in params ? params.EnhancePrompt : null;
@@ -38181,6 +38848,49 @@ class DescribeSmartSubtitleTemplatesResponse extends AbstractModel {
38181
38848
  }
38182
38849
  }
38183
38850
 
38851
+ /**
38852
+ * LLM detection result report.
38853
+ * @class
38854
+ */
38855
+ class LLMDetectionReport extends AbstractModel {
38856
+ constructor(){
38857
+ super();
38858
+
38859
+ /**
38860
+ * <p>Number of detection results.</p>
38861
+ * @type {number || null}
38862
+ */
38863
+ this.ResultCount = null;
38864
+
38865
+ /**
38866
+ * <p>Detection item result list.</p>
38867
+ * @type {Array.<LLMDetectionResultItem> || null}
38868
+ */
38869
+ this.ResultSet = null;
38870
+
38871
+ }
38872
+
38873
+ /**
38874
+ * @private
38875
+ */
38876
+ deserialize(params) {
38877
+ if (!params) {
38878
+ return;
38879
+ }
38880
+ this.ResultCount = 'ResultCount' in params ? params.ResultCount : null;
38881
+
38882
+ if (params.ResultSet) {
38883
+ this.ResultSet = new Array();
38884
+ for (let z in params.ResultSet) {
38885
+ let obj = new LLMDetectionResultItem();
38886
+ obj.deserialize(params.ResultSet[z]);
38887
+ this.ResultSet.push(obj);
38888
+ }
38889
+ }
38890
+
38891
+ }
38892
+ }
38893
+
38184
38894
  /**
38185
38895
  * DescribeUsageData request structure.
38186
38896
  * @class
@@ -39603,25 +40313,25 @@ class AigcVideoExtraParam extends AbstractModel {
39603
40313
  super();
39604
40314
 
39605
40315
  /**
39606
- * <p>Resolution of the generated video. The resolution is related to the selected model and set video duration.</p><p>Supported resolution options for different models:</p><ol><li>Kling: 720P (default) and 1080P.</li><li>Hailuo: 768P (default) and 1080P.</li><li>Vidu: 720P (default) and 1080P.</li><li>GV: 720P (default) and 1080P.</li><li>OS: 720P. For images, only 1280x720 and 720x1280 are supported. Resolution cannot be specified.</li></ol><p>Note: In addition to the resolution supported by the model, 2K and 4K resolutions are also available.</p>
40316
+ * <p>Resolution of the generated video. The resolution is related to the selected model and set video duration.</p><p>Supported resolution options for different models:</p><ol><li>Kling: 720P (default) and 1080P. Kling 3.0 and Kling 3.0-Omni support 4K.</li><li>Hailuo: 768P (default) and 1080P.</li><li>Vidu: 540P, 720P (default), and 1080P.</li><li>PixVerse: 540P, 720P (default), and 1080P.</li><li>H2: 720P and 1080P (default).</li></ol><p>Note: In addition to the resolution supported by the model, 2K and 4K resolutions are also available.</p>
39607
40317
  * @type {string || null}
39608
40318
  */
39609
40319
  this.Resolution = null;
39610
40320
 
39611
40321
  /**
39612
- * <p>Aspect ratio of the generated video.</p><p>Support for this parameter by different models:</p><ol><li>Kling only supports this parameter for text-to-video, with aspect ratios of 16:9 (default), 9:16, and 1:1.</li><li>Hailuo does not support this parameter.</li><li>Vidu supports [16:9, 9:16, 4:3, 3:4, 1:1] for text-to-video and reference image-to-video only. Only q2 supports 4:3 and 3:4.</li><li>GV supports 16:9 (default) and 9:16.</li><li>OS only supports this parameter for text-to-video, with aspect ratios of 16:9 (default) and 9:16.</li></ol><p>Note: For more information about the supported aspect ratios of specific models, see the model website.</p>
40322
+ * <p>Aspect ratio of the generated video.</p><p>Support for this parameter by different models:</p><ol><li>Kling only supports this parameter for text-to-video, with aspect ratios of 16:9 (default), 9:16, and 1:1.</li><li>Hailuo does not support this parameter.</li><li>Vidu supports [16:9, 9:16, 4:3, 3:4, 1:1] for text-to-video and reference image-to-video only. Only q2 supports 4:3 and 3:4.</li><li>PixVerse supports [16:9, 9:16, 4:3, 3:4, 1:1, 2:3, 3:2, 21:9] for text-to-video and reference image-to-video only. Only v6 and c1 support 2:3, 3:2, and 21:9.</li><li>H2 supports [16:9, 9:16, 4:3, 3:4, 4:5, 5:4, 1:1, 21:9, 9:21] for text-to-video and reference image-to-video only.</li></ol><p>Note: For more information about the supported aspect ratios of specific models, see the model website.</p>
39613
40323
  * @type {string || null}
39614
40324
  */
39615
40325
  this.AspectRatio = null;
39616
40326
 
39617
40327
  /**
39618
- * <p>Indicates whether to add a logo watermark.</p><ol><li>Hailuo supports this parameter.</li><li>Kling supports this parameter.</li><li>Vidu supports this parameter.</li></ol>
40328
+ * <p>Indicates whether to add a logo watermark.</p><ol><li>Hailuo supports this parameter.</li><li>Kling supports this parameter.</li><li>Vidu supports this parameter.</li><li>H2 supports this parameter.</li></ol>
39619
40329
  * @type {number || null}
39620
40330
  */
39621
40331
  this.LogoAdd = null;
39622
40332
 
39623
40333
  /**
39624
- * <p>Indicates whether to generate audio for the video. Valid values: true or false.</p><p>Models that support this parameter:</p><ol><li>GV. Default value: true.</li><li>OS. Default value: true.</li></ol>
40334
+ * <p>Indicates whether to generate audio for the video. Valid values: true or false.</p><p>Models that support this parameter:</p><ol><li>Vidu. Only q3 series models support this parameter. Default value: false.</li><li>PixVerse. Default value: false.</li><li>Kling. Default value: false.</li></ol>
39625
40335
  * @type {boolean || null}
39626
40336
  */
39627
40337
  this.EnableAudio = null;
@@ -40374,6 +41084,55 @@ If not set, the service will automatically adopt a suitable bitrate based on aud
40374
41084
  }
40375
41085
  }
40376
41086
 
41087
+ /**
41088
+ * DetectVideoWatermark response structure.
41089
+ * @class
41090
+ */
41091
+ class DetectVideoWatermarkResponse extends AbstractModel {
41092
+ constructor(){
41093
+ super();
41094
+
41095
+ /**
41096
+ * <p>Confidence of watermark presence.</p><p>Value range: [0, 100].</p>
41097
+ * @type {number || null}
41098
+ */
41099
+ this.Confidence = null;
41100
+
41101
+ /**
41102
+ * <p>Indicates whether a watermark is present in the video.</p>
41103
+ * @type {boolean || null}
41104
+ */
41105
+ this.HasWatermark = null;
41106
+
41107
+ /**
41108
+ * <p>Watermark description.</p>
41109
+ * @type {string || null}
41110
+ */
41111
+ this.Description = null;
41112
+
41113
+ /**
41114
+ * 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.
41115
+ * @type {string || null}
41116
+ */
41117
+ this.RequestId = null;
41118
+
41119
+ }
41120
+
41121
+ /**
41122
+ * @private
41123
+ */
41124
+ deserialize(params) {
41125
+ if (!params) {
41126
+ return;
41127
+ }
41128
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
41129
+ this.HasWatermark = 'HasWatermark' in params ? params.HasWatermark : null;
41130
+ this.Description = 'Description' in params ? params.Description : null;
41131
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
41132
+
41133
+ }
41134
+ }
41135
+
40377
41136
  /**
40378
41137
  * Translated segment.
40379
41138
  * @class
@@ -40462,11 +41221,59 @@ class DescribeVoicesRequest extends AbstractModel {
40462
41221
  super();
40463
41222
 
40464
41223
  /**
40465
- * <p>Voice type. </p><p>Enumeration value: </p><ul><li>system: System audio.</li></ul>
41224
+ * <p>Voice ID.</p>
41225
+ * @type {string || null}
41226
+ */
41227
+ this.VoiceId = null;
41228
+
41229
+ /**
41230
+ * <p>Voice type.</p><p>Enumeration values:</p><ul><li>system: system audio.</li><li>clone: cloned audio.</li><li>design: designed audio.</li><li>all: All voices (default).</li></ul>
40466
41231
  * @type {string || null}
40467
41232
  */
40468
41233
  this.VoiceType = null;
40469
41234
 
41235
+ /**
41236
+ * <p>Voice name.</p>
41237
+ * @type {string || null}
41238
+ */
41239
+ this.VoiceName = null;
41240
+
41241
+ /**
41242
+ * <p>Voice description.</p>
41243
+ * @type {string || null}
41244
+ */
41245
+ this.Description = null;
41246
+
41247
+ /**
41248
+ * <p>Gender.</p><p>Enumeration values:</p><ul><li>male: male</li><li>female: female</li><li>unknown: unknown</li></ul>
41249
+ * @type {string || null}
41250
+ */
41251
+ this.Gender = null;
41252
+
41253
+ /**
41254
+ * <p>Age.</p><p>Enumeration values:</p><ul><li>child: child</li><li>teenager: teenager</li><li>youth: youth</li><li>middle_aged: middle-aged</li><li>senior: senior</li><li>unknown: unknown</li></ul>
41255
+ * @type {string || null}
41256
+ */
41257
+ this.Age = null;
41258
+
41259
+ /**
41260
+ * <p>Language.</p>
41261
+ * @type {Array.<string> || null}
41262
+ */
41263
+ this.Languages = null;
41264
+
41265
+ /**
41266
+ * <p>Tag.</p>
41267
+ * @type {Array.<string> || null}
41268
+ */
41269
+ this.Labels = null;
41270
+
41271
+ /**
41272
+ * <p>Scenario.</p>
41273
+ * @type {Array.<string> || null}
41274
+ */
41275
+ this.Scenes = null;
41276
+
40470
41277
  /**
40471
41278
  * <p>Extended parameters in the format of a JSON string. </p><p>Other filter criteria:
40472
41279
  voiceName (String): Voice name, fuzzy matching. labels (Array of String): Tags. Matches voices that contain these tags.</p>
@@ -40483,7 +41290,15 @@ voiceName (String): Voice name, fuzzy matching. labels (Array of String): Tags.
40483
41290
  if (!params) {
40484
41291
  return;
40485
41292
  }
41293
+ this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
40486
41294
  this.VoiceType = 'VoiceType' in params ? params.VoiceType : null;
41295
+ this.VoiceName = 'VoiceName' in params ? params.VoiceName : null;
41296
+ this.Description = 'Description' in params ? params.Description : null;
41297
+ this.Gender = 'Gender' in params ? params.Gender : null;
41298
+ this.Age = 'Age' in params ? params.Age : null;
41299
+ this.Languages = 'Languages' in params ? params.Languages : null;
41300
+ this.Labels = 'Labels' in params ? params.Labels : null;
41301
+ this.Scenes = 'Scenes' in params ? params.Scenes : null;
40487
41302
  this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
40488
41303
 
40489
41304
  }
@@ -40721,33 +41536,65 @@ class DescribeStreamLinkSecurityGroupRequest extends AbstractModel {
40721
41536
  }
40722
41537
 
40723
41538
  /**
40724
- * The information about the sensitive content detected based on OCR.
41539
+ *
40725
41540
  * @class
40726
41541
  */
40727
- class AiReviewPoliticalOcrTaskOutput extends AbstractModel {
41542
+ class RecipeItem extends AbstractModel {
40728
41543
  constructor(){
40729
41544
  super();
40730
41545
 
40731
41546
  /**
40732
- * The confidence score for the OCR-based detection of sensitive information. Value range: 0-100.
41547
+ *
41548
+ * @type {string || null}
41549
+ */
41550
+ this.Theme = null;
41551
+
41552
+ /**
41553
+ *
40733
41554
  * @type {number || null}
40734
41555
  */
40735
- this.Confidence = null;
41556
+ this.Num = null;
41557
+
41558
+ }
41559
+
41560
+ /**
41561
+ * @private
41562
+ */
41563
+ deserialize(params) {
41564
+ if (!params) {
41565
+ return;
41566
+ }
41567
+ this.Theme = 'Theme' in params ? params.Theme : null;
41568
+ this.Num = 'Num' in params ? params.Num : null;
41569
+
41570
+ }
41571
+ }
41572
+
41573
+ /**
41574
+ * DeleteVoice response structure.
41575
+ * @class
41576
+ */
41577
+ class DeleteVoiceResponse extends AbstractModel {
41578
+ constructor(){
41579
+ super();
40736
41580
 
40737
41581
  /**
40738
- * The suggestion for handling the sensitive information detected based on OCR. Valid values:
40739
- <li>pass</li>
40740
- <li>review</li>
40741
- <li>block</li>
41582
+ * <p>Error code. 0 is returned if the request is successful.</p>
41583
+ * @type {number || null}
41584
+ */
41585
+ this.ErrorCode = null;
41586
+
41587
+ /**
41588
+ * <p>Error message. success is returned if the request is successful.</p>
40742
41589
  * @type {string || null}
40743
41590
  */
40744
- this.Suggestion = null;
41591
+ this.Msg = null;
40745
41592
 
40746
41593
  /**
40747
- * The video segments that contain sensitive information detected based on OCR.
40748
- * @type {Array.<MediaContentReviewOcrTextSegmentItem> || null}
41594
+ * 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.
41595
+ * @type {string || null}
40749
41596
  */
40750
- this.SegmentSet = null;
41597
+ this.RequestId = null;
40751
41598
 
40752
41599
  }
40753
41600
 
@@ -40758,17 +41605,9 @@ class AiReviewPoliticalOcrTaskOutput extends AbstractModel {
40758
41605
  if (!params) {
40759
41606
  return;
40760
41607
  }
40761
- this.Confidence = 'Confidence' in params ? params.Confidence : null;
40762
- this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
40763
-
40764
- if (params.SegmentSet) {
40765
- this.SegmentSet = new Array();
40766
- for (let z in params.SegmentSet) {
40767
- let obj = new MediaContentReviewOcrTextSegmentItem();
40768
- obj.deserialize(params.SegmentSet[z]);
40769
- this.SegmentSet.push(obj);
40770
- }
40771
- }
41608
+ this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
41609
+ this.Msg = 'Msg' in params ? params.Msg : null;
41610
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
40772
41611
 
40773
41612
  }
40774
41613
  }
@@ -41282,6 +42121,51 @@ class MediaAiAnalysisFrameTagItem extends AbstractModel {
41282
42121
  }
41283
42122
  }
41284
42123
 
42124
+ /**
42125
+ * The parameters for detecting sensitive information.
42126
+ * @class
42127
+ */
42128
+ class TerrorismConfigureInfoForUpdate extends AbstractModel {
42129
+ constructor(){
42130
+ super();
42131
+
42132
+ /**
42133
+ * The parameters for detecting sensitive information in images.
42134
+ * @type {TerrorismImgReviewTemplateInfoForUpdate || null}
42135
+ */
42136
+ this.ImgReviewInfo = null;
42137
+
42138
+ /**
42139
+ * The parameters for detecting sensitive information based on OCR.
42140
+ * @type {TerrorismOcrReviewTemplateInfoForUpdate || null}
42141
+ */
42142
+ this.OcrReviewInfo = null;
42143
+
42144
+ }
42145
+
42146
+ /**
42147
+ * @private
42148
+ */
42149
+ deserialize(params) {
42150
+ if (!params) {
42151
+ return;
42152
+ }
42153
+
42154
+ if (params.ImgReviewInfo) {
42155
+ let obj = new TerrorismImgReviewTemplateInfoForUpdate();
42156
+ obj.deserialize(params.ImgReviewInfo)
42157
+ this.ImgReviewInfo = obj;
42158
+ }
42159
+
42160
+ if (params.OcrReviewInfo) {
42161
+ let obj = new TerrorismOcrReviewTemplateInfoForUpdate();
42162
+ obj.deserialize(params.OcrReviewInfo)
42163
+ this.OcrReviewInfo = obj;
42164
+ }
42165
+
42166
+ }
42167
+ }
42168
+
41285
42169
  /**
41286
42170
  * The execution results of the subtasks of a scheme.
41287
42171
  * @class
@@ -42655,6 +43539,99 @@ class MediaImageSpriteItem extends AbstractModel {
42655
43539
  }
42656
43540
  }
42657
43541
 
43542
+ /**
43543
+ *
43544
+ * @class
43545
+ */
43546
+ class AiPosterSuiteConfig extends AbstractModel {
43547
+ constructor(){
43548
+ super();
43549
+
43550
+ /**
43551
+ *
43552
+ * @type {string || null}
43553
+ */
43554
+ this.Mode = null;
43555
+
43556
+ /**
43557
+ *
43558
+ * @type {number || null}
43559
+ */
43560
+ this.Definition = null;
43561
+
43562
+ /**
43563
+ *
43564
+ * @type {Array.<RecipeItem> || null}
43565
+ */
43566
+ this.Recipe = null;
43567
+
43568
+ /**
43569
+ *
43570
+ * @type {string || null}
43571
+ */
43572
+ this.Language = null;
43573
+
43574
+ /**
43575
+ *
43576
+ * @type {string || null}
43577
+ */
43578
+ this.PanelRatio = null;
43579
+
43580
+ /**
43581
+ *
43582
+ * @type {string || null}
43583
+ */
43584
+ this.PanelResolution = null;
43585
+
43586
+ /**
43587
+ *
43588
+ * @type {Array.<CustomVariable> || null}
43589
+ */
43590
+ this.CustomVariables = null;
43591
+
43592
+ /**
43593
+ *
43594
+ * @type {string || null}
43595
+ */
43596
+ this.Model = null;
43597
+
43598
+ }
43599
+
43600
+ /**
43601
+ * @private
43602
+ */
43603
+ deserialize(params) {
43604
+ if (!params) {
43605
+ return;
43606
+ }
43607
+ this.Mode = 'Mode' in params ? params.Mode : null;
43608
+ this.Definition = 'Definition' in params ? params.Definition : null;
43609
+
43610
+ if (params.Recipe) {
43611
+ this.Recipe = new Array();
43612
+ for (let z in params.Recipe) {
43613
+ let obj = new RecipeItem();
43614
+ obj.deserialize(params.Recipe[z]);
43615
+ this.Recipe.push(obj);
43616
+ }
43617
+ }
43618
+ this.Language = 'Language' in params ? params.Language : null;
43619
+ this.PanelRatio = 'PanelRatio' in params ? params.PanelRatio : null;
43620
+ this.PanelResolution = 'PanelResolution' in params ? params.PanelResolution : null;
43621
+
43622
+ if (params.CustomVariables) {
43623
+ this.CustomVariables = new Array();
43624
+ for (let z in params.CustomVariables) {
43625
+ let obj = new CustomVariable();
43626
+ obj.deserialize(params.CustomVariables[z]);
43627
+ this.CustomVariables.push(obj);
43628
+ }
43629
+ }
43630
+ this.Model = 'Model' in params ? params.Model : null;
43631
+
43632
+ }
43633
+ }
43634
+
42658
43635
  /**
42659
43636
  * The audio enhancement configuration.
42660
43637
  * @class
@@ -43979,37 +44956,37 @@ class AiRecognitionTaskTransTextSegmentItem extends AbstractModel {
43979
44956
  super();
43980
44957
 
43981
44958
  /**
43982
- * The confidence score for a segment. Value range: 0-100.
44959
+ * <p>Confidence of the recognized segment. Value range: 0100.</p>
43983
44960
  * @type {number || null}
43984
44961
  */
43985
44962
  this.Confidence = null;
43986
44963
 
43987
44964
  /**
43988
- * The start time offset (seconds) of a segment.
44965
+ * <p>Start time offset of the recognized segment, in seconds.</p>
43989
44966
  * @type {number || null}
43990
44967
  */
43991
44968
  this.StartTimeOffset = null;
43992
44969
 
43993
44970
  /**
43994
- * The end time offset (seconds) of a segment.
44971
+ * <p>End time offset of the recognized segment, in seconds.</p>
43995
44972
  * @type {number || null}
43996
44973
  */
43997
44974
  this.EndTimeOffset = null;
43998
44975
 
43999
44976
  /**
44000
- * The text transcript.
44977
+ * <p>Recognized text.</p>
44001
44978
  * @type {string || null}
44002
44979
  */
44003
44980
  this.Text = null;
44004
44981
 
44005
44982
  /**
44006
- * The translation.
44983
+ * <p>Translated text.</p>
44007
44984
  * @type {string || null}
44008
44985
  */
44009
44986
  this.Trans = null;
44010
44987
 
44011
44988
  /**
44012
- * Word timestamp information.
44989
+ * <p>Word timestamp information.</p>
44013
44990
  * @type {Array.<WordResult> || null}
44014
44991
  */
44015
44992
  this.Wordlist = null;
@@ -44233,6 +45210,7 @@ module.exports = {
44233
45210
  ExtractBlindWatermarkTask: ExtractBlindWatermarkTask,
44234
45211
  AiReviewTaskProhibitedAsrResult: AiReviewTaskProhibitedAsrResult,
44235
45212
  AdaptiveDynamicStreamingTemplate: AdaptiveDynamicStreamingTemplate,
45213
+ CustomVariable: CustomVariable,
44236
45214
  AiAnalysisTaskReelOutput: AiAnalysisTaskReelOutput,
44237
45215
  MediaAiAnalysisDescriptionItem: MediaAiAnalysisDescriptionItem,
44238
45216
  DeleteAnimatedGraphicsTemplateResponse: DeleteAnimatedGraphicsTemplateResponse,
@@ -44246,6 +45224,7 @@ module.exports = {
44246
45224
  ManageTaskResponse: ManageTaskResponse,
44247
45225
  DeleteWorkflowRequest: DeleteWorkflowRequest,
44248
45226
  AwsS3FileUploadTrigger: AwsS3FileUploadTrigger,
45227
+ SubtitleArea: SubtitleArea,
44249
45228
  MediaSnapshotByTimeOffsetItem: MediaSnapshotByTimeOffsetItem,
44250
45229
  NumberFormat: NumberFormat,
44251
45230
  ModifySampleSnapshotTemplateRequest: ModifySampleSnapshotTemplateRequest,
@@ -44300,6 +45279,7 @@ module.exports = {
44300
45279
  AiRecognitionTaskInput: AiRecognitionTaskInput,
44301
45280
  SmartSubtitleTaskTextResultOutput: SmartSubtitleTaskTextResultOutput,
44302
45281
  AiAnalysisTaskFrameTagResult: AiAnalysisTaskFrameTagResult,
45282
+ VoiceUpdateFields: VoiceUpdateFields,
44303
45283
  AudioTemplateInfo: AudioTemplateInfo,
44304
45284
  DescribeBatchTaskDetailResponse: DescribeBatchTaskDetailResponse,
44305
45285
  CoverConfigureInfo: CoverConfigureInfo,
@@ -44308,6 +45288,7 @@ module.exports = {
44308
45288
  AiReviewPornAsrTaskInput: AiReviewPornAsrTaskInput,
44309
45289
  AiRecognitionTaskFaceResult: AiRecognitionTaskFaceResult,
44310
45290
  CreateAdaptiveDynamicStreamingTemplateRequest: CreateAdaptiveDynamicStreamingTemplateRequest,
45291
+ LLMDetectionResultItem: LLMDetectionResultItem,
44311
45292
  CreateProcessImageTemplateResponse: CreateProcessImageTemplateResponse,
44312
45293
  TerrorismImgReviewTemplateInfoForUpdate: TerrorismImgReviewTemplateInfoForUpdate,
44313
45294
  ModifyTranscodeTemplateRequest: ModifyTranscodeTemplateRequest,
@@ -44338,6 +45319,7 @@ module.exports = {
44338
45319
  AudioSeparateConfig: AudioSeparateConfig,
44339
45320
  DeleteAIRecognitionTemplateRequest: DeleteAIRecognitionTemplateRequest,
44340
45321
  AigcAudioOutputAudioInfo: AigcAudioOutputAudioInfo,
45322
+ UpdateVoiceRequest: UpdateVoiceRequest,
44341
45323
  AiAnalysisTaskCoverResult: AiAnalysisTaskCoverResult,
44342
45324
  AudioBeautifyConfig: AudioBeautifyConfig,
44343
45325
  EnableWorkflowRequest: EnableWorkflowRequest,
@@ -44396,6 +45378,7 @@ module.exports = {
44396
45378
  Speakers: Speakers,
44397
45379
  FaceConfigureInfo: FaceConfigureInfo,
44398
45380
  DescribeSmartEraseTemplatesRequest: DescribeSmartEraseTemplatesRequest,
45381
+ UpdateVoiceResponse: UpdateVoiceResponse,
44399
45382
  PoliticalAsrReviewTemplateInfoForUpdate: PoliticalAsrReviewTemplateInfoForUpdate,
44400
45383
  AiSampleFaceOperation: AiSampleFaceOperation,
44401
45384
  SvgWatermarkInputForUpdate: SvgWatermarkInputForUpdate,
@@ -44407,6 +45390,7 @@ module.exports = {
44407
45390
  CreateAigcImageTaskResponse: CreateAigcImageTaskResponse,
44408
45391
  ComposeVideoStream: ComposeVideoStream,
44409
45392
  LiveSmartSubtitleResult: LiveSmartSubtitleResult,
45393
+ LLMDetectionIssue: LLMDetectionIssue,
44410
45394
  ProhibitedAsrReviewTemplateInfoForUpdate: ProhibitedAsrReviewTemplateInfoForUpdate,
44411
45395
  AiAnalysisTaskCutoutInput: AiAnalysisTaskCutoutInput,
44412
45396
  ModifyAnimatedGraphicsTemplateResponse: ModifyAnimatedGraphicsTemplateResponse,
@@ -44422,6 +45406,7 @@ module.exports = {
44422
45406
  DeleteAIAnalysisTemplateRequest: DeleteAIAnalysisTemplateRequest,
44423
45407
  EditMediaRequest: EditMediaRequest,
44424
45408
  PureSubtitleTransResultOutput: PureSubtitleTransResultOutput,
45409
+ DeleteVoiceRequest: DeleteVoiceRequest,
44425
45410
  DeleteAsrHotwordsRequest: DeleteAsrHotwordsRequest,
44426
45411
  S3InputInfo: S3InputInfo,
44427
45412
  MediaProcessTaskImageSpriteResult: MediaProcessTaskImageSpriteResult,
@@ -44555,7 +45540,7 @@ module.exports = {
44555
45540
  ComposeMediaItem: ComposeMediaItem,
44556
45541
  AdvancedSuperResolutionConfig: AdvancedSuperResolutionConfig,
44557
45542
  BlindWatermarkTemplate: BlindWatermarkTemplate,
44558
- TerrorismConfigureInfoForUpdate: TerrorismConfigureInfoForUpdate,
45543
+ DetectVideoSubtitleAreaRequest: DetectVideoSubtitleAreaRequest,
44559
45544
  DescribePersonSamplesRequest: DescribePersonSamplesRequest,
44560
45545
  EnableScheduleResponse: EnableScheduleResponse,
44561
45546
  SecurityGroupInfo: SecurityGroupInfo,
@@ -44589,6 +45574,7 @@ module.exports = {
44589
45574
  AiReviewTerrorismOcrTaskOutput: AiReviewTerrorismOcrTaskOutput,
44590
45575
  DescribeAsrHotwordsListResponse: DescribeAsrHotwordsListResponse,
44591
45576
  AiAnalysisResult: AiAnalysisResult,
45577
+ AiReviewPoliticalOcrTaskOutput: AiReviewPoliticalOcrTaskOutput,
44592
45578
  BlindWatermarkInput: BlindWatermarkInput,
44593
45579
  DescribeBlindWatermarkTemplatesResponse: DescribeBlindWatermarkTemplatesResponse,
44594
45580
  ImageWatermarkInputForUpdate: ImageWatermarkInputForUpdate,
@@ -44654,6 +45640,7 @@ module.exports = {
44654
45640
  SmartSubtitleTaskAsrFullTextResultOutput: SmartSubtitleTaskAsrFullTextResultOutput,
44655
45641
  TerrorismOcrReviewTemplateInfo: TerrorismOcrReviewTemplateInfo,
44656
45642
  ExtractBlindWatermarkTaskConfig: ExtractBlindWatermarkTaskConfig,
45643
+ DetectVideoSubtitleAreaResponse: DetectVideoSubtitleAreaResponse,
44657
45644
  RecognizeAudioSentence: RecognizeAudioSentence,
44658
45645
  SharpEnhanceConfig: SharpEnhanceConfig,
44659
45646
  ImageEncodeConfig: ImageEncodeConfig,
@@ -44693,6 +45680,7 @@ module.exports = {
44693
45680
  CreateAIAnalysisTemplateResponse: CreateAIAnalysisTemplateResponse,
44694
45681
  CreateSmartEraseTemplateResponse: CreateSmartEraseTemplateResponse,
44695
45682
  MediaProcessTaskSampleSnapshotResult: MediaProcessTaskSampleSnapshotResult,
45683
+ DetectVideoWatermarkRequest: DetectVideoWatermarkRequest,
44696
45684
  ModifySmartSubtitleTemplateResponse: ModifySmartSubtitleTemplateResponse,
44697
45685
  UserDefineConfigureInfoForUpdate: UserDefineConfigureInfoForUpdate,
44698
45686
  S3OutputStorage: S3OutputStorage,
@@ -44766,6 +45754,7 @@ module.exports = {
44766
45754
  OcrFullTextConfigureInfoForUpdate: OcrFullTextConfigureInfoForUpdate,
44767
45755
  SubtitleLayoutConfig: SubtitleLayoutConfig,
44768
45756
  AiRecognitionTaskOcrFullTextResultInput: AiRecognitionTaskOcrFullTextResultInput,
45757
+ VoiceProfile: VoiceProfile,
44769
45758
  SubtitleOutlineConfig: SubtitleOutlineConfig,
44770
45759
  DescribeTasksResponse: DescribeTasksResponse,
44771
45760
  AiRecognitionTaskFaceResultInput: AiRecognitionTaskFaceResultInput,
@@ -44829,6 +45818,7 @@ module.exports = {
44829
45818
  DeleteSubtitleEmbedTemplateResponse: DeleteSubtitleEmbedTemplateResponse,
44830
45819
  DescribeTranscodeTemplatesRequest: DescribeTranscodeTemplatesRequest,
44831
45820
  DescribeSmartSubtitleTemplatesResponse: DescribeSmartSubtitleTemplatesResponse,
45821
+ LLMDetectionReport: LLMDetectionReport,
44832
45822
  DescribeUsageDataRequest: DescribeUsageDataRequest,
44833
45823
  SchedulesInfo: SchedulesInfo,
44834
45824
  DisableWorkflowRequest: DisableWorkflowRequest,
@@ -44867,6 +45857,7 @@ module.exports = {
44867
45857
  AiReviewTaskPornAsrResult: AiReviewTaskPornAsrResult,
44868
45858
  EditMediaFileInfo: EditMediaFileInfo,
44869
45859
  ComposeAudioStream: ComposeAudioStream,
45860
+ DetectVideoWatermarkResponse: DetectVideoWatermarkResponse,
44870
45861
  SmartSubtitleTaskTransTextSegmentItem: SmartSubtitleTaskTransTextSegmentItem,
44871
45862
  DescribeVoicesRequest: DescribeVoicesRequest,
44872
45863
  LiveAiParagraphInfo: LiveAiParagraphInfo,
@@ -44874,7 +45865,8 @@ module.exports = {
44874
45865
  PornImgReviewTemplateInfoForUpdate: PornImgReviewTemplateInfoForUpdate,
44875
45866
  CreateWatermarkTemplateResponse: CreateWatermarkTemplateResponse,
44876
45867
  DescribeStreamLinkSecurityGroupRequest: DescribeStreamLinkSecurityGroupRequest,
44877
- AiReviewPoliticalOcrTaskOutput: AiReviewPoliticalOcrTaskOutput,
45868
+ RecipeItem: RecipeItem,
45869
+ DeleteVoiceResponse: DeleteVoiceResponse,
44878
45870
  OcrFullTextConfigureInfo: OcrFullTextConfigureInfo,
44879
45871
  UpdateSmartErasePrivacyConfig: UpdateSmartErasePrivacyConfig,
44880
45872
  TextTranslationResponse: TextTranslationResponse,
@@ -44885,6 +45877,7 @@ module.exports = {
44885
45877
  DeleteSnapshotByTimeOffsetTemplateRequest: DeleteSnapshotByTimeOffsetTemplateRequest,
44886
45878
  DescribeAnimatedGraphicsTemplatesResponse: DescribeAnimatedGraphicsTemplatesResponse,
44887
45879
  MediaAiAnalysisFrameTagItem: MediaAiAnalysisFrameTagItem,
45880
+ TerrorismConfigureInfoForUpdate: TerrorismConfigureInfoForUpdate,
44888
45881
  ActivityResItem: ActivityResItem,
44889
45882
  LiveActivityResItem: LiveActivityResItem,
44890
45883
  UpdateSmartEraseSubtitleConfig: UpdateSmartEraseSubtitleConfig,
@@ -44903,6 +45896,7 @@ module.exports = {
44903
45896
  SampleSnapshotTemplate: SampleSnapshotTemplate,
44904
45897
  SubtitleEmbedTemplateItem: SubtitleEmbedTemplateItem,
44905
45898
  MediaImageSpriteItem: MediaImageSpriteItem,
45899
+ AiPosterSuiteConfig: AiPosterSuiteConfig,
44906
45900
  AudioEnhanceConfig: AudioEnhanceConfig,
44907
45901
  AiRecognitionTaskFaceResultItem: AiRecognitionTaskFaceResultItem,
44908
45902
  AiAnalysisTaskDescriptionInput: AiAnalysisTaskDescriptionInput,