tencentcloud-sdk-nodejs-intl-en 3.0.1394 → 3.0.1396

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.
@@ -1614,7 +1614,7 @@ Note: The HLS segment format for adaptive bitrate streaming is based on this fie
1614
1614
  }
1615
1615
 
1616
1616
  /**
1617
- *
1617
+ * Custom description variable.
1618
1618
  * @class
1619
1619
  */
1620
1620
  class CustomVariable extends AbstractModel {
@@ -1622,13 +1622,13 @@ class CustomVariable extends AbstractModel {
1622
1622
  super();
1623
1623
 
1624
1624
  /**
1625
- *
1625
+ * <p>User-defined variable type.</p><p>Parameter format: PascalCase format.</p><p>This cannot be UserPrompt. The default platform template is not adapted for custom content. Submit a ticket if needed.</p>
1626
1626
  * @type {string || null}
1627
1627
  */
1628
1628
  this.Type = null;
1629
1629
 
1630
1630
  /**
1631
- *
1631
+ * <p>Custom variable description.</p>
1632
1632
  * @type {string || null}
1633
1633
  */
1634
1634
  this.Description = null;
@@ -2775,7 +2775,7 @@ class DescribeTextToSpeechAsyncTaskRequest extends AbstractModel {
2775
2775
  }
2776
2776
 
2777
2777
  /**
2778
- *
2778
+ * Output video information of the AIGC audio generation task.
2779
2779
  * @class
2780
2780
  */
2781
2781
  class AigcAudioOutputVideoInfo extends AbstractModel {
@@ -2783,13 +2783,13 @@ class AigcAudioOutputVideoInfo extends AbstractModel {
2783
2783
  super();
2784
2784
 
2785
2785
  /**
2786
- *
2786
+ * <p>Video URL.</p>
2787
2787
  * @type {string || null}
2788
2788
  */
2789
2789
  this.Url = null;
2790
2790
 
2791
2791
  /**
2792
- *
2792
+ * <p>Video duration.</p>
2793
2793
  * @type {number || null}
2794
2794
  */
2795
2795
  this.Duration = null;
@@ -3795,7 +3795,7 @@ Default value: black.
3795
3795
  }
3796
3796
 
3797
3797
  /**
3798
- *
3798
+ * Reference audio information.
3799
3799
  * @class
3800
3800
  */
3801
3801
  class AigcAudioReferenceAudioInfo extends AbstractModel {
@@ -3803,7 +3803,7 @@ class AigcAudioReferenceAudioInfo extends AbstractModel {
3803
3803
  super();
3804
3804
 
3805
3805
  /**
3806
- *
3806
+ * <p>Reference audio URL, which must be accessible from the public network.</p>
3807
3807
  * @type {string || null}
3808
3808
  */
3809
3809
  this.AudioUrl = null;
@@ -5629,6 +5629,69 @@ Note: This field may return null, indicating that no valid value can be obtained
5629
5629
  }
5630
5630
  }
5631
5631
 
5632
+ /**
5633
+ * Smart subtitle recognition segment.
5634
+ * @class
5635
+ */
5636
+ class SmartSubtitleTaskFullTextSegmentItem extends AbstractModel {
5637
+ constructor(){
5638
+ super();
5639
+
5640
+ /**
5641
+ * <p>Confidence of the recognized segment. Value range: 0–100.</p>
5642
+ * @type {number || null}
5643
+ */
5644
+ this.Confidence = null;
5645
+
5646
+ /**
5647
+ * <p>Start time offset of the recognized segment, in seconds.</p>
5648
+ * @type {number || null}
5649
+ */
5650
+ this.StartTimeOffset = null;
5651
+
5652
+ /**
5653
+ * <p>End time offset of the recognized segment, in seconds.</p>
5654
+ * @type {number || null}
5655
+ */
5656
+ this.EndTimeOffset = null;
5657
+
5658
+ /**
5659
+ * <p>Recognized text.</p>
5660
+ * @type {string || null}
5661
+ */
5662
+ this.Text = null;
5663
+
5664
+ /**
5665
+ * <p>Translated text.</p>
5666
+ * @type {string || null}
5667
+ */
5668
+ this.Trans = null;
5669
+
5670
+ /**
5671
+ * <p>Speaker ID.</p>
5672
+ * @type {string || null}
5673
+ */
5674
+ this.SpeakerId = null;
5675
+
5676
+ }
5677
+
5678
+ /**
5679
+ * @private
5680
+ */
5681
+ deserialize(params) {
5682
+ if (!params) {
5683
+ return;
5684
+ }
5685
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
5686
+ this.StartTimeOffset = 'StartTimeOffset' in params ? params.StartTimeOffset : null;
5687
+ this.EndTimeOffset = 'EndTimeOffset' in params ? params.EndTimeOffset : null;
5688
+ this.Text = 'Text' in params ? params.Text : null;
5689
+ this.Trans = 'Trans' in params ? params.Trans : null;
5690
+ this.SpeakerId = 'SpeakerId' in params ? params.SpeakerId : null;
5691
+
5692
+ }
5693
+ }
5694
+
5632
5695
  /**
5633
5696
  * Input parameter type of video content recognition
5634
5697
  * @class
@@ -5672,6 +5735,13 @@ class SmartSubtitleTaskTextResultOutput extends AbstractModel {
5672
5735
  constructor(){
5673
5736
  super();
5674
5737
 
5738
+ /**
5739
+ * <p>List of segments for smart subtitle recognition.</p>
5740
+ Note: This field may return null, indicating that no valid values can be obtained.
5741
+ * @type {Array.<SmartSubtitleTaskFullTextSegmentItem> || null}
5742
+ */
5743
+ this.SegmentSet = null;
5744
+
5675
5745
  /**
5676
5746
  * <p>Subtitle recognition result</p>
5677
5747
  Note: This field may return null, indicating that no valid values can be obtained.
@@ -5703,6 +5773,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
5703
5773
  return;
5704
5774
  }
5705
5775
 
5776
+ if (params.SegmentSet) {
5777
+ this.SegmentSet = new Array();
5778
+ for (let z in params.SegmentSet) {
5779
+ let obj = new SmartSubtitleTaskFullTextSegmentItem();
5780
+ obj.deserialize(params.SegmentSet[z]);
5781
+ this.SegmentSet.push(obj);
5782
+ }
5783
+ }
5784
+
5706
5785
  if (params.RecognizeSubtitleResult) {
5707
5786
  this.RecognizeSubtitleResult = new Array();
5708
5787
  for (let z in params.RecognizeSubtitleResult) {
@@ -5919,6 +5998,24 @@ Note: This field may return null, indicating that no valid values can be obtaine
5919
5998
  */
5920
5999
  this.TrackChannelInfo = null;
5921
6000
 
6001
+ /**
6002
+ * <p>Audio track language, such as chi or eng. Note: (1) This follows the ISO 639-2 standard. (2) This applies only to adaptive bitrate streaming templates. (3) The value "source" means that the source language is used.</p>
6003
+ * @type {string || null}
6004
+ */
6005
+ this.AudioLanguage = null;
6006
+
6007
+ /**
6008
+ * <p>Audio track name, such as Chinese or English. Note: (1) Only Chinese characters, letters, digits, spaces, underscores (_), hyphens (-), periods (.), and brackets are supported. The length cannot exceed 64 characters. (2) This applies only to adaptive bitrate streaming templates. (3) The value "source" means that the source name is used.</p>
6009
+ * @type {string || null}
6010
+ */
6011
+ this.AudioName = null;
6012
+
6013
+ /**
6014
+ * <p>Default audio track. When set to true, the current audio track is designated as the default audio track. A maximum of 1 default audio track can be specified.</p><p>Default value: false.</p>
6015
+ * @type {boolean || null}
6016
+ */
6017
+ this.DefaultTrack = null;
6018
+
5922
6019
  }
5923
6020
 
5924
6021
  /**
@@ -5938,6 +6035,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
5938
6035
  obj.deserialize(params.TrackChannelInfo)
5939
6036
  this.TrackChannelInfo = obj;
5940
6037
  }
6038
+ this.AudioLanguage = 'AudioLanguage' in params ? params.AudioLanguage : null;
6039
+ this.AudioName = 'AudioName' in params ? params.AudioName : null;
6040
+ this.DefaultTrack = 'DefaultTrack' in params ? params.DefaultTrack : null;
5941
6041
 
5942
6042
  }
5943
6043
  }
@@ -7052,6 +7152,60 @@ class AiReviewTerrorismOcrTaskInput extends AbstractModel {
7052
7152
  }
7053
7153
  }
7054
7154
 
7155
+ /**
7156
+ * External audio.
7157
+ * @class
7158
+ */
7159
+ class AddOnAudio extends AbstractModel {
7160
+ constructor(){
7161
+ super();
7162
+
7163
+ /**
7164
+ * <p>Audio file input information. Note: (1) Supported audio stream encoding formats: AAC, AC3, EAC3, FLAC, Opus, and MP3. (2) If the segment type set in the adaptive bitrate streaming template is TS, the audio stream encoding format cannot be FLAC.</p>
7165
+ * @type {MediaInputInfo || null}
7166
+ */
7167
+ this.InputInfo = null;
7168
+
7169
+ /**
7170
+ * <p>Audio track name, such as Chinese or English. Note: Only Chinese characters, letters, digits, spaces, underscores (_), hyphens (-), periods (.), and brackets are supported. The length cannot exceed 64 characters.</p>
7171
+ * @type {string || null}
7172
+ */
7173
+ this.AudioName = null;
7174
+
7175
+ /**
7176
+ * <p>Audio track language, such as chi or eng. This follows the ISO 639-2 standard.</p>
7177
+ * @type {string || null}
7178
+ */
7179
+ this.AudioLanguage = null;
7180
+
7181
+ /**
7182
+ * <p>Default audio track. When set to true, the current audio is designated as the default audio track. A maximum of 1 default audio track can be specified.</p><p>Default value: false.</p>
7183
+ * @type {boolean || null}
7184
+ */
7185
+ this.DefaultTrack = null;
7186
+
7187
+ }
7188
+
7189
+ /**
7190
+ * @private
7191
+ */
7192
+ deserialize(params) {
7193
+ if (!params) {
7194
+ return;
7195
+ }
7196
+
7197
+ if (params.InputInfo) {
7198
+ let obj = new MediaInputInfo();
7199
+ obj.deserialize(params.InputInfo)
7200
+ this.InputInfo = obj;
7201
+ }
7202
+ this.AudioName = 'AudioName' in params ? params.AudioName : null;
7203
+ this.AudioLanguage = 'AudioLanguage' in params ? params.AudioLanguage : null;
7204
+ this.DefaultTrack = 'DefaultTrack' in params ? params.DefaultTrack : null;
7205
+
7206
+ }
7207
+ }
7208
+
7055
7209
  /**
7056
7210
  * Input for text keyword recognition.
7057
7211
  * @class
@@ -7554,7 +7708,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
7554
7708
  this.EraseConfig = null;
7555
7709
 
7556
7710
  /**
7557
- *
7711
+ * <p>AI image set configuration.</p>
7558
7712
  * @type {AiPosterSuiteConfig || null}
7559
7713
  */
7560
7714
  this.AiPosterSuiteConfig = null;
@@ -8027,7 +8181,7 @@ class DeleteAIRecognitionTemplateRequest extends AbstractModel {
8027
8181
  }
8028
8182
 
8029
8183
  /**
8030
- *
8184
+ * Output audio information of the AIGC audio generation task.
8031
8185
  * @class
8032
8186
  */
8033
8187
  class AigcAudioOutputAudioInfo extends AbstractModel {
@@ -8035,13 +8189,13 @@ class AigcAudioOutputAudioInfo extends AbstractModel {
8035
8189
  super();
8036
8190
 
8037
8191
  /**
8038
- *
8192
+ * <p>Audio URL.</p>
8039
8193
  * @type {string || null}
8040
8194
  */
8041
8195
  this.Url = null;
8042
8196
 
8043
8197
  /**
8044
- *
8198
+ * <p>Audio duration.</p>
8045
8199
  * @type {number || null}
8046
8200
  */
8047
8201
  this.Duration = null;
@@ -8938,7 +9092,7 @@ class CreateAigcAudioTaskResponse extends AbstractModel {
8938
9092
  super();
8939
9093
 
8940
9094
  /**
8941
- * The task ID returned after the task is created successfully.Call the query API to poll for task progress and the generation result.Example value: 24*******AigcAudio-6a38**3a9f51468da5bfc25****9a462
9095
+ * <p>Returned task ID after the task is created successfully.<br>The task progress and generation results can be obtained by calling the query API.</p>
8942
9096
  * @type {string || null}
8943
9097
  */
8944
9098
  this.TaskId = null;
@@ -10609,25 +10763,25 @@ class DescribeAigcAudioTaskResponse extends AbstractModel {
10609
10763
  super();
10610
10764
 
10611
10765
  /**
10612
- * Current task status. WAIT: waiting; RUN: running; FAIL: failed; DONE: successful.Example value: DONE
10766
+ * <p>Current task status. WAIT: waiting. RUN: running. FAIL: failed. DONE: successful.</p>
10613
10767
  * @type {string || null}
10614
10768
  */
10615
10769
  this.Status = null;
10616
10770
 
10617
10771
  /**
10618
- * When the task status is FAIL, the failure information is returned.
10772
+ * <p>If the task status is FAIL, the failure information is returned.</p>
10619
10773
  * @type {string || null}
10620
10774
  */
10621
10775
  this.Message = null;
10622
10776
 
10623
10777
  /**
10624
- * Output audio information.
10778
+ * <p>Output audio information.</p>
10625
10779
  * @type {Array.<AigcAudioOutputAudioInfo> || null}
10626
10780
  */
10627
10781
  this.AudioInfos = null;
10628
10782
 
10629
10783
  /**
10630
- * Output video information. Only returned for scenarios such as video dubbing.
10784
+ * <p>Output video information, which is only available for scenarios such as video dubbing.</p>
10631
10785
  * @type {Array.<AigcAudioOutputVideoInfo> || null}
10632
10786
  */
10633
10787
  this.VideoInfos = null;
@@ -15259,67 +15413,67 @@ class CreateAigcAudioTaskRequest extends AbstractModel {
15259
15413
  super();
15260
15414
 
15261
15415
  /**
15262
- * Model name. Currently supported models for music generation: GL, MinimaxMusic.Example value: MiniMaxMusic
15416
+ * <p>Model name. Supported models for music generation: GL and MiniMaxMusic.</p>
15263
15417
  * @type {string || null}
15264
15418
  */
15265
15419
  this.ModelName = null;
15266
15420
 
15267
15421
  /**
15268
- * Specifies the model version. By default, the system uses the supported stable version of the model.Supported versions for GL: 2.0, 3.0-clip, 3.0-pro.Supported versions for MinimaxMusic: 2.0, 2.5, 2.6.Example value: 2.0
15422
+ * <p>Specifies the model version. By default, the system uses the supported stable version of the model.<br>Supported versions for GL: 3.0-clip and 3.0-pro.<br>Supported versions for MinimaxMusic: 2.0, 2.5, and 2.6.</p>
15269
15423
  * @type {string || null}
15270
15424
  */
15271
15425
  this.ModelVersion = null;
15272
15426
 
15273
15427
  /**
15274
- * Specifies the audio generation scene. Music: music.Example value: music
15428
+ * <p>Specifies the scenario for audio generation. Music: music.</p>
15275
15429
  * @type {string || null}
15276
15430
  */
15277
15431
  this.SceneType = null;
15278
15432
 
15279
15433
  /**
15280
- * Description of the generated audio. (Note: Supports up to 2000 characters.) This parameter is required when no reference image is passed in.Example value: generate a piece of music
15434
+ * <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>
15281
15435
  * @type {string || null}
15282
15436
  */
15283
15437
  this.Prompt = null;
15284
15438
 
15285
15439
  /**
15286
- * Reference video information. Only supported by certain models.
15440
+ * <p>Reference video information, which is supported by some models.</p>
15287
15441
  * @type {Array.<AigcAudioReferenceVideoInfo> || null}
15288
15442
  */
15289
15443
  this.VideoInfos = null;
15290
15444
 
15291
15445
  /**
15292
- * Reference audio information.For example, this parameter is required when generating music from a reference audio.
15446
+ * <p>Specify the reference audio information.</p><p>For example, this is required for music generation.</p>
15293
15447
  * @type {Array.<AigcAudioReferenceAudioInfo> || null}
15294
15448
  */
15295
15449
  this.AudioInfos = null;
15296
15450
 
15297
15451
  /**
15298
- * Output audio format. Empty by default. Supported values: mp3, wav.Example value: wav
15452
+ * <p>Output audio format. By default, this is not specified. Valid values: mp3 and wav.</p>
15299
15453
  * @type {string || null}
15300
15454
  */
15301
15455
  this.OutputAudioFormat = null;
15302
15456
 
15303
15457
  /**
15304
- * COS bucket information for the file result. Note: COS is required and the MPS_QcsRole role needs to be created and authorized.
15458
+ * <p>COS bucket information for the file result. Note: COS is required and the MPS_QcsRole role needs to be created and authorized.</p>
15305
15459
  * @type {AigcStoreCosParam || null}
15306
15460
  */
15307
15461
  this.StoreCosParam = null;
15308
15462
 
15309
15463
  /**
15310
- * Additional parameters required for the model.
15464
+ * <p>Additional parameters required.</p>
15311
15465
  * @type {AigcAudioExtraParam || null}
15312
15466
  */
15313
15467
  this.ExtraParameters = null;
15314
15468
 
15315
15469
  /**
15316
- * Used to input some special scene parameters required by the model, serialized into a string in JSON format.Example: when passing lyrics to the MinimaxMusic model:{"lyric":{"The pony runs happily, flowers are blooming"}}Example value: {"sequential_image_generation":"auto"}
15470
+ * <p>This is used to specify special scenario parameters required by the model, in the format of a serialized JSON string.<br>Example to specify lyrics for the MinimaxMusic model:<br>{"lyric":{"The pony is running with joy. The flowers are blooming."}}</p>
15317
15471
  * @type {string || null}
15318
15472
  */
15319
15473
  this.AdditionalParameters = null;
15320
15474
 
15321
15475
  /**
15322
- * API operator name.Example value: admin
15476
+ * <p>API operator name.</p>
15323
15477
  * @type {string || null}
15324
15478
  */
15325
15479
  this.Operator = null;
@@ -22804,7 +22958,7 @@ class CreateQualityControlTemplateRequest extends AbstractModel {
22804
22958
  }
22805
22959
 
22806
22960
  /**
22807
- *
22961
+ * Extended parameters for AIGC audio generation.
22808
22962
  * @class
22809
22963
  */
22810
22964
  class AigcAudioExtraParam extends AbstractModel {
@@ -22812,7 +22966,7 @@ class AigcAudioExtraParam extends AbstractModel {
22812
22966
  super();
22813
22967
 
22814
22968
  /**
22815
- *
22969
+ * <p>Resource ID. Specify this based on your needs.</p>
22816
22970
  * @type {string || null}
22817
22971
  */
22818
22972
  this.ResourceId = null;
@@ -29232,7 +29386,7 @@ class DescribeAigcAudioTaskRequest extends AbstractModel {
29232
29386
  super();
29233
29387
 
29234
29388
  /**
29235
- * The task ID returned when creating the AIGC audio generation task.Example value: 24000145-****d**-cb46b8040b684b539bbd46****e*e2fd
29389
+ * <p>Task ID returned when the AIGC video generation task is created.</p>
29236
29390
  * @type {string || null}
29237
29391
  */
29238
29392
  this.TaskId = null;
@@ -33081,98 +33235,95 @@ class AdaptiveDynamicStreamingTaskInput extends AbstractModel {
33081
33235
  super();
33082
33236
 
33083
33237
  /**
33084
- * Adaptive dynamic streaming template ID.
33238
+ * <p>Adaptive bitrate streaming template ID.</p>
33085
33239
  * @type {number || null}
33086
33240
  */
33087
33241
  this.Definition = null;
33088
33242
 
33089
33243
  /**
33090
- * Watermark list. Multiple image or text watermarks up to a maximum of 10 are supported.
33244
+ * <p>Watermark list. Up to 10 image or text watermarks are supported.</p>
33091
33245
  * @type {Array.<WatermarkInput> || null}
33092
33246
  */
33093
33247
  this.WatermarkSet = null;
33094
33248
 
33095
33249
  /**
33096
- * Digital watermark parameter.
33250
+ * <p>Digital watermark parameter.</p>
33097
33251
  Note: This field may return null, indicating that no valid values can be obtained.
33098
33252
  * @type {BlindWatermarkInput || null}
33099
33253
  */
33100
33254
  this.BlindWatermark = null;
33101
33255
 
33102
33256
  /**
33103
- * Target storage for files after adaptive dynamic streaming. If left blank, it inherits the upper-level OutputStorage value.
33104
- Note: This field may return null, indicating that no valid value can be obtained.
33257
+ * <p>Target storage for files after adaptive bitrate streaming. If this is not specified, the upper-level OutputStorage value is used.</p>
33258
+ Note: This field may return null, indicating that no valid values can be obtained.
33105
33259
  * @type {TaskOutputStorage || null}
33106
33260
  */
33107
33261
  this.OutputStorage = null;
33108
33262
 
33109
33263
  /**
33110
- * Output path for the manifest file after adaptive dynamic streaming. It can be either a relative path or an absolute path.
33111
- If you need to define an output path, the path must end with `.{format}`. Refer to [Filename Variable Description](https://intl.cloud.tencent.com/document/product/862/37039?from_cn_redirect=1) for variable names.
33112
- Example of relative path:
33113
- <li>filename_{variable name}.{format}</li>
33114
- <li>filename.{format}</li>
33115
- Example of absolute path:
33116
- <li>/custom path/filename_{variable name}.{format}</li>
33117
- If not filled in, it is a relative path by default: {inputName}_adaptiveDynamicStreaming_{definition}.{format}.
33264
+ * <p>Output path for the manifest file after adaptive bitrate streaming, which can be a relative or absolute path.<br>To define the output path, the path must end with <code>.{format}</code>. For variable names, see <a href="https://www.tencentcloud.com/document/product/862/37039?from_cn_redirect=1">Filename Variables</a>.<br>Relative path example:</p><li>Filename_{variable name}.{format}</li><li>Filename.{format}</li>Absolute path example:<li>/custom path/Filename_{variable name}.{format}</li>If this is not specified, the default relative path is {inputName}_adaptiveDynamicStreaming_{definition}.{format}.
33118
33265
  * @type {string || null}
33119
33266
  */
33120
33267
  this.OutputObjectPath = null;
33121
33268
 
33122
33269
  /**
33123
- * After adaptive dynamic streaming, the output path of substream files can only be a relative path. If not filled in, it is a relative path by default: `{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}`.
33270
+ * <p>Output path for substream files after adaptive bitrate streaming, which can only be a relative path. If this is not specified, the default relative path is <code>{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}</code>.</p>
33124
33271
  * @type {string || null}
33125
33272
  */
33126
33273
  this.SubStreamObjectName = null;
33127
33274
 
33128
33275
  /**
33129
- * After adaptive dynamic streaming (for HLS only), the output path of segment files can only be a relative path. If not filled in, it is a relative path by default: `{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}`.
33276
+ * <p>Output path for segment files after adaptive bitrate streaming (HLS only), which can only be a relative path. If this is not specified, the default relative path is <code>{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}</code>.</p>
33130
33277
  * @type {string || null}
33131
33278
  */
33132
33279
  this.SegmentObjectName = null;
33133
33280
 
33134
33281
  /**
33135
- * External subtitle feature specifies the subtitle file to be inserted.
33136
- Note: This field may return null, indicating that no valid value can be obtained.
33282
+ * <p>External subtitle feature. Specifies the subtitle file to be inserted.</p>
33283
+ Note: This field may return null, indicating that no valid values can be obtained.
33137
33284
  * @type {Array.<AddOnSubtitle> || null}
33138
33285
  */
33139
33286
  this.AddOnSubtitles = null;
33140
33287
 
33141
33288
  /**
33142
- * Specifies the Drm information.
33143
- Note: This field may return null, indicating that no valid value can be obtained.
33289
+ * <p>DRM information.</p>
33290
+ Note: This field may return null, indicating that no valid values can be obtained.
33144
33291
  * @type {DrmInfo || null}
33145
33292
  */
33146
33293
  this.DrmInfo = null;
33147
33294
 
33148
33295
  /**
33149
- * Adaptive transcoding template type.
33150
- Common: audio/video type.
33151
- PureAudio: audio-only.
33296
+ * <p>Adaptive bitrate streaming template type. Valid values:<br>Common: audio and video.<br>PureAudio: audio only.</p>
33152
33297
  * @type {string || null}
33153
33298
  */
33154
33299
  this.DefinitionType = null;
33155
33300
 
33156
33301
  /**
33157
- * Hard subtitle (suppression subtitle) feature, specify subtitles source, font size, position and other subtitle parameters.
33158
- Note: This field may return null, indicating that no valid value can be obtained.
33302
+ * <p>Hard subtitle (burned-in subtitle) feature. Specifies the subtitle source, font size, location, and other subtitle parameters.</p>
33303
+ Note: This field may return null, indicating that no valid values can be obtained.
33159
33304
  * @type {SubtitleTemplate || null}
33160
33305
  */
33161
33306
  this.SubtitleTemplate = null;
33162
33307
 
33163
33308
  /**
33164
- * Transcoding parameter extension field.
33309
+ * <p>Extended transcoding parameter field.</p>
33165
33310
  * @type {string || null}
33166
33311
  */
33167
33312
  this.StdExtInfo = null;
33168
33313
 
33169
33314
  /**
33170
- * Specifies the frame at the given pts time as a key frame and segments it. unit: milliseconds (relative deviation <=1ms is allowed). when gop and segment duration are specified simultaneously, they function together. note: enable RawPts, keep the frame rate as source, and ensure the passed-in pts time corresponds to a frame in the source.
33315
+ * <p>Specifies frames at specified PTS times as keyframes and splits segments. Unit: milliseconds (relative deviation of up to 1 ms is allowed). When both GOP and segment duration are specified, they function together. Note that you need to enable RawPts, keep the frame rate as that of the source, and ensure the specified PTS time corresponds to a frame in the source.</p>
33171
33316
  Note: This field may return null, indicating that no valid values can be obtained.
33172
33317
  * @type {Array.<number> || null}
33173
33318
  */
33174
33319
  this.KeyPTSList = null;
33175
33320
 
33321
+ /**
33322
+ * <p>External audio feature. Specifies the audio files to be inserted.</p>
33323
+ * @type {Array.<AddOnAudio> || null}
33324
+ */
33325
+ this.AddOnAudios = null;
33326
+
33176
33327
  }
33177
33328
 
33178
33329
  /**
@@ -33232,6 +33383,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
33232
33383
  this.StdExtInfo = 'StdExtInfo' in params ? params.StdExtInfo : null;
33233
33384
  this.KeyPTSList = 'KeyPTSList' in params ? params.KeyPTSList : null;
33234
33385
 
33386
+ if (params.AddOnAudios) {
33387
+ this.AddOnAudios = new Array();
33388
+ for (let z in params.AddOnAudios) {
33389
+ let obj = new AddOnAudio();
33390
+ obj.deserialize(params.AddOnAudios[z]);
33391
+ this.AddOnAudios.push(obj);
33392
+ }
33393
+ }
33394
+
33235
33395
  }
33236
33396
  }
33237
33397
 
@@ -37000,40 +37160,40 @@ class AddOnSubtitle extends AbstractModel {
37000
37160
  super();
37001
37161
 
37002
37162
  /**
37003
- * The mode. Valid values:
37004
- <li>`subtitle-stream`: Add a subtitle track.</li>
37005
- <li>`close-caption-708`: Embed CEA-708 subtitles in SEI frames.</li>
37006
- <li>`close-caption-608`: Embed CEA-608 subtitles in SEI frames.</li>
37163
+ * <p>Insertion method. Valid values:</p><li>subtitle-stream: Inserts a subtitle track.</li><li>close-caption-708: Encodes CEA-708 subtitles into SEI frames.</li><li>close-caption-608: Encodes CEA-608 subtitles into SEI frames.</li>
37007
37164
  Note: This field may return null, indicating that no valid values can be obtained.
37008
37165
  * @type {string || null}
37009
37166
  */
37010
37167
  this.Type = null;
37011
37168
 
37012
37169
  /**
37013
- * The subtitle file.
37170
+ * <p>Subtitle file.</p>
37014
37171
  Note: This field may return null, indicating that no valid values can be obtained.
37015
37172
  * @type {MediaInputInfo || null}
37016
37173
  */
37017
37174
  this.Subtitle = null;
37018
37175
 
37019
37176
  /**
37020
- * Subtitle name.
37021
- Note: supports Chinese characters, letters, digits, spaces, underscores (_), hyphens (-), periods (.), and parentheses. Max 64 characters.
37022
- Note: This field may return null, indicating that no valid value can be obtained.
37177
+ * <p>Subtitle name.<br>Note: Only Chinese characters, letters, digits, spaces, underscores (_), hyphens (-), periods (.), and brackets are supported. The length cannot exceed 64 characters.</p>
37178
+ Note: This field may return null, indicating that no valid values can be obtained.
37023
37179
  * @type {string || null}
37024
37180
  */
37025
37181
  this.SubtitleName = null;
37026
37182
 
37027
37183
  /**
37028
- * Output format of the subtitle. valid values: "WebVTT", "TTML".
37029
- Default value: "WebVTT".
37184
+ * <p>Subtitle language, such as eng.</p>
37185
+ * @type {string || null}
37186
+ */
37187
+ this.SubtitleLanguage = null;
37188
+
37189
+ /**
37190
+ * <p>Subtitle output format. Valid values: {&quot;WebVTT&quot;,&quot;TTML&quot;}.<br>Default value: &quot;WebVTT&quot;.</p>
37030
37191
  * @type {string || null}
37031
37192
  */
37032
37193
  this.OutputFormat = null;
37033
37194
 
37034
37195
  /**
37035
- * Default subtitle track. specifies the current subtitle as the default track when true. a maximum of 1 default subtitle track can be specified.
37036
- Default value: `false`.
37196
+ * <p>Default subtitle track. When set to true, the current subtitle is designated as the default subtitle track. A maximum of 1 default subtitle track can be specified.<br>Default value: false.</p>
37037
37197
  * @type {boolean || null}
37038
37198
  */
37039
37199
  this.DefaultTrack = null;
@@ -37055,6 +37215,7 @@ Default value: `false`.
37055
37215
  this.Subtitle = obj;
37056
37216
  }
37057
37217
  this.SubtitleName = 'SubtitleName' in params ? params.SubtitleName : null;
37218
+ this.SubtitleLanguage = 'SubtitleLanguage' in params ? params.SubtitleLanguage : null;
37058
37219
  this.OutputFormat = 'OutputFormat' in params ? params.OutputFormat : null;
37059
37220
  this.DefaultTrack = 'DefaultTrack' in params ? params.DefaultTrack : null;
37060
37221
 
@@ -38375,7 +38536,7 @@ class CreateAigcImageTaskRequest extends AbstractModel {
38375
38536
  this.ImageInfos = null;
38376
38537
 
38377
38538
  /**
38378
- *
38539
+ * <p>Specifies the number of output images. One image is supported by default.</p>
38379
38540
  * @type {number || null}
38380
38541
  */
38381
38542
  this.OutputImageCount = null;
@@ -39947,7 +40108,7 @@ class DescribePersonSamplesResponse extends AbstractModel {
39947
40108
  }
39948
40109
 
39949
40110
  /**
39950
- *
40111
+ * Reference video asset for AIGC video generation.
39951
40112
  * @class
39952
40113
  */
39953
40114
  class AigcAudioReferenceVideoInfo extends AbstractModel {
@@ -39955,7 +40116,7 @@ class AigcAudioReferenceVideoInfo extends AbstractModel {
39955
40116
  super();
39956
40117
 
39957
40118
  /**
39958
- *
40119
+ * <p>Reference video URL, which must be accessible from the public network.</p>
39959
40120
  * @type {string || null}
39960
40121
  */
39961
40122
  this.VideoUrl = null;
@@ -41543,7 +41704,7 @@ class DescribeStreamLinkSecurityGroupRequest extends AbstractModel {
41543
41704
  }
41544
41705
 
41545
41706
  /**
41546
- *
41707
+ * Image set information.
41547
41708
  * @class
41548
41709
  */
41549
41710
  class RecipeItem extends AbstractModel {
@@ -41551,13 +41712,13 @@ class RecipeItem extends AbstractModel {
41551
41712
  super();
41552
41713
 
41553
41714
  /**
41554
- *
41715
+ * <p>Sub-image type.</p><p>Enumeration values:</p><ul><li>hero: product hero image.</li><li>detail: product details image.</li><li>selling: core selling point image.</li><li>atmosphere: scene atmosphere image.</li><li>angles: multiple-angle image.</li><li>scene: usage scenario image.</li></ul>
41555
41716
  * @type {string || null}
41556
41717
  */
41557
41718
  this.Theme = null;
41558
41719
 
41559
41720
  /**
41560
- *
41721
+ * <p>Number of corresponding sub-images.</p><p>Value range: 1 to 4.</p><p>Unit: image.</p><p>Each type can have up to 4 sub-images. The total number of sub-images must be within the range of 4 to 12.</p>
41561
41722
  * @type {number || null}
41562
41723
  */
41563
41724
  this.Num = null;
@@ -43547,7 +43708,7 @@ class MediaImageSpriteItem extends AbstractModel {
43547
43708
  }
43548
43709
 
43549
43710
  /**
43550
- *
43711
+ * Intelligent image set configuration.
43551
43712
  * @class
43552
43713
  */
43553
43714
  class AiPosterSuiteConfig extends AbstractModel {
@@ -43555,49 +43716,49 @@ class AiPosterSuiteConfig extends AbstractModel {
43555
43716
  super();
43556
43717
 
43557
43718
  /**
43558
- *
43719
+ * <p>Image output mode.</p><p>Enumeration values:</p><ul><li>auto: fully automatic mode. CustomVariables can be passed in this mode.</li><li>modify: modification mode. The corresponding description needs to be provided in the AddOnParameter.ExtPrompt field in this mode. CustomVariables cannot be passed in this mode.</li></ul><p>Default value: auto.</p>
43559
43720
  * @type {string || null}
43560
43721
  */
43561
43722
  this.Mode = null;
43562
43723
 
43563
43724
  /**
43564
- *
43725
+ * <p>Ecommerce platform visual template ID.</p><p>If you need a personalized visual template, submit a ticket.</p>
43565
43726
  * @type {number || null}
43566
43727
  */
43567
43728
  this.Definition = null;
43568
43729
 
43569
43730
  /**
43570
- *
43731
+ * <p>Sub-image configuration.</p>
43571
43732
  * @type {Array.<RecipeItem> || null}
43572
43733
  */
43573
43734
  this.Recipe = null;
43574
43735
 
43575
43736
  /**
43576
- *
43737
+ * <p>Sub-image text language.</p><p>Enumeration values:</p><ul><li>zh-CN: Simplified Chinese.</li><li>en-US: American English.</li></ul><p>Default value: zh-CN.</p><p>If you need more languages, submit a ticket.</p>
43577
43738
  * @type {string || null}
43578
43739
  */
43579
43740
  this.Language = null;
43580
43741
 
43581
43742
  /**
43582
- *
43743
+ * <p>Sub-image aspect ratio.</p><p>Enumeration values:</p><ul><li>1:1: 1:1.</li><li>3:4: 3:4.</li><li>4:3: 4:3.</li><li>9:16: 9:16.</li><li>16:9: 16:9.</li></ul><p>Default value: 1:1.</p>
43583
43744
  * @type {string || null}
43584
43745
  */
43585
43746
  this.PanelRatio = null;
43586
43747
 
43587
43748
  /**
43588
- *
43749
+ * <p>Sub-image resolution.</p><p>Enumeration values:</p><ul><li>720: 720.</li><li>1K: 1K.</li><li>2K: 2K.</li><li>4K: 4K.</li></ul><p>Default value: 1K.</p>
43589
43750
  * @type {string || null}
43590
43751
  */
43591
43752
  this.PanelResolution = null;
43592
43753
 
43593
43754
  /**
43594
- *
43755
+ * <p>User-defined variable.</p>
43595
43756
  * @type {Array.<CustomVariable> || null}
43596
43757
  */
43597
43758
  this.CustomVariables = null;
43598
43759
 
43599
43760
  /**
43600
- *
43761
+ * <p>Model name.</p><p>Enumeration value:</p><ul><li>WAND-suite-1.0-flash: WAND-suite-1.0-flash.</li></ul>
43601
43762
  * @type {string || null}
43602
43763
  */
43603
43764
  this.Model = null;
@@ -45283,6 +45444,7 @@ module.exports = {
45283
45444
  ParseLiveStreamProcessNotificationResponse: ParseLiveStreamProcessNotificationResponse,
45284
45445
  SubtitleShadowConfig: SubtitleShadowConfig,
45285
45446
  SmartEraseTaskResult: SmartEraseTaskResult,
45447
+ SmartSubtitleTaskFullTextSegmentItem: SmartSubtitleTaskFullTextSegmentItem,
45286
45448
  AiRecognitionTaskInput: AiRecognitionTaskInput,
45287
45449
  SmartSubtitleTaskTextResultOutput: SmartSubtitleTaskTextResultOutput,
45288
45450
  AiAnalysisTaskFrameTagResult: AiAnalysisTaskFrameTagResult,
@@ -45305,6 +45467,7 @@ module.exports = {
45305
45467
  TextWatermarkTemplateInputForUpdate: TextWatermarkTemplateInputForUpdate,
45306
45468
  SubtitleTransResultItem: SubtitleTransResultItem,
45307
45469
  AiReviewTerrorismOcrTaskInput: AiReviewTerrorismOcrTaskInput,
45470
+ AddOnAudio: AddOnAudio,
45308
45471
  AiRecognitionTaskOcrWordsResultInput: AiRecognitionTaskOcrWordsResultInput,
45309
45472
  CreateQualityControlTemplateResponse: CreateQualityControlTemplateResponse,
45310
45473
  AiAnalysisTaskReelInput: AiAnalysisTaskReelInput,