tencentcloud-sdk-nodejs-intl-en 3.0.1388 → 3.0.1389
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/cam/v20190116/cam_client.js +27 -0
- package/tencentcloud/cam/v20190116/models.js +221 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cwp/v20180228/cwp_client.js +1 -1
- package/tencentcloud/cwp/v20180228/models.js +1 -1
- package/tencentcloud/monitor/index.js +1 -1
- package/tencentcloud/monitor/v20230616/index.js +4 -0
- package/tencentcloud/monitor/v20230616/models.js +536 -0
- package/tencentcloud/monitor/v20230616/monitor_client.js +52 -0
- package/tencentcloud/mps/v20190612/models.js +1205 -224
- package/tencentcloud/mps/v20190612/mps_client.js +65 -4
- package/tencentcloud/ocr/v20181119/models.js +2049 -7844
- package/tencentcloud/ocr/v20181119/ocr_client.js +33 -393
|
@@ -346,31 +346,31 @@ class AiRecognitionTaskAsrFullTextSegmentItem extends AbstractModel {
|
|
|
346
346
|
super();
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
|
-
* Confidence of
|
|
349
|
+
* <p>Confidence of the recognized segment. Value range: 0–100.</p>
|
|
350
350
|
* @type {number || null}
|
|
351
351
|
*/
|
|
352
352
|
this.Confidence = null;
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
* Start time offset of
|
|
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
|
|
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
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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
|
|
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
|
-
*
|
|
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/
|
|
974
|
+
* <p>Audio/video enhancement configurations.</p>
|
|
981
975
|
* @type {EnhanceConfig || null}
|
|
982
976
|
*/
|
|
983
977
|
this.EnhanceConfig = null;
|
|
984
978
|
|
|
985
979
|
/**
|
|
986
|
-
*
|
|
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,25 @@ class SyncDubbingRequest extends AbstractModel {
|
|
|
3907
3976
|
this.AudioLang = null;
|
|
3908
3977
|
|
|
3909
3978
|
/**
|
|
3910
|
-
* <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>
|
|
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><p><strong>synExt</strong> Object Extended text to speech parameter.<br> <strong>duration</strong> Float Synthesized audio duration, in seconds. Example: 5.2.<br> <strong>sampleRate</strong> Integer Synthesized audio sample rate. Default value: 16000. Valid values: [8000, 16000, 22050, 24000, 32000, 44100].<br> <strong>pitch</strong> Integer Pitch. Default value: 0 (original voice output). Valid values: [-12, 12].<br><strong>cloneExt</strong> Object Extended voice cloning parameter.<br> <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]].</p>
|
|
3917
3998
|
* @type {string || null}
|
|
3918
3999
|
*/
|
|
3919
4000
|
this.ExtParam = null;
|
|
@@ -3934,11 +4015,18 @@ class SyncDubbingRequest extends AbstractModel {
|
|
|
3934
4015
|
this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
|
|
3935
4016
|
this.AudioLang = 'AudioLang' in params ? params.AudioLang : null;
|
|
3936
4017
|
|
|
4018
|
+
if (params.VoiceProfile) {
|
|
4019
|
+
let obj = new VoiceProfile();
|
|
4020
|
+
obj.deserialize(params.VoiceProfile)
|
|
4021
|
+
this.VoiceProfile = obj;
|
|
4022
|
+
}
|
|
4023
|
+
|
|
3937
4024
|
if (params.Output) {
|
|
3938
4025
|
let obj = new SyncDubbingOutputOption();
|
|
3939
4026
|
obj.deserialize(params.Output)
|
|
3940
4027
|
this.Output = obj;
|
|
3941
4028
|
}
|
|
4029
|
+
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
3942
4030
|
this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
|
|
3943
4031
|
|
|
3944
4032
|
}
|
|
@@ -4828,58 +4916,36 @@ class AudioTemplateInfoForUpdate extends AbstractModel {
|
|
|
4828
4916
|
super();
|
|
4829
4917
|
|
|
4830
4918
|
/**
|
|
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>
|
|
4919
|
+
* <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
4920
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4849
4921
|
* @type {string || null}
|
|
4850
4922
|
*/
|
|
4851
4923
|
this.Codec = null;
|
|
4852
4924
|
|
|
4853
4925
|
/**
|
|
4854
|
-
* Audio stream bitrate in
|
|
4926
|
+
* <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>
|
|
4927
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4855
4928
|
* @type {number || null}
|
|
4856
4929
|
*/
|
|
4857
4930
|
this.Bitrate = null;
|
|
4858
4931
|
|
|
4859
4932
|
/**
|
|
4860
|
-
*
|
|
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.
|
|
4933
|
+
* <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
4934
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4865
4935
|
* @type {number || null}
|
|
4866
4936
|
*/
|
|
4867
4937
|
this.SampleRate = null;
|
|
4868
4938
|
|
|
4869
4939
|
/**
|
|
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
|
-
|
|
4940
|
+
* <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
4941
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4877
4942
|
* @type {number || null}
|
|
4878
4943
|
*/
|
|
4879
4944
|
this.AudioChannel = null;
|
|
4880
4945
|
|
|
4881
4946
|
/**
|
|
4882
|
-
*
|
|
4947
|
+
* <p>Specifies the retained audio tracks for output. All source tracks are retained by default.</p>
|
|
4948
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4883
4949
|
* @type {Array.<number> || null}
|
|
4884
4950
|
*/
|
|
4885
4951
|
this.StreamSelects = null;
|
|
@@ -5724,6 +5790,83 @@ class AiAnalysisTaskFrameTagResult extends AbstractModel {
|
|
|
5724
5790
|
}
|
|
5725
5791
|
}
|
|
5726
5792
|
|
|
5793
|
+
/**
|
|
5794
|
+
* Fields of the updated voice.
|
|
5795
|
+
* @class
|
|
5796
|
+
*/
|
|
5797
|
+
class VoiceUpdateFields extends AbstractModel {
|
|
5798
|
+
constructor(){
|
|
5799
|
+
super();
|
|
5800
|
+
|
|
5801
|
+
/**
|
|
5802
|
+
* <p>Voice name.</p>
|
|
5803
|
+
* @type {string || null}
|
|
5804
|
+
*/
|
|
5805
|
+
this.Name = null;
|
|
5806
|
+
|
|
5807
|
+
/**
|
|
5808
|
+
* <p>Voice description.</p>
|
|
5809
|
+
* @type {string || null}
|
|
5810
|
+
*/
|
|
5811
|
+
this.Description = null;
|
|
5812
|
+
|
|
5813
|
+
/**
|
|
5814
|
+
* <p>Gender.</p><p>Enumeration values:</p><ul><li>male: male</li><li>female: female</li><li>unknown: unknown</li></ul>
|
|
5815
|
+
* @type {string || null}
|
|
5816
|
+
*/
|
|
5817
|
+
this.Gender = null;
|
|
5818
|
+
|
|
5819
|
+
/**
|
|
5820
|
+
* <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>
|
|
5821
|
+
* @type {string || null}
|
|
5822
|
+
*/
|
|
5823
|
+
this.Age = null;
|
|
5824
|
+
|
|
5825
|
+
/**
|
|
5826
|
+
* <p>Language.</p>
|
|
5827
|
+
* @type {Array.<string> || null}
|
|
5828
|
+
*/
|
|
5829
|
+
this.Languages = null;
|
|
5830
|
+
|
|
5831
|
+
/**
|
|
5832
|
+
* <p>Tag.</p>
|
|
5833
|
+
* @type {Array.<string> || null}
|
|
5834
|
+
*/
|
|
5835
|
+
this.Labels = null;
|
|
5836
|
+
|
|
5837
|
+
/**
|
|
5838
|
+
* <p>Scenario.</p>
|
|
5839
|
+
* @type {Array.<string> || null}
|
|
5840
|
+
*/
|
|
5841
|
+
this.Scenes = null;
|
|
5842
|
+
|
|
5843
|
+
/**
|
|
5844
|
+
* <p>Audition audio.</p>
|
|
5845
|
+
* @type {string || null}
|
|
5846
|
+
*/
|
|
5847
|
+
this.AudioUrl = null;
|
|
5848
|
+
|
|
5849
|
+
}
|
|
5850
|
+
|
|
5851
|
+
/**
|
|
5852
|
+
* @private
|
|
5853
|
+
*/
|
|
5854
|
+
deserialize(params) {
|
|
5855
|
+
if (!params) {
|
|
5856
|
+
return;
|
|
5857
|
+
}
|
|
5858
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
5859
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
5860
|
+
this.Gender = 'Gender' in params ? params.Gender : null;
|
|
5861
|
+
this.Age = 'Age' in params ? params.Age : null;
|
|
5862
|
+
this.Languages = 'Languages' in params ? params.Languages : null;
|
|
5863
|
+
this.Labels = 'Labels' in params ? params.Labels : null;
|
|
5864
|
+
this.Scenes = 'Scenes' in params ? params.Scenes : null;
|
|
5865
|
+
this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
|
|
5866
|
+
|
|
5867
|
+
}
|
|
5868
|
+
}
|
|
5869
|
+
|
|
5727
5870
|
/**
|
|
5728
5871
|
* Audio stream configuration parameter
|
|
5729
5872
|
* @class
|
|
@@ -5733,67 +5876,32 @@ class AudioTemplateInfo extends AbstractModel {
|
|
|
5733
5876
|
super();
|
|
5734
5877
|
|
|
5735
5878
|
/**
|
|
5736
|
-
*
|
|
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>.
|
|
5879
|
+
* <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
5880
|
* @type {string || null}
|
|
5755
5881
|
*/
|
|
5756
5882
|
this.Codec = null;
|
|
5757
5883
|
|
|
5758
5884
|
/**
|
|
5759
|
-
*
|
|
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
|
-
|
|
5885
|
+
* <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
5886
|
* @type {number || null}
|
|
5769
5887
|
*/
|
|
5770
5888
|
this.Bitrate = null;
|
|
5771
5889
|
|
|
5772
5890
|
/**
|
|
5773
|
-
*
|
|
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.
|
|
5891
|
+
* <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
5892
|
* @type {number || null}
|
|
5778
5893
|
*/
|
|
5779
5894
|
this.SampleRate = null;
|
|
5780
5895
|
|
|
5781
5896
|
/**
|
|
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.
|
|
5897
|
+
* <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
5898
|
* @type {number || null}
|
|
5789
5899
|
*/
|
|
5790
5900
|
this.AudioChannel = null;
|
|
5791
5901
|
|
|
5792
5902
|
/**
|
|
5793
|
-
*
|
|
5794
|
-
This field
|
|
5795
|
-
|
|
5796
|
-
Note: This field may return null, indicating that no valid value can be obtained.
|
|
5903
|
+
* <p>Audio track merging information.<br>Note: This field only takes effect for adaptive transcoding.</p>
|
|
5904
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5797
5905
|
* @type {AudioTrackChannelInfo || null}
|
|
5798
5906
|
*/
|
|
5799
5907
|
this.TrackChannelInfo = null;
|
|
@@ -6386,6 +6494,77 @@ This value only distinguishes template types. The task uses the values of Remove
|
|
|
6386
6494
|
}
|
|
6387
6495
|
}
|
|
6388
6496
|
|
|
6497
|
+
/**
|
|
6498
|
+
* Aggregation results of each LLM detection item.
|
|
6499
|
+
* @class
|
|
6500
|
+
*/
|
|
6501
|
+
class LLMDetectionResultItem extends AbstractModel {
|
|
6502
|
+
constructor(){
|
|
6503
|
+
super();
|
|
6504
|
+
|
|
6505
|
+
/**
|
|
6506
|
+
* <p>Detection category.</p><p>Enumeration value:</p><ul><li>AIGCQualityCharacteristics: AIGC quality characteristics.</li></ul>
|
|
6507
|
+
* @type {string || null}
|
|
6508
|
+
*/
|
|
6509
|
+
this.Category = null;
|
|
6510
|
+
|
|
6511
|
+
/**
|
|
6512
|
+
* <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>
|
|
6513
|
+
* @type {string || null}
|
|
6514
|
+
*/
|
|
6515
|
+
this.Group = null;
|
|
6516
|
+
|
|
6517
|
+
/**
|
|
6518
|
+
* <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>
|
|
6519
|
+
* @type {string || null}
|
|
6520
|
+
*/
|
|
6521
|
+
this.Type = null;
|
|
6522
|
+
|
|
6523
|
+
/**
|
|
6524
|
+
* <p>Overall quality score. Value range: [0, 100]. Higher values indicate better quality.</p>
|
|
6525
|
+
* @type {number || null}
|
|
6526
|
+
*/
|
|
6527
|
+
this.Score = null;
|
|
6528
|
+
|
|
6529
|
+
/**
|
|
6530
|
+
* <p>Detection confidence. Value range: [0, 100]. Higher values indicate greater certainty.</p>
|
|
6531
|
+
* @type {number || null}
|
|
6532
|
+
*/
|
|
6533
|
+
this.Confidence = null;
|
|
6534
|
+
|
|
6535
|
+
/**
|
|
6536
|
+
* <p>List of issues detected. This is empty if no issue is detected.</p>
|
|
6537
|
+
* @type {Array.<LLMDetectionIssue> || null}
|
|
6538
|
+
*/
|
|
6539
|
+
this.IssueSet = null;
|
|
6540
|
+
|
|
6541
|
+
}
|
|
6542
|
+
|
|
6543
|
+
/**
|
|
6544
|
+
* @private
|
|
6545
|
+
*/
|
|
6546
|
+
deserialize(params) {
|
|
6547
|
+
if (!params) {
|
|
6548
|
+
return;
|
|
6549
|
+
}
|
|
6550
|
+
this.Category = 'Category' in params ? params.Category : null;
|
|
6551
|
+
this.Group = 'Group' in params ? params.Group : null;
|
|
6552
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
6553
|
+
this.Score = 'Score' in params ? params.Score : null;
|
|
6554
|
+
this.Confidence = 'Confidence' in params ? params.Confidence : null;
|
|
6555
|
+
|
|
6556
|
+
if (params.IssueSet) {
|
|
6557
|
+
this.IssueSet = new Array();
|
|
6558
|
+
for (let z in params.IssueSet) {
|
|
6559
|
+
let obj = new LLMDetectionIssue();
|
|
6560
|
+
obj.deserialize(params.IssueSet[z]);
|
|
6561
|
+
this.IssueSet.push(obj);
|
|
6562
|
+
}
|
|
6563
|
+
}
|
|
6564
|
+
|
|
6565
|
+
}
|
|
6566
|
+
}
|
|
6567
|
+
|
|
6389
6568
|
/**
|
|
6390
6569
|
* CreateProcessImageTemplate response structure.
|
|
6391
6570
|
* @class
|
|
@@ -6489,65 +6668,61 @@ class ModifyTranscodeTemplateRequest extends AbstractModel {
|
|
|
6489
6668
|
super();
|
|
6490
6669
|
|
|
6491
6670
|
/**
|
|
6492
|
-
* Unique
|
|
6671
|
+
* <p>Unique identifier of the transcoding template.</p>
|
|
6493
6672
|
* @type {number || null}
|
|
6494
6673
|
*/
|
|
6495
6674
|
this.Definition = null;
|
|
6496
6675
|
|
|
6497
6676
|
/**
|
|
6498
|
-
* Container format. Valid values: mp4
|
|
6677
|
+
* <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
6678
|
* @type {string || null}
|
|
6500
6679
|
*/
|
|
6501
6680
|
this.Container = null;
|
|
6502
6681
|
|
|
6503
6682
|
/**
|
|
6504
|
-
*
|
|
6683
|
+
* <p>Transcoding template name. Length limit: 64 characters.</p>
|
|
6505
6684
|
* @type {string || null}
|
|
6506
6685
|
*/
|
|
6507
6686
|
this.Name = null;
|
|
6508
6687
|
|
|
6509
6688
|
/**
|
|
6510
|
-
*
|
|
6689
|
+
* <p>Transcoding template description. Length limit: 256 characters.</p>
|
|
6511
6690
|
* @type {string || null}
|
|
6512
6691
|
*/
|
|
6513
6692
|
this.Comment = null;
|
|
6514
6693
|
|
|
6515
6694
|
/**
|
|
6516
|
-
*
|
|
6517
|
-
<li>0: Retain</li>
|
|
6518
|
-
<li>1: Remove</li>
|
|
6695
|
+
* <p>Indicates whether to remove video data. Valid values:</p><li>0: Data is reserved.</li><li>1: Data is removed.</li>
|
|
6519
6696
|
* @type {number || null}
|
|
6520
6697
|
*/
|
|
6521
6698
|
this.RemoveVideo = null;
|
|
6522
6699
|
|
|
6523
6700
|
/**
|
|
6524
|
-
*
|
|
6525
|
-
<li>0: Retain</li>
|
|
6526
|
-
<li>1: Remove</li>
|
|
6701
|
+
* <p>Indicates whether to remove audio data. Valid values:</p><li>0: Data is reserved.</li><li>1: Data is removed.</li>
|
|
6527
6702
|
* @type {number || null}
|
|
6528
6703
|
*/
|
|
6529
6704
|
this.RemoveAudio = null;
|
|
6530
6705
|
|
|
6531
6706
|
/**
|
|
6532
|
-
* Video stream configuration
|
|
6707
|
+
* <p>Video stream configuration parameters.</p>
|
|
6533
6708
|
* @type {VideoTemplateInfoForUpdate || null}
|
|
6534
6709
|
*/
|
|
6535
6710
|
this.VideoTemplate = null;
|
|
6536
6711
|
|
|
6537
6712
|
/**
|
|
6538
|
-
* Audio stream configuration
|
|
6713
|
+
* <p>Audio stream configuration parameters.</p>
|
|
6539
6714
|
* @type {AudioTemplateInfoForUpdate || null}
|
|
6540
6715
|
*/
|
|
6541
6716
|
this.AudioTemplate = null;
|
|
6542
6717
|
|
|
6543
6718
|
/**
|
|
6544
|
-
*
|
|
6719
|
+
* <p>Top Speed Codec transcoding parameters.</p>
|
|
6545
6720
|
* @type {TEHDConfigForUpdate || null}
|
|
6546
6721
|
*/
|
|
6547
6722
|
this.TEHDConfig = null;
|
|
6548
6723
|
|
|
6549
6724
|
/**
|
|
6550
|
-
* Audio/
|
|
6725
|
+
* <p>Audio/video enhancement parameters.</p>
|
|
6551
6726
|
* @type {EnhanceConfig || null}
|
|
6552
6727
|
*/
|
|
6553
6728
|
this.EnhanceConfig = null;
|
|
@@ -7345,26 +7520,32 @@ class ImageTaskInput extends AbstractModel {
|
|
|
7345
7520
|
super();
|
|
7346
7521
|
|
|
7347
7522
|
/**
|
|
7348
|
-
* Image encoding configuration
|
|
7349
|
-
Note: This field may return null, indicating that no valid
|
|
7523
|
+
* <p>Image encoding configuration.</p>
|
|
7524
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7350
7525
|
* @type {ImageEncodeConfig || null}
|
|
7351
7526
|
*/
|
|
7352
7527
|
this.EncodeConfig = null;
|
|
7353
7528
|
|
|
7354
7529
|
/**
|
|
7355
|
-
* Image enhancement configuration
|
|
7356
|
-
Note: This field may return null, indicating that no valid
|
|
7530
|
+
* <p>Image enhancement configuration.</p>
|
|
7531
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7357
7532
|
* @type {ImageEnhanceConfig || null}
|
|
7358
7533
|
*/
|
|
7359
7534
|
this.EnhanceConfig = null;
|
|
7360
7535
|
|
|
7361
7536
|
/**
|
|
7362
|
-
* Image erasing configuration
|
|
7363
|
-
Note: This field may return null, indicating that no valid
|
|
7537
|
+
* <p>Image erasing configuration.</p>
|
|
7538
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7364
7539
|
* @type {ImageEraseConfig || null}
|
|
7365
7540
|
*/
|
|
7366
7541
|
this.EraseConfig = null;
|
|
7367
7542
|
|
|
7543
|
+
/**
|
|
7544
|
+
*
|
|
7545
|
+
* @type {AiPosterSuiteConfig || null}
|
|
7546
|
+
*/
|
|
7547
|
+
this.AiPosterSuiteConfig = null;
|
|
7548
|
+
|
|
7368
7549
|
}
|
|
7369
7550
|
|
|
7370
7551
|
/**
|
|
@@ -7393,6 +7574,12 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
7393
7574
|
this.EraseConfig = obj;
|
|
7394
7575
|
}
|
|
7395
7576
|
|
|
7577
|
+
if (params.AiPosterSuiteConfig) {
|
|
7578
|
+
let obj = new AiPosterSuiteConfig();
|
|
7579
|
+
obj.deserialize(params.AiPosterSuiteConfig)
|
|
7580
|
+
this.AiPosterSuiteConfig = obj;
|
|
7581
|
+
}
|
|
7582
|
+
|
|
7396
7583
|
}
|
|
7397
7584
|
}
|
|
7398
7585
|
|
|
@@ -7861,6 +8048,53 @@ class AigcAudioOutputAudioInfo extends AbstractModel {
|
|
|
7861
8048
|
}
|
|
7862
8049
|
}
|
|
7863
8050
|
|
|
8051
|
+
/**
|
|
8052
|
+
* UpdateVoice request structure.
|
|
8053
|
+
* @class
|
|
8054
|
+
*/
|
|
8055
|
+
class UpdateVoiceRequest extends AbstractModel {
|
|
8056
|
+
constructor(){
|
|
8057
|
+
super();
|
|
8058
|
+
|
|
8059
|
+
/**
|
|
8060
|
+
* <p>Voice ID.</p>
|
|
8061
|
+
* @type {string || null}
|
|
8062
|
+
*/
|
|
8063
|
+
this.VoiceId = null;
|
|
8064
|
+
|
|
8065
|
+
/**
|
|
8066
|
+
* <p>Fields of the updated voice.</p>
|
|
8067
|
+
* @type {VoiceUpdateFields || null}
|
|
8068
|
+
*/
|
|
8069
|
+
this.VoiceFields = null;
|
|
8070
|
+
|
|
8071
|
+
/**
|
|
8072
|
+
* <p>Extended parameters in the format of a JSON string.</p>
|
|
8073
|
+
* @type {string || null}
|
|
8074
|
+
*/
|
|
8075
|
+
this.ExtParam = null;
|
|
8076
|
+
|
|
8077
|
+
}
|
|
8078
|
+
|
|
8079
|
+
/**
|
|
8080
|
+
* @private
|
|
8081
|
+
*/
|
|
8082
|
+
deserialize(params) {
|
|
8083
|
+
if (!params) {
|
|
8084
|
+
return;
|
|
8085
|
+
}
|
|
8086
|
+
this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
|
|
8087
|
+
|
|
8088
|
+
if (params.VoiceFields) {
|
|
8089
|
+
let obj = new VoiceUpdateFields();
|
|
8090
|
+
obj.deserialize(params.VoiceFields)
|
|
8091
|
+
this.VoiceFields = obj;
|
|
8092
|
+
}
|
|
8093
|
+
this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
|
|
8094
|
+
|
|
8095
|
+
}
|
|
8096
|
+
}
|
|
8097
|
+
|
|
7864
8098
|
/**
|
|
7865
8099
|
* Result type of intelligent cover generating task
|
|
7866
8100
|
* @class
|
|
@@ -8013,7 +8247,7 @@ class AigcImageExtraParam extends AbstractModel {
|
|
|
8013
8247
|
super();
|
|
8014
8248
|
|
|
8015
8249
|
/**
|
|
8016
|
-
* <p>Aspect ratio of the generated video.</p><p>Supported aspect ratios for different models:</p><ol><li>
|
|
8250
|
+
* <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
8251
|
* @type {string || null}
|
|
8018
8252
|
*/
|
|
8019
8253
|
this.AspectRatio = null;
|
|
@@ -8031,7 +8265,7 @@ class AigcImageExtraParam extends AbstractModel {
|
|
|
8031
8265
|
this.LogoAdd = null;
|
|
8032
8266
|
|
|
8033
8267
|
/**
|
|
8034
|
-
*
|
|
8268
|
+
* <p>Specifies the output format of the image. JPEG and PNG formats are supported.</p>
|
|
8035
8269
|
* @type {string || null}
|
|
8036
8270
|
*/
|
|
8037
8271
|
this.OutputFormat = null;
|
|
@@ -11155,6 +11389,60 @@ class DescribeSmartEraseTemplatesRequest extends AbstractModel {
|
|
|
11155
11389
|
}
|
|
11156
11390
|
}
|
|
11157
11391
|
|
|
11392
|
+
/**
|
|
11393
|
+
* UpdateVoice response structure.
|
|
11394
|
+
* @class
|
|
11395
|
+
*/
|
|
11396
|
+
class UpdateVoiceResponse extends AbstractModel {
|
|
11397
|
+
constructor(){
|
|
11398
|
+
super();
|
|
11399
|
+
|
|
11400
|
+
/**
|
|
11401
|
+
* <p>Error code. 0 is returned if the request is successful.</p>
|
|
11402
|
+
* @type {number || null}
|
|
11403
|
+
*/
|
|
11404
|
+
this.ErrorCode = null;
|
|
11405
|
+
|
|
11406
|
+
/**
|
|
11407
|
+
* <p>Error message. success is returned if the request is successful.</p>
|
|
11408
|
+
* @type {string || null}
|
|
11409
|
+
*/
|
|
11410
|
+
this.Msg = null;
|
|
11411
|
+
|
|
11412
|
+
/**
|
|
11413
|
+
* <p>Voice information after the update.</p>
|
|
11414
|
+
* @type {VoiceInfo || null}
|
|
11415
|
+
*/
|
|
11416
|
+
this.Voice = null;
|
|
11417
|
+
|
|
11418
|
+
/**
|
|
11419
|
+
* 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.
|
|
11420
|
+
* @type {string || null}
|
|
11421
|
+
*/
|
|
11422
|
+
this.RequestId = null;
|
|
11423
|
+
|
|
11424
|
+
}
|
|
11425
|
+
|
|
11426
|
+
/**
|
|
11427
|
+
* @private
|
|
11428
|
+
*/
|
|
11429
|
+
deserialize(params) {
|
|
11430
|
+
if (!params) {
|
|
11431
|
+
return;
|
|
11432
|
+
}
|
|
11433
|
+
this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
|
|
11434
|
+
this.Msg = 'Msg' in params ? params.Msg : null;
|
|
11435
|
+
|
|
11436
|
+
if (params.Voice) {
|
|
11437
|
+
let obj = new VoiceInfo();
|
|
11438
|
+
obj.deserialize(params.Voice)
|
|
11439
|
+
this.Voice = obj;
|
|
11440
|
+
}
|
|
11441
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11442
|
+
|
|
11443
|
+
}
|
|
11444
|
+
}
|
|
11445
|
+
|
|
11158
11446
|
/**
|
|
11159
11447
|
* The parameters for detecting sensitive information based on ASR.
|
|
11160
11448
|
* @class
|
|
@@ -11764,6 +12052,76 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
11764
12052
|
}
|
|
11765
12053
|
}
|
|
11766
12054
|
|
|
12055
|
+
/**
|
|
12056
|
+
* Issue detected by the LLM.
|
|
12057
|
+
* @class
|
|
12058
|
+
*/
|
|
12059
|
+
class LLMDetectionIssue extends AbstractModel {
|
|
12060
|
+
constructor(){
|
|
12061
|
+
super();
|
|
12062
|
+
|
|
12063
|
+
/**
|
|
12064
|
+
* <p>Issue category tag.</p>
|
|
12065
|
+
* @type {string || null}
|
|
12066
|
+
*/
|
|
12067
|
+
this.Tag = null;
|
|
12068
|
+
|
|
12069
|
+
/**
|
|
12070
|
+
* <p>Issue description.</p>
|
|
12071
|
+
* @type {string || null}
|
|
12072
|
+
*/
|
|
12073
|
+
this.Description = null;
|
|
12074
|
+
|
|
12075
|
+
/**
|
|
12076
|
+
* <p>Quality score of the issue. Value range: [0, 100].</p>
|
|
12077
|
+
* @type {number || null}
|
|
12078
|
+
*/
|
|
12079
|
+
this.Score = null;
|
|
12080
|
+
|
|
12081
|
+
/**
|
|
12082
|
+
* <p>Detection confidence for the issue. Value range: [0, 100].</p>
|
|
12083
|
+
* @type {number || null}
|
|
12084
|
+
*/
|
|
12085
|
+
this.Confidence = null;
|
|
12086
|
+
|
|
12087
|
+
/**
|
|
12088
|
+
* <p>Issue start time (ms).</p>
|
|
12089
|
+
* @type {number || null}
|
|
12090
|
+
*/
|
|
12091
|
+
this.StartTimeMs = null;
|
|
12092
|
+
|
|
12093
|
+
/**
|
|
12094
|
+
* <p>Issue end time (ms).</p>
|
|
12095
|
+
* @type {number || null}
|
|
12096
|
+
*/
|
|
12097
|
+
this.EndTimeMs = null;
|
|
12098
|
+
|
|
12099
|
+
/**
|
|
12100
|
+
* <p>Additional data (JSON format), such as severity and other supplementary information.</p>
|
|
12101
|
+
* @type {string || null}
|
|
12102
|
+
*/
|
|
12103
|
+
this.ExtraData = null;
|
|
12104
|
+
|
|
12105
|
+
}
|
|
12106
|
+
|
|
12107
|
+
/**
|
|
12108
|
+
* @private
|
|
12109
|
+
*/
|
|
12110
|
+
deserialize(params) {
|
|
12111
|
+
if (!params) {
|
|
12112
|
+
return;
|
|
12113
|
+
}
|
|
12114
|
+
this.Tag = 'Tag' in params ? params.Tag : null;
|
|
12115
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
12116
|
+
this.Score = 'Score' in params ? params.Score : null;
|
|
12117
|
+
this.Confidence = 'Confidence' in params ? params.Confidence : null;
|
|
12118
|
+
this.StartTimeMs = 'StartTimeMs' in params ? params.StartTimeMs : null;
|
|
12119
|
+
this.EndTimeMs = 'EndTimeMs' in params ? params.EndTimeMs : null;
|
|
12120
|
+
this.ExtraData = 'ExtraData' in params ? params.ExtraData : null;
|
|
12121
|
+
|
|
12122
|
+
}
|
|
12123
|
+
}
|
|
12124
|
+
|
|
11767
12125
|
/**
|
|
11768
12126
|
* Control parameter of prohibited information detection in speech task
|
|
11769
12127
|
* @class
|
|
@@ -12474,6 +12832,41 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
12474
12832
|
}
|
|
12475
12833
|
}
|
|
12476
12834
|
|
|
12835
|
+
/**
|
|
12836
|
+
* DeleteVoice request structure.
|
|
12837
|
+
* @class
|
|
12838
|
+
*/
|
|
12839
|
+
class DeleteVoiceRequest extends AbstractModel {
|
|
12840
|
+
constructor(){
|
|
12841
|
+
super();
|
|
12842
|
+
|
|
12843
|
+
/**
|
|
12844
|
+
* <p>Voice ID.</p>
|
|
12845
|
+
* @type {string || null}
|
|
12846
|
+
*/
|
|
12847
|
+
this.VoiceId = null;
|
|
12848
|
+
|
|
12849
|
+
/**
|
|
12850
|
+
* <p>Extended parameters in the format of a JSON string.</p>
|
|
12851
|
+
* @type {string || null}
|
|
12852
|
+
*/
|
|
12853
|
+
this.ExtParam = null;
|
|
12854
|
+
|
|
12855
|
+
}
|
|
12856
|
+
|
|
12857
|
+
/**
|
|
12858
|
+
* @private
|
|
12859
|
+
*/
|
|
12860
|
+
deserialize(params) {
|
|
12861
|
+
if (!params) {
|
|
12862
|
+
return;
|
|
12863
|
+
}
|
|
12864
|
+
this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
|
|
12865
|
+
this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
|
|
12866
|
+
|
|
12867
|
+
}
|
|
12868
|
+
}
|
|
12869
|
+
|
|
12477
12870
|
/**
|
|
12478
12871
|
* DeleteAsrHotwords request structure.
|
|
12479
12872
|
* @class
|
|
@@ -15006,6 +15399,12 @@ class VoiceInfo extends AbstractModel {
|
|
|
15006
15399
|
*/
|
|
15007
15400
|
this.Gender = null;
|
|
15008
15401
|
|
|
15402
|
+
/**
|
|
15403
|
+
* <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>
|
|
15404
|
+
* @type {string || null}
|
|
15405
|
+
*/
|
|
15406
|
+
this.Age = null;
|
|
15407
|
+
|
|
15009
15408
|
/**
|
|
15010
15409
|
* <p>List of supported languages. </p><p>For example: en.</p>
|
|
15011
15410
|
* @type {Array.<string> || null}
|
|
@@ -15044,6 +15443,7 @@ class VoiceInfo extends AbstractModel {
|
|
|
15044
15443
|
this.Description = 'Description' in params ? params.Description : null;
|
|
15045
15444
|
this.Category = 'Category' in params ? params.Category : null;
|
|
15046
15445
|
this.Gender = 'Gender' in params ? params.Gender : null;
|
|
15446
|
+
this.Age = 'Age' in params ? params.Age : null;
|
|
15047
15447
|
this.Languages = 'Languages' in params ? params.Languages : null;
|
|
15048
15448
|
this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
|
|
15049
15449
|
this.Labels = 'Labels' in params ? params.Labels : null;
|
|
@@ -17435,25 +17835,25 @@ class CreateAigcVideoTaskRequest extends AbstractModel {
|
|
|
17435
17835
|
super();
|
|
17436
17836
|
|
|
17437
17837
|
/**
|
|
17438
|
-
* <p>Model name.<br>Supported models:<br>Hunyuan.<br>Hailuo.<br>Kling.<br>Vidu.<br>
|
|
17838
|
+
* <p>Model name.<br>Supported models:<br>Hunyuan.<br>Hailuo.<br>Kling.<br>Vidu.<br>PixVerse.<br>Mingmou.<br>H2.</p>
|
|
17439
17839
|
* @type {string || null}
|
|
17440
17840
|
*/
|
|
17441
17841
|
this.ModelName = null;
|
|
17442
17842
|
|
|
17443
17843
|
/**
|
|
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>
|
|
17844
|
+
* <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
17845
|
* @type {string || null}
|
|
17446
17846
|
*/
|
|
17447
17847
|
this.ModelVersion = null;
|
|
17448
17848
|
|
|
17449
17849
|
/**
|
|
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
|
|
17850
|
+
* <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
17851
|
* @type {string || null}
|
|
17452
17852
|
*/
|
|
17453
17853
|
this.SceneType = null;
|
|
17454
17854
|
|
|
17455
17855
|
/**
|
|
17456
|
-
* <p>Description of the generated video.
|
|
17856
|
+
* <p>Description of the generated video. This parameter is required when no image is specified.</p>
|
|
17457
17857
|
* @type {string || null}
|
|
17458
17858
|
*/
|
|
17459
17859
|
this.Prompt = null;
|
|
@@ -17465,37 +17865,37 @@ class CreateAigcVideoTaskRequest extends AbstractModel {
|
|
|
17465
17865
|
this.NegativePrompt = null;
|
|
17466
17866
|
|
|
17467
17867
|
/**
|
|
17468
|
-
* <p>The default value is False, meaning the model follows instructions strictly
|
|
17868
|
+
* <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
17869
|
* @type {boolean || null}
|
|
17470
17870
|
*/
|
|
17471
17871
|
this.EnhancePrompt = null;
|
|
17472
17872
|
|
|
17473
17873
|
/**
|
|
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
|
|
17874
|
+
* <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
17875
|
* @type {string || null}
|
|
17476
17876
|
*/
|
|
17477
17877
|
this.ImageUrl = null;
|
|
17478
17878
|
|
|
17479
17879
|
/**
|
|
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>
|
|
17880
|
+
* <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
17881
|
* @type {string || null}
|
|
17482
17882
|
*/
|
|
17483
17883
|
this.LastImageUrl = null;
|
|
17484
17884
|
|
|
17485
17885
|
/**
|
|
17486
|
-
* <p>List of
|
|
17886
|
+
* <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
17887
|
* @type {Array.<AigcVideoReferenceImageInfo> || null}
|
|
17488
17888
|
*/
|
|
17489
17889
|
this.ImageInfos = null;
|
|
17490
17890
|
|
|
17491
17891
|
/**
|
|
17492
|
-
* <p>Only Kling O1
|
|
17892
|
+
* <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
17893
|
* @type {Array.<AigcVideoReferenceVideoInfo> || null}
|
|
17494
17894
|
*/
|
|
17495
17895
|
this.VideoInfos = null;
|
|
17496
17896
|
|
|
17497
17897
|
/**
|
|
17498
|
-
* <p>Duration of the generated video.<br>Note:</p><ol><li>Kling
|
|
17898
|
+
* <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
17899
|
* @type {number || null}
|
|
17500
17900
|
*/
|
|
17501
17901
|
this.Duration = null;
|
|
@@ -17513,7 +17913,7 @@ class CreateAigcVideoTaskRequest extends AbstractModel {
|
|
|
17513
17913
|
this.StoreCosParam = null;
|
|
17514
17914
|
|
|
17515
17915
|
/**
|
|
17516
|
-
* <p>Special scenario parameters required by the model, formatted as a JSON serialized string.<br>Example:<br>{"camera_control":{"type":"simple"}}.</p>
|
|
17916
|
+
* <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
17917
|
* @type {string || null}
|
|
17518
17918
|
*/
|
|
17519
17919
|
this.AdditionalParameters = null;
|
|
@@ -18619,6 +19019,18 @@ class DesignVoiceAsyncRequest extends AbstractModel {
|
|
|
18619
19019
|
*/
|
|
18620
19020
|
this.Prompt = null;
|
|
18621
19021
|
|
|
19022
|
+
/**
|
|
19023
|
+
* <p>Voice attribute.</p>
|
|
19024
|
+
* @type {VoiceProfile || null}
|
|
19025
|
+
*/
|
|
19026
|
+
this.VoiceProfile = null;
|
|
19027
|
+
|
|
19028
|
+
/**
|
|
19029
|
+
* <p>Audition audio text. The length cannot exceed 500.</p>
|
|
19030
|
+
* @type {string || null}
|
|
19031
|
+
*/
|
|
19032
|
+
this.Text = null;
|
|
19033
|
+
|
|
18622
19034
|
/**
|
|
18623
19035
|
* <p>Extended parameters in the format of a JSON string.</p>
|
|
18624
19036
|
* @type {string || null}
|
|
@@ -18635,6 +19047,13 @@ class DesignVoiceAsyncRequest extends AbstractModel {
|
|
|
18635
19047
|
return;
|
|
18636
19048
|
}
|
|
18637
19049
|
this.Prompt = 'Prompt' in params ? params.Prompt : null;
|
|
19050
|
+
|
|
19051
|
+
if (params.VoiceProfile) {
|
|
19052
|
+
let obj = new VoiceProfile();
|
|
19053
|
+
obj.deserialize(params.VoiceProfile)
|
|
19054
|
+
this.VoiceProfile = obj;
|
|
19055
|
+
}
|
|
19056
|
+
this.Text = 'Text' in params ? params.Text : null;
|
|
18638
19057
|
this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
|
|
18639
19058
|
|
|
18640
19059
|
}
|
|
@@ -21176,24 +21595,30 @@ strongest: normal video quality, strongest resilience.
|
|
|
21176
21595
|
}
|
|
21177
21596
|
|
|
21178
21597
|
/**
|
|
21179
|
-
*
|
|
21598
|
+
* DetectVideoSubtitleArea request structure.
|
|
21180
21599
|
* @class
|
|
21181
21600
|
*/
|
|
21182
|
-
class
|
|
21601
|
+
class DetectVideoSubtitleAreaRequest extends AbstractModel {
|
|
21183
21602
|
constructor(){
|
|
21184
21603
|
super();
|
|
21185
21604
|
|
|
21186
21605
|
/**
|
|
21187
|
-
*
|
|
21188
|
-
* @type {
|
|
21606
|
+
* <p>Input information, which supports only URL and COS.</p>
|
|
21607
|
+
* @type {MediaInputInfo || null}
|
|
21189
21608
|
*/
|
|
21190
|
-
this.
|
|
21609
|
+
this.InputInfo = null;
|
|
21191
21610
|
|
|
21192
21611
|
/**
|
|
21193
|
-
*
|
|
21194
|
-
* @type {
|
|
21612
|
+
* <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>
|
|
21613
|
+
* @type {string || null}
|
|
21195
21614
|
*/
|
|
21196
|
-
this.
|
|
21615
|
+
this.VideoLanguage = null;
|
|
21616
|
+
|
|
21617
|
+
/**
|
|
21618
|
+
* <p>Extended parameter. This is left empty by default.</p>
|
|
21619
|
+
* @type {string || null}
|
|
21620
|
+
*/
|
|
21621
|
+
this.UserExtPara = null;
|
|
21197
21622
|
|
|
21198
21623
|
}
|
|
21199
21624
|
|
|
@@ -21205,17 +21630,13 @@ class TerrorismConfigureInfoForUpdate extends AbstractModel {
|
|
|
21205
21630
|
return;
|
|
21206
21631
|
}
|
|
21207
21632
|
|
|
21208
|
-
if (params.
|
|
21209
|
-
let obj = new
|
|
21210
|
-
obj.deserialize(params.
|
|
21211
|
-
this.
|
|
21212
|
-
}
|
|
21213
|
-
|
|
21214
|
-
if (params.OcrReviewInfo) {
|
|
21215
|
-
let obj = new TerrorismOcrReviewTemplateInfoForUpdate();
|
|
21216
|
-
obj.deserialize(params.OcrReviewInfo)
|
|
21217
|
-
this.OcrReviewInfo = obj;
|
|
21633
|
+
if (params.InputInfo) {
|
|
21634
|
+
let obj = new MediaInputInfo();
|
|
21635
|
+
obj.deserialize(params.InputInfo)
|
|
21636
|
+
this.InputInfo = obj;
|
|
21218
21637
|
}
|
|
21638
|
+
this.VideoLanguage = 'VideoLanguage' in params ? params.VideoLanguage : null;
|
|
21639
|
+
this.UserExtPara = 'UserExtPara' in params ? params.UserExtPara : null;
|
|
21219
21640
|
|
|
21220
21641
|
}
|
|
21221
21642
|
}
|
|
@@ -23301,6 +23722,59 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
23301
23722
|
}
|
|
23302
23723
|
}
|
|
23303
23724
|
|
|
23725
|
+
/**
|
|
23726
|
+
* The information about the sensitive content detected based on OCR.
|
|
23727
|
+
* @class
|
|
23728
|
+
*/
|
|
23729
|
+
class AiReviewPoliticalOcrTaskOutput extends AbstractModel {
|
|
23730
|
+
constructor(){
|
|
23731
|
+
super();
|
|
23732
|
+
|
|
23733
|
+
/**
|
|
23734
|
+
* The confidence score for the OCR-based detection of sensitive information. Value range: 0-100.
|
|
23735
|
+
* @type {number || null}
|
|
23736
|
+
*/
|
|
23737
|
+
this.Confidence = null;
|
|
23738
|
+
|
|
23739
|
+
/**
|
|
23740
|
+
* The suggestion for handling the sensitive information detected based on OCR. Valid values:
|
|
23741
|
+
<li>pass</li>
|
|
23742
|
+
<li>review</li>
|
|
23743
|
+
<li>block</li>
|
|
23744
|
+
* @type {string || null}
|
|
23745
|
+
*/
|
|
23746
|
+
this.Suggestion = null;
|
|
23747
|
+
|
|
23748
|
+
/**
|
|
23749
|
+
* The video segments that contain sensitive information detected based on OCR.
|
|
23750
|
+
* @type {Array.<MediaContentReviewOcrTextSegmentItem> || null}
|
|
23751
|
+
*/
|
|
23752
|
+
this.SegmentSet = null;
|
|
23753
|
+
|
|
23754
|
+
}
|
|
23755
|
+
|
|
23756
|
+
/**
|
|
23757
|
+
* @private
|
|
23758
|
+
*/
|
|
23759
|
+
deserialize(params) {
|
|
23760
|
+
if (!params) {
|
|
23761
|
+
return;
|
|
23762
|
+
}
|
|
23763
|
+
this.Confidence = 'Confidence' in params ? params.Confidence : null;
|
|
23764
|
+
this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
|
|
23765
|
+
|
|
23766
|
+
if (params.SegmentSet) {
|
|
23767
|
+
this.SegmentSet = new Array();
|
|
23768
|
+
for (let z in params.SegmentSet) {
|
|
23769
|
+
let obj = new MediaContentReviewOcrTextSegmentItem();
|
|
23770
|
+
obj.deserialize(params.SegmentSet[z]);
|
|
23771
|
+
this.SegmentSet.push(obj);
|
|
23772
|
+
}
|
|
23773
|
+
}
|
|
23774
|
+
|
|
23775
|
+
}
|
|
23776
|
+
}
|
|
23777
|
+
|
|
23304
23778
|
/**
|
|
23305
23779
|
* Digital watermark parameter type in the MPS task.
|
|
23306
23780
|
* @class
|
|
@@ -23531,7 +24005,7 @@ class DescribeAIAnalysisTemplatesRequest extends AbstractModel {
|
|
|
23531
24005
|
}
|
|
23532
24006
|
|
|
23533
24007
|
/**
|
|
23534
|
-
* Information required for uploading AIGC result files to COS. The
|
|
24008
|
+
* Information required for uploading AIGC result files to COS. The MPS_QcsRole role needs to be created and authorized.
|
|
23535
24009
|
* @class
|
|
23536
24010
|
*/
|
|
23537
24011
|
class AigcStoreCosParam extends AbstractModel {
|
|
@@ -23605,6 +24079,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
23605
24079
|
*/
|
|
23606
24080
|
this.VoiceId = null;
|
|
23607
24081
|
|
|
24082
|
+
/**
|
|
24083
|
+
* <p>Audition audio URL.</p>
|
|
24084
|
+
* @type {string || null}
|
|
24085
|
+
*/
|
|
24086
|
+
this.AudioUrl = null;
|
|
24087
|
+
|
|
23608
24088
|
/**
|
|
23609
24089
|
* <p>Extended information.</p>
|
|
23610
24090
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
@@ -23631,6 +24111,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
23631
24111
|
this.Msg = 'Msg' in params ? params.Msg : null;
|
|
23632
24112
|
this.Status = 'Status' in params ? params.Status : null;
|
|
23633
24113
|
this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
|
|
24114
|
+
this.AudioUrl = 'AudioUrl' in params ? params.AudioUrl : null;
|
|
23634
24115
|
this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
|
|
23635
24116
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
23636
24117
|
|
|
@@ -25327,19 +25808,19 @@ class AiRecognitionTaskOcrFullTextSegmentTextItem extends AbstractModel {
|
|
|
25327
25808
|
super();
|
|
25328
25809
|
|
|
25329
25810
|
/**
|
|
25330
|
-
* Confidence of
|
|
25811
|
+
* <p>Confidence of the recognized segment. Value range: 0–100.</p>
|
|
25331
25812
|
* @type {number || null}
|
|
25332
25813
|
*/
|
|
25333
25814
|
this.Confidence = null;
|
|
25334
25815
|
|
|
25335
25816
|
/**
|
|
25336
|
-
*
|
|
25817
|
+
* <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
25818
|
* @type {Array.<number> || null}
|
|
25338
25819
|
*/
|
|
25339
25820
|
this.AreaCoordSet = null;
|
|
25340
25821
|
|
|
25341
25822
|
/**
|
|
25342
|
-
* Recognized text
|
|
25823
|
+
* <p>Recognized text.</p>
|
|
25343
25824
|
* @type {string || null}
|
|
25344
25825
|
*/
|
|
25345
25826
|
this.Text = null;
|
|
@@ -25397,39 +25878,38 @@ class SmartSubtitleTaskAsrFullTextSegmentItem extends AbstractModel {
|
|
|
25397
25878
|
super();
|
|
25398
25879
|
|
|
25399
25880
|
/**
|
|
25400
|
-
* Confidence of
|
|
25881
|
+
* <p>Confidence of the recognized segment. Value range: 0–100.</p>
|
|
25401
25882
|
* @type {number || null}
|
|
25402
25883
|
*/
|
|
25403
25884
|
this.Confidence = null;
|
|
25404
25885
|
|
|
25405
25886
|
/**
|
|
25406
|
-
* Start time offset of
|
|
25887
|
+
* <p>Start time offset of the recognized segment, in seconds.</p>
|
|
25407
25888
|
* @type {number || null}
|
|
25408
25889
|
*/
|
|
25409
25890
|
this.StartTimeOffset = null;
|
|
25410
25891
|
|
|
25411
25892
|
/**
|
|
25412
|
-
* End time offset of
|
|
25893
|
+
* <p>End time offset of the recognized segment, in seconds.</p>
|
|
25413
25894
|
* @type {number || null}
|
|
25414
25895
|
*/
|
|
25415
25896
|
this.EndTimeOffset = null;
|
|
25416
25897
|
|
|
25417
25898
|
/**
|
|
25418
|
-
* Recognized text
|
|
25899
|
+
* <p>Recognized text.</p>
|
|
25419
25900
|
* @type {string || null}
|
|
25420
25901
|
*/
|
|
25421
25902
|
this.Text = null;
|
|
25422
25903
|
|
|
25423
25904
|
/**
|
|
25424
|
-
* Word timestamp information
|
|
25425
|
-
|
|
25426
|
-
Note: This field may return null, indicating that no valid value can be obtained.
|
|
25905
|
+
* <p>Word timestamp information.</p>
|
|
25906
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
25427
25907
|
* @type {Array.<WordResult> || null}
|
|
25428
25908
|
*/
|
|
25429
25909
|
this.Wordlist = null;
|
|
25430
25910
|
|
|
25431
25911
|
/**
|
|
25432
|
-
* Speaker ID (if speaker recognition is enabled)
|
|
25912
|
+
* <p>Speaker ID (if speaker recognition is enabled).</p>
|
|
25433
25913
|
* @type {string || null}
|
|
25434
25914
|
*/
|
|
25435
25915
|
this.SpeakerId = null;
|
|
@@ -27184,6 +27664,63 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
27184
27664
|
}
|
|
27185
27665
|
}
|
|
27186
27666
|
|
|
27667
|
+
/**
|
|
27668
|
+
* DetectVideoSubtitleArea response structure.
|
|
27669
|
+
* @class
|
|
27670
|
+
*/
|
|
27671
|
+
class DetectVideoSubtitleAreaResponse extends AbstractModel {
|
|
27672
|
+
constructor(){
|
|
27673
|
+
super();
|
|
27674
|
+
|
|
27675
|
+
/**
|
|
27676
|
+
* <p>Video width.</p><p>Unit: px.</p>
|
|
27677
|
+
* @type {number || null}
|
|
27678
|
+
*/
|
|
27679
|
+
this.Width = null;
|
|
27680
|
+
|
|
27681
|
+
/**
|
|
27682
|
+
* <p>Video height.</p><p>Unit: px.</p>
|
|
27683
|
+
* @type {number || null}
|
|
27684
|
+
*/
|
|
27685
|
+
this.Height = null;
|
|
27686
|
+
|
|
27687
|
+
/**
|
|
27688
|
+
* <p>Detected subtitle box. If nothing is detected, the value is empty.</p>
|
|
27689
|
+
* @type {Array.<SubtitleArea> || null}
|
|
27690
|
+
*/
|
|
27691
|
+
this.Result = null;
|
|
27692
|
+
|
|
27693
|
+
/**
|
|
27694
|
+
* 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.
|
|
27695
|
+
* @type {string || null}
|
|
27696
|
+
*/
|
|
27697
|
+
this.RequestId = null;
|
|
27698
|
+
|
|
27699
|
+
}
|
|
27700
|
+
|
|
27701
|
+
/**
|
|
27702
|
+
* @private
|
|
27703
|
+
*/
|
|
27704
|
+
deserialize(params) {
|
|
27705
|
+
if (!params) {
|
|
27706
|
+
return;
|
|
27707
|
+
}
|
|
27708
|
+
this.Width = 'Width' in params ? params.Width : null;
|
|
27709
|
+
this.Height = 'Height' in params ? params.Height : null;
|
|
27710
|
+
|
|
27711
|
+
if (params.Result) {
|
|
27712
|
+
this.Result = new Array();
|
|
27713
|
+
for (let z in params.Result) {
|
|
27714
|
+
let obj = new SubtitleArea();
|
|
27715
|
+
obj.deserialize(params.Result[z]);
|
|
27716
|
+
this.Result.push(obj);
|
|
27717
|
+
}
|
|
27718
|
+
}
|
|
27719
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
27720
|
+
|
|
27721
|
+
}
|
|
27722
|
+
}
|
|
27723
|
+
|
|
27187
27724
|
/**
|
|
27188
27725
|
* Result of the sentence recognition.
|
|
27189
27726
|
* @class
|
|
@@ -29605,6 +30142,46 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
29605
30142
|
}
|
|
29606
30143
|
}
|
|
29607
30144
|
|
|
30145
|
+
/**
|
|
30146
|
+
* DetectVideoWatermark request structure.
|
|
30147
|
+
* @class
|
|
30148
|
+
*/
|
|
30149
|
+
class DetectVideoWatermarkRequest extends AbstractModel {
|
|
30150
|
+
constructor(){
|
|
30151
|
+
super();
|
|
30152
|
+
|
|
30153
|
+
/**
|
|
30154
|
+
* <p>Input information, which supports only URL and COS.</p>
|
|
30155
|
+
* @type {MediaInputInfo || null}
|
|
30156
|
+
*/
|
|
30157
|
+
this.InputInfo = null;
|
|
30158
|
+
|
|
30159
|
+
/**
|
|
30160
|
+
* <p>Extended parameter. This is left empty by default.</p>
|
|
30161
|
+
* @type {string || null}
|
|
30162
|
+
*/
|
|
30163
|
+
this.UserExtPara = null;
|
|
30164
|
+
|
|
30165
|
+
}
|
|
30166
|
+
|
|
30167
|
+
/**
|
|
30168
|
+
* @private
|
|
30169
|
+
*/
|
|
30170
|
+
deserialize(params) {
|
|
30171
|
+
if (!params) {
|
|
30172
|
+
return;
|
|
30173
|
+
}
|
|
30174
|
+
|
|
30175
|
+
if (params.InputInfo) {
|
|
30176
|
+
let obj = new MediaInputInfo();
|
|
30177
|
+
obj.deserialize(params.InputInfo)
|
|
30178
|
+
this.InputInfo = obj;
|
|
30179
|
+
}
|
|
30180
|
+
this.UserExtPara = 'UserExtPara' in params ? params.UserExtPara : null;
|
|
30181
|
+
|
|
30182
|
+
}
|
|
30183
|
+
}
|
|
30184
|
+
|
|
29608
30185
|
/**
|
|
29609
30186
|
* ModifySmartSubtitleTemplate response structure.
|
|
29610
30187
|
* @class
|
|
@@ -32781,63 +33358,56 @@ class TaskNotifyConfig extends AbstractModel {
|
|
|
32781
33358
|
super();
|
|
32782
33359
|
|
|
32783
33360
|
/**
|
|
32784
|
-
* Notification type.
|
|
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>.
|
|
33361
|
+
* <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
33362
|
* @type {string || null}
|
|
32792
33363
|
*/
|
|
32793
33364
|
this.NotifyType = null;
|
|
32794
33365
|
|
|
32795
33366
|
/**
|
|
32796
|
-
* Workflow notification
|
|
33367
|
+
* <p>Workflow notification mode. Valid values are Finish and Change. If this is not specified, the default value is Finish.</p>
|
|
32797
33368
|
* @type {string || null}
|
|
32798
33369
|
*/
|
|
32799
33370
|
this.NotifyMode = null;
|
|
32800
33371
|
|
|
32801
33372
|
/**
|
|
32802
|
-
* HTTP callback URL
|
|
33373
|
+
* <p>HTTP callback URL. This is required if NotifyType is URL.</p>
|
|
32803
33374
|
* @type {string || null}
|
|
32804
33375
|
*/
|
|
32805
33376
|
this.NotifyUrl = null;
|
|
32806
33377
|
|
|
32807
33378
|
/**
|
|
32808
|
-
*
|
|
33379
|
+
* <p>CMQ or TDMQ for CMQ model. Valid values are Queue and Topic.</p>
|
|
32809
33380
|
* @type {string || null}
|
|
32810
33381
|
*/
|
|
32811
33382
|
this.CmqModel = null;
|
|
32812
33383
|
|
|
32813
33384
|
/**
|
|
32814
|
-
*
|
|
33385
|
+
* <p>CMQ or TDMQ for CMQ region, such as sh or bj.</p>
|
|
32815
33386
|
* @type {string || null}
|
|
32816
33387
|
*/
|
|
32817
33388
|
this.CmqRegion = null;
|
|
32818
33389
|
|
|
32819
33390
|
/**
|
|
32820
|
-
*
|
|
33391
|
+
* <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
33392
|
* @type {string || null}
|
|
32822
33393
|
*/
|
|
32823
33394
|
this.TopicName = null;
|
|
32824
33395
|
|
|
32825
33396
|
/**
|
|
32826
|
-
*
|
|
33397
|
+
* <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
33398
|
* @type {string || null}
|
|
32828
33399
|
*/
|
|
32829
33400
|
this.QueueName = null;
|
|
32830
33401
|
|
|
32831
33402
|
/**
|
|
32832
|
-
*
|
|
32833
|
-
|
|
33403
|
+
* <p>AWS SQS callback. This is required if NotifyType is AWS-SQS.</p>
|
|
32834
33404
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
32835
33405
|
* @type {AwsSQS || null}
|
|
32836
33406
|
*/
|
|
32837
33407
|
this.AwsSQS = null;
|
|
32838
33408
|
|
|
32839
33409
|
/**
|
|
32840
|
-
*
|
|
33410
|
+
* <p>Key used to generate the callback signature.</p>
|
|
32841
33411
|
* @type {string || null}
|
|
32842
33412
|
*/
|
|
32843
33413
|
this.NotifyKey = null;
|
|
@@ -33832,6 +34402,76 @@ class AiRecognitionTaskOcrFullTextResultInput extends AbstractModel {
|
|
|
33832
34402
|
}
|
|
33833
34403
|
}
|
|
33834
34404
|
|
|
34405
|
+
/**
|
|
34406
|
+
* Voice attribute.
|
|
34407
|
+
* @class
|
|
34408
|
+
*/
|
|
34409
|
+
class VoiceProfile extends AbstractModel {
|
|
34410
|
+
constructor(){
|
|
34411
|
+
super();
|
|
34412
|
+
|
|
34413
|
+
/**
|
|
34414
|
+
* <p>Voice name.</p>
|
|
34415
|
+
* @type {string || null}
|
|
34416
|
+
*/
|
|
34417
|
+
this.Name = null;
|
|
34418
|
+
|
|
34419
|
+
/**
|
|
34420
|
+
* <p>Voice description.</p>
|
|
34421
|
+
* @type {string || null}
|
|
34422
|
+
*/
|
|
34423
|
+
this.Description = null;
|
|
34424
|
+
|
|
34425
|
+
/**
|
|
34426
|
+
* <p>Gender.</p><p>Enumeration values:</p><ul><li>male: male</li><li>female: female</li><li>unknown: unknown</li></ul>
|
|
34427
|
+
* @type {string || null}
|
|
34428
|
+
*/
|
|
34429
|
+
this.Gender = null;
|
|
34430
|
+
|
|
34431
|
+
/**
|
|
34432
|
+
* <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>
|
|
34433
|
+
* @type {string || null}
|
|
34434
|
+
*/
|
|
34435
|
+
this.Age = null;
|
|
34436
|
+
|
|
34437
|
+
/**
|
|
34438
|
+
* <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>
|
|
34439
|
+
* @type {Array.<string> || null}
|
|
34440
|
+
*/
|
|
34441
|
+
this.Languages = null;
|
|
34442
|
+
|
|
34443
|
+
/**
|
|
34444
|
+
* <p>Tag.</p>
|
|
34445
|
+
* @type {Array.<string> || null}
|
|
34446
|
+
*/
|
|
34447
|
+
this.Labels = null;
|
|
34448
|
+
|
|
34449
|
+
/**
|
|
34450
|
+
* <p>Scenario.</p>
|
|
34451
|
+
* @type {Array.<string> || null}
|
|
34452
|
+
*/
|
|
34453
|
+
this.Scenes = null;
|
|
34454
|
+
|
|
34455
|
+
}
|
|
34456
|
+
|
|
34457
|
+
/**
|
|
34458
|
+
* @private
|
|
34459
|
+
*/
|
|
34460
|
+
deserialize(params) {
|
|
34461
|
+
if (!params) {
|
|
34462
|
+
return;
|
|
34463
|
+
}
|
|
34464
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
34465
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
34466
|
+
this.Gender = 'Gender' in params ? params.Gender : null;
|
|
34467
|
+
this.Age = 'Age' in params ? params.Age : null;
|
|
34468
|
+
this.Languages = 'Languages' in params ? params.Languages : null;
|
|
34469
|
+
this.Labels = 'Labels' in params ? params.Labels : null;
|
|
34470
|
+
this.Scenes = 'Scenes' in params ? params.Scenes : null;
|
|
34471
|
+
|
|
34472
|
+
}
|
|
34473
|
+
}
|
|
34474
|
+
|
|
33835
34475
|
/**
|
|
33836
34476
|
* Subtitle suppression module text stroke configuration
|
|
33837
34477
|
* @class
|
|
@@ -35509,7 +36149,7 @@ class CreateTranscodeTemplateResponse extends AbstractModel {
|
|
|
35509
36149
|
super();
|
|
35510
36150
|
|
|
35511
36151
|
/**
|
|
35512
|
-
* Unique
|
|
36152
|
+
* <p>Unique identifier of the transcoding template.</p>
|
|
35513
36153
|
* @type {number || null}
|
|
35514
36154
|
*/
|
|
35515
36155
|
this.Definition = null;
|
|
@@ -35932,7 +36572,7 @@ class ProcessLiveStreamRequest extends AbstractModel {
|
|
|
35932
36572
|
super();
|
|
35933
36573
|
|
|
35934
36574
|
/**
|
|
35935
|
-
* <p>
|
|
36575
|
+
* <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><roomid></code>?sdkappid=<code><sdkappid></code>&userid=<code><userid></code>&usersig=<code><usersig></code><br><code><roomid></code> is the TRTC room ID.<br><code><sdkappid></code> is the TRTC SDK app ID.<br><code><userid></code> is the ID of the user who enters the room, which can be used to distinguish bots.<br><code><usersig></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
36576
|
* @type {string || null}
|
|
35937
36577
|
*/
|
|
35938
36578
|
this.Url = null;
|
|
@@ -36525,12 +37165,7 @@ class CreateSmartSubtitleTemplateRequest extends AbstractModel {
|
|
|
36525
37165
|
this.Name = null;
|
|
36526
37166
|
|
|
36527
37167
|
/**
|
|
36528
|
-
* <p>Smart subtitling video source language<
|
|
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)
|
|
37168
|
+
* <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
37169
|
* @type {string || null}
|
|
36535
37170
|
*/
|
|
36536
37171
|
this.VideoSrcLanguage = null;
|
|
@@ -36566,7 +37201,7 @@ Common available language codes:<br>`auto` (Auto Recognition), <br>`zh` (Simplif
|
|
|
36566
37201
|
this.TranslateSwitch = null;
|
|
36567
37202
|
|
|
36568
37203
|
/**
|
|
36569
|
-
* <p>
|
|
37204
|
+
* <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
37205
|
* @type {string || null}
|
|
36571
37206
|
*/
|
|
36572
37207
|
this.TranslateDstLanguage = null;
|
|
@@ -36744,6 +37379,12 @@ class QualityControlData extends AbstractModel {
|
|
|
36744
37379
|
*/
|
|
36745
37380
|
this.ContainerDiagnoseResultSet = null;
|
|
36746
37381
|
|
|
37382
|
+
/**
|
|
37383
|
+
* <p>LLM AIGC quality detection result.</p>
|
|
37384
|
+
* @type {LLMDetectionReport || null}
|
|
37385
|
+
*/
|
|
37386
|
+
this.LLMDetectionReport = null;
|
|
37387
|
+
|
|
36747
37388
|
}
|
|
36748
37389
|
|
|
36749
37390
|
/**
|
|
@@ -36777,6 +37418,12 @@ class QualityControlData extends AbstractModel {
|
|
|
36777
37418
|
}
|
|
36778
37419
|
}
|
|
36779
37420
|
|
|
37421
|
+
if (params.LLMDetectionReport) {
|
|
37422
|
+
let obj = new LLMDetectionReport();
|
|
37423
|
+
obj.deserialize(params.LLMDetectionReport)
|
|
37424
|
+
this.LLMDetectionReport = obj;
|
|
37425
|
+
}
|
|
37426
|
+
|
|
36780
37427
|
}
|
|
36781
37428
|
}
|
|
36782
37429
|
|
|
@@ -37673,37 +38320,43 @@ class CreateAigcImageTaskRequest extends AbstractModel {
|
|
|
37673
38320
|
super();
|
|
37674
38321
|
|
|
37675
38322
|
/**
|
|
37676
|
-
* <p>Model name.<br>Supported models:<br>Hunyuan.<br>
|
|
38323
|
+
* <p>Model name.<br>Supported models:<br>Hunyuan.<br>Qwen.<br>Vidu.<br>Kling.<br>MJ.</p>
|
|
37677
38324
|
* @type {string || null}
|
|
37678
38325
|
*/
|
|
37679
38326
|
this.ModelName = null;
|
|
37680
38327
|
|
|
37681
38328
|
/**
|
|
37682
|
-
* <p>
|
|
38329
|
+
* <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
38330
|
* @type {string || null}
|
|
37684
38331
|
*/
|
|
37685
38332
|
this.ModelVersion = null;
|
|
37686
38333
|
|
|
37687
38334
|
/**
|
|
37688
|
-
* <p>
|
|
38335
|
+
* <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>
|
|
38336
|
+
* @type {string || null}
|
|
38337
|
+
*/
|
|
38338
|
+
this.SceneType = null;
|
|
38339
|
+
|
|
38340
|
+
/**
|
|
38341
|
+
* <p>Description of the generated image. This parameter is required when no reference image is specified.</p>
|
|
37689
38342
|
* @type {string || null}
|
|
37690
38343
|
*/
|
|
37691
38344
|
this.Prompt = null;
|
|
37692
38345
|
|
|
37693
38346
|
/**
|
|
37694
|
-
* <p>Specifies the content you want to prevent the model from generating. Note: Not all models support this
|
|
38347
|
+
* <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
38348
|
* @type {string || null}
|
|
37696
38349
|
*/
|
|
37697
38350
|
this.NegativePrompt = null;
|
|
37698
38351
|
|
|
37699
38352
|
/**
|
|
37700
|
-
* <p>The default value is False, meaning the model follows instructions strictly
|
|
38353
|
+
* <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
38354
|
* @type {boolean || null}
|
|
37702
38355
|
*/
|
|
37703
38356
|
this.EnhancePrompt = null;
|
|
37704
38357
|
|
|
37705
38358
|
/**
|
|
37706
|
-
* <p>
|
|
38359
|
+
* <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
38360
|
* @type {Array.<AigcImageInfo> || null}
|
|
37708
38361
|
*/
|
|
37709
38362
|
this.ImageInfos = null;
|
|
@@ -37715,7 +38368,7 @@ class CreateAigcImageTaskRequest extends AbstractModel {
|
|
|
37715
38368
|
this.ExtraParameters = null;
|
|
37716
38369
|
|
|
37717
38370
|
/**
|
|
37718
|
-
* <p>
|
|
38371
|
+
* <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
38372
|
* @type {string || null}
|
|
37720
38373
|
*/
|
|
37721
38374
|
this.AdditionalParameters = null;
|
|
@@ -37743,6 +38396,7 @@ class CreateAigcImageTaskRequest extends AbstractModel {
|
|
|
37743
38396
|
}
|
|
37744
38397
|
this.ModelName = 'ModelName' in params ? params.ModelName : null;
|
|
37745
38398
|
this.ModelVersion = 'ModelVersion' in params ? params.ModelVersion : null;
|
|
38399
|
+
this.SceneType = 'SceneType' in params ? params.SceneType : null;
|
|
37746
38400
|
this.Prompt = 'Prompt' in params ? params.Prompt : null;
|
|
37747
38401
|
this.NegativePrompt = 'NegativePrompt' in params ? params.NegativePrompt : null;
|
|
37748
38402
|
this.EnhancePrompt = 'EnhancePrompt' in params ? params.EnhancePrompt : null;
|
|
@@ -38181,6 +38835,49 @@ class DescribeSmartSubtitleTemplatesResponse extends AbstractModel {
|
|
|
38181
38835
|
}
|
|
38182
38836
|
}
|
|
38183
38837
|
|
|
38838
|
+
/**
|
|
38839
|
+
* LLM detection result report.
|
|
38840
|
+
* @class
|
|
38841
|
+
*/
|
|
38842
|
+
class LLMDetectionReport extends AbstractModel {
|
|
38843
|
+
constructor(){
|
|
38844
|
+
super();
|
|
38845
|
+
|
|
38846
|
+
/**
|
|
38847
|
+
* <p>Number of detection results.</p>
|
|
38848
|
+
* @type {number || null}
|
|
38849
|
+
*/
|
|
38850
|
+
this.ResultCount = null;
|
|
38851
|
+
|
|
38852
|
+
/**
|
|
38853
|
+
* <p>Detection item result list.</p>
|
|
38854
|
+
* @type {Array.<LLMDetectionResultItem> || null}
|
|
38855
|
+
*/
|
|
38856
|
+
this.ResultSet = null;
|
|
38857
|
+
|
|
38858
|
+
}
|
|
38859
|
+
|
|
38860
|
+
/**
|
|
38861
|
+
* @private
|
|
38862
|
+
*/
|
|
38863
|
+
deserialize(params) {
|
|
38864
|
+
if (!params) {
|
|
38865
|
+
return;
|
|
38866
|
+
}
|
|
38867
|
+
this.ResultCount = 'ResultCount' in params ? params.ResultCount : null;
|
|
38868
|
+
|
|
38869
|
+
if (params.ResultSet) {
|
|
38870
|
+
this.ResultSet = new Array();
|
|
38871
|
+
for (let z in params.ResultSet) {
|
|
38872
|
+
let obj = new LLMDetectionResultItem();
|
|
38873
|
+
obj.deserialize(params.ResultSet[z]);
|
|
38874
|
+
this.ResultSet.push(obj);
|
|
38875
|
+
}
|
|
38876
|
+
}
|
|
38877
|
+
|
|
38878
|
+
}
|
|
38879
|
+
}
|
|
38880
|
+
|
|
38184
38881
|
/**
|
|
38185
38882
|
* DescribeUsageData request structure.
|
|
38186
38883
|
* @class
|
|
@@ -39603,25 +40300,25 @@ class AigcVideoExtraParam extends AbstractModel {
|
|
|
39603
40300
|
super();
|
|
39604
40301
|
|
|
39605
40302
|
/**
|
|
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>
|
|
40303
|
+
* <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
40304
|
* @type {string || null}
|
|
39608
40305
|
*/
|
|
39609
40306
|
this.Resolution = null;
|
|
39610
40307
|
|
|
39611
40308
|
/**
|
|
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>
|
|
40309
|
+
* <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
40310
|
* @type {string || null}
|
|
39614
40311
|
*/
|
|
39615
40312
|
this.AspectRatio = null;
|
|
39616
40313
|
|
|
39617
40314
|
/**
|
|
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>
|
|
40315
|
+
* <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
40316
|
* @type {number || null}
|
|
39620
40317
|
*/
|
|
39621
40318
|
this.LogoAdd = null;
|
|
39622
40319
|
|
|
39623
40320
|
/**
|
|
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>
|
|
40321
|
+
* <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
40322
|
* @type {boolean || null}
|
|
39626
40323
|
*/
|
|
39627
40324
|
this.EnableAudio = null;
|
|
@@ -40374,6 +41071,55 @@ If not set, the service will automatically adopt a suitable bitrate based on aud
|
|
|
40374
41071
|
}
|
|
40375
41072
|
}
|
|
40376
41073
|
|
|
41074
|
+
/**
|
|
41075
|
+
* DetectVideoWatermark response structure.
|
|
41076
|
+
* @class
|
|
41077
|
+
*/
|
|
41078
|
+
class DetectVideoWatermarkResponse extends AbstractModel {
|
|
41079
|
+
constructor(){
|
|
41080
|
+
super();
|
|
41081
|
+
|
|
41082
|
+
/**
|
|
41083
|
+
* <p>Confidence of watermark presence.</p><p>Value range: [0, 100].</p>
|
|
41084
|
+
* @type {number || null}
|
|
41085
|
+
*/
|
|
41086
|
+
this.Confidence = null;
|
|
41087
|
+
|
|
41088
|
+
/**
|
|
41089
|
+
* <p>Indicates whether a watermark is present in the video.</p>
|
|
41090
|
+
* @type {boolean || null}
|
|
41091
|
+
*/
|
|
41092
|
+
this.HasWatermark = null;
|
|
41093
|
+
|
|
41094
|
+
/**
|
|
41095
|
+
* <p>Watermark description.</p>
|
|
41096
|
+
* @type {string || null}
|
|
41097
|
+
*/
|
|
41098
|
+
this.Description = null;
|
|
41099
|
+
|
|
41100
|
+
/**
|
|
41101
|
+
* 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.
|
|
41102
|
+
* @type {string || null}
|
|
41103
|
+
*/
|
|
41104
|
+
this.RequestId = null;
|
|
41105
|
+
|
|
41106
|
+
}
|
|
41107
|
+
|
|
41108
|
+
/**
|
|
41109
|
+
* @private
|
|
41110
|
+
*/
|
|
41111
|
+
deserialize(params) {
|
|
41112
|
+
if (!params) {
|
|
41113
|
+
return;
|
|
41114
|
+
}
|
|
41115
|
+
this.Confidence = 'Confidence' in params ? params.Confidence : null;
|
|
41116
|
+
this.HasWatermark = 'HasWatermark' in params ? params.HasWatermark : null;
|
|
41117
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
41118
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
41119
|
+
|
|
41120
|
+
}
|
|
41121
|
+
}
|
|
41122
|
+
|
|
40377
41123
|
/**
|
|
40378
41124
|
* Translated segment.
|
|
40379
41125
|
* @class
|
|
@@ -40462,11 +41208,59 @@ class DescribeVoicesRequest extends AbstractModel {
|
|
|
40462
41208
|
super();
|
|
40463
41209
|
|
|
40464
41210
|
/**
|
|
40465
|
-
* <p>Voice
|
|
41211
|
+
* <p>Voice ID.</p>
|
|
41212
|
+
* @type {string || null}
|
|
41213
|
+
*/
|
|
41214
|
+
this.VoiceId = null;
|
|
41215
|
+
|
|
41216
|
+
/**
|
|
41217
|
+
* <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
41218
|
* @type {string || null}
|
|
40467
41219
|
*/
|
|
40468
41220
|
this.VoiceType = null;
|
|
40469
41221
|
|
|
41222
|
+
/**
|
|
41223
|
+
* <p>Voice name.</p>
|
|
41224
|
+
* @type {string || null}
|
|
41225
|
+
*/
|
|
41226
|
+
this.VoiceName = null;
|
|
41227
|
+
|
|
41228
|
+
/**
|
|
41229
|
+
* <p>Voice description.</p>
|
|
41230
|
+
* @type {string || null}
|
|
41231
|
+
*/
|
|
41232
|
+
this.Description = null;
|
|
41233
|
+
|
|
41234
|
+
/**
|
|
41235
|
+
* <p>Gender.</p><p>Enumeration values:</p><ul><li>male: male</li><li>female: female</li><li>unknown: unknown</li></ul>
|
|
41236
|
+
* @type {string || null}
|
|
41237
|
+
*/
|
|
41238
|
+
this.Gender = null;
|
|
41239
|
+
|
|
41240
|
+
/**
|
|
41241
|
+
* <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>
|
|
41242
|
+
* @type {string || null}
|
|
41243
|
+
*/
|
|
41244
|
+
this.Age = null;
|
|
41245
|
+
|
|
41246
|
+
/**
|
|
41247
|
+
* <p>Language.</p>
|
|
41248
|
+
* @type {Array.<string> || null}
|
|
41249
|
+
*/
|
|
41250
|
+
this.Languages = null;
|
|
41251
|
+
|
|
41252
|
+
/**
|
|
41253
|
+
* <p>Tag.</p>
|
|
41254
|
+
* @type {Array.<string> || null}
|
|
41255
|
+
*/
|
|
41256
|
+
this.Labels = null;
|
|
41257
|
+
|
|
41258
|
+
/**
|
|
41259
|
+
* <p>Scenario.</p>
|
|
41260
|
+
* @type {Array.<string> || null}
|
|
41261
|
+
*/
|
|
41262
|
+
this.Scenes = null;
|
|
41263
|
+
|
|
40470
41264
|
/**
|
|
40471
41265
|
* <p>Extended parameters in the format of a JSON string. </p><p>Other filter criteria:
|
|
40472
41266
|
voiceName (String): Voice name, fuzzy matching. labels (Array of String): Tags. Matches voices that contain these tags.</p>
|
|
@@ -40483,7 +41277,15 @@ voiceName (String): Voice name, fuzzy matching. labels (Array of String): Tags.
|
|
|
40483
41277
|
if (!params) {
|
|
40484
41278
|
return;
|
|
40485
41279
|
}
|
|
41280
|
+
this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
|
|
40486
41281
|
this.VoiceType = 'VoiceType' in params ? params.VoiceType : null;
|
|
41282
|
+
this.VoiceName = 'VoiceName' in params ? params.VoiceName : null;
|
|
41283
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
41284
|
+
this.Gender = 'Gender' in params ? params.Gender : null;
|
|
41285
|
+
this.Age = 'Age' in params ? params.Age : null;
|
|
41286
|
+
this.Languages = 'Languages' in params ? params.Languages : null;
|
|
41287
|
+
this.Labels = 'Labels' in params ? params.Labels : null;
|
|
41288
|
+
this.Scenes = 'Scenes' in params ? params.Scenes : null;
|
|
40487
41289
|
this.ExtParam = 'ExtParam' in params ? params.ExtParam : null;
|
|
40488
41290
|
|
|
40489
41291
|
}
|
|
@@ -40721,33 +41523,65 @@ class DescribeStreamLinkSecurityGroupRequest extends AbstractModel {
|
|
|
40721
41523
|
}
|
|
40722
41524
|
|
|
40723
41525
|
/**
|
|
40724
|
-
*
|
|
41526
|
+
*
|
|
40725
41527
|
* @class
|
|
40726
41528
|
*/
|
|
40727
|
-
class
|
|
41529
|
+
class RecipeItem extends AbstractModel {
|
|
40728
41530
|
constructor(){
|
|
40729
41531
|
super();
|
|
40730
41532
|
|
|
40731
41533
|
/**
|
|
40732
|
-
*
|
|
41534
|
+
*
|
|
41535
|
+
* @type {string || null}
|
|
41536
|
+
*/
|
|
41537
|
+
this.Theme = null;
|
|
41538
|
+
|
|
41539
|
+
/**
|
|
41540
|
+
*
|
|
40733
41541
|
* @type {number || null}
|
|
40734
41542
|
*/
|
|
40735
|
-
this.
|
|
41543
|
+
this.Num = null;
|
|
41544
|
+
|
|
41545
|
+
}
|
|
41546
|
+
|
|
41547
|
+
/**
|
|
41548
|
+
* @private
|
|
41549
|
+
*/
|
|
41550
|
+
deserialize(params) {
|
|
41551
|
+
if (!params) {
|
|
41552
|
+
return;
|
|
41553
|
+
}
|
|
41554
|
+
this.Theme = 'Theme' in params ? params.Theme : null;
|
|
41555
|
+
this.Num = 'Num' in params ? params.Num : null;
|
|
41556
|
+
|
|
41557
|
+
}
|
|
41558
|
+
}
|
|
41559
|
+
|
|
41560
|
+
/**
|
|
41561
|
+
* DeleteVoice response structure.
|
|
41562
|
+
* @class
|
|
41563
|
+
*/
|
|
41564
|
+
class DeleteVoiceResponse extends AbstractModel {
|
|
41565
|
+
constructor(){
|
|
41566
|
+
super();
|
|
40736
41567
|
|
|
40737
41568
|
/**
|
|
40738
|
-
*
|
|
40739
|
-
|
|
40740
|
-
|
|
40741
|
-
|
|
41569
|
+
* <p>Error code. 0 is returned if the request is successful.</p>
|
|
41570
|
+
* @type {number || null}
|
|
41571
|
+
*/
|
|
41572
|
+
this.ErrorCode = null;
|
|
41573
|
+
|
|
41574
|
+
/**
|
|
41575
|
+
* <p>Error message. success is returned if the request is successful.</p>
|
|
40742
41576
|
* @type {string || null}
|
|
40743
41577
|
*/
|
|
40744
|
-
this.
|
|
41578
|
+
this.Msg = null;
|
|
40745
41579
|
|
|
40746
41580
|
/**
|
|
40747
|
-
* The
|
|
40748
|
-
* @type {
|
|
41581
|
+
* 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.
|
|
41582
|
+
* @type {string || null}
|
|
40749
41583
|
*/
|
|
40750
|
-
this.
|
|
41584
|
+
this.RequestId = null;
|
|
40751
41585
|
|
|
40752
41586
|
}
|
|
40753
41587
|
|
|
@@ -40758,17 +41592,9 @@ class AiReviewPoliticalOcrTaskOutput extends AbstractModel {
|
|
|
40758
41592
|
if (!params) {
|
|
40759
41593
|
return;
|
|
40760
41594
|
}
|
|
40761
|
-
this.
|
|
40762
|
-
this.
|
|
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
|
-
}
|
|
41595
|
+
this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
|
|
41596
|
+
this.Msg = 'Msg' in params ? params.Msg : null;
|
|
41597
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
40772
41598
|
|
|
40773
41599
|
}
|
|
40774
41600
|
}
|
|
@@ -41282,6 +42108,51 @@ class MediaAiAnalysisFrameTagItem extends AbstractModel {
|
|
|
41282
42108
|
}
|
|
41283
42109
|
}
|
|
41284
42110
|
|
|
42111
|
+
/**
|
|
42112
|
+
* The parameters for detecting sensitive information.
|
|
42113
|
+
* @class
|
|
42114
|
+
*/
|
|
42115
|
+
class TerrorismConfigureInfoForUpdate extends AbstractModel {
|
|
42116
|
+
constructor(){
|
|
42117
|
+
super();
|
|
42118
|
+
|
|
42119
|
+
/**
|
|
42120
|
+
* The parameters for detecting sensitive information in images.
|
|
42121
|
+
* @type {TerrorismImgReviewTemplateInfoForUpdate || null}
|
|
42122
|
+
*/
|
|
42123
|
+
this.ImgReviewInfo = null;
|
|
42124
|
+
|
|
42125
|
+
/**
|
|
42126
|
+
* The parameters for detecting sensitive information based on OCR.
|
|
42127
|
+
* @type {TerrorismOcrReviewTemplateInfoForUpdate || null}
|
|
42128
|
+
*/
|
|
42129
|
+
this.OcrReviewInfo = null;
|
|
42130
|
+
|
|
42131
|
+
}
|
|
42132
|
+
|
|
42133
|
+
/**
|
|
42134
|
+
* @private
|
|
42135
|
+
*/
|
|
42136
|
+
deserialize(params) {
|
|
42137
|
+
if (!params) {
|
|
42138
|
+
return;
|
|
42139
|
+
}
|
|
42140
|
+
|
|
42141
|
+
if (params.ImgReviewInfo) {
|
|
42142
|
+
let obj = new TerrorismImgReviewTemplateInfoForUpdate();
|
|
42143
|
+
obj.deserialize(params.ImgReviewInfo)
|
|
42144
|
+
this.ImgReviewInfo = obj;
|
|
42145
|
+
}
|
|
42146
|
+
|
|
42147
|
+
if (params.OcrReviewInfo) {
|
|
42148
|
+
let obj = new TerrorismOcrReviewTemplateInfoForUpdate();
|
|
42149
|
+
obj.deserialize(params.OcrReviewInfo)
|
|
42150
|
+
this.OcrReviewInfo = obj;
|
|
42151
|
+
}
|
|
42152
|
+
|
|
42153
|
+
}
|
|
42154
|
+
}
|
|
42155
|
+
|
|
41285
42156
|
/**
|
|
41286
42157
|
* The execution results of the subtasks of a scheme.
|
|
41287
42158
|
* @class
|
|
@@ -42655,6 +43526,99 @@ class MediaImageSpriteItem extends AbstractModel {
|
|
|
42655
43526
|
}
|
|
42656
43527
|
}
|
|
42657
43528
|
|
|
43529
|
+
/**
|
|
43530
|
+
*
|
|
43531
|
+
* @class
|
|
43532
|
+
*/
|
|
43533
|
+
class AiPosterSuiteConfig extends AbstractModel {
|
|
43534
|
+
constructor(){
|
|
43535
|
+
super();
|
|
43536
|
+
|
|
43537
|
+
/**
|
|
43538
|
+
*
|
|
43539
|
+
* @type {string || null}
|
|
43540
|
+
*/
|
|
43541
|
+
this.Mode = null;
|
|
43542
|
+
|
|
43543
|
+
/**
|
|
43544
|
+
*
|
|
43545
|
+
* @type {number || null}
|
|
43546
|
+
*/
|
|
43547
|
+
this.Definition = null;
|
|
43548
|
+
|
|
43549
|
+
/**
|
|
43550
|
+
*
|
|
43551
|
+
* @type {Array.<RecipeItem> || null}
|
|
43552
|
+
*/
|
|
43553
|
+
this.Recipe = null;
|
|
43554
|
+
|
|
43555
|
+
/**
|
|
43556
|
+
*
|
|
43557
|
+
* @type {string || null}
|
|
43558
|
+
*/
|
|
43559
|
+
this.Language = null;
|
|
43560
|
+
|
|
43561
|
+
/**
|
|
43562
|
+
*
|
|
43563
|
+
* @type {string || null}
|
|
43564
|
+
*/
|
|
43565
|
+
this.PanelRatio = null;
|
|
43566
|
+
|
|
43567
|
+
/**
|
|
43568
|
+
*
|
|
43569
|
+
* @type {string || null}
|
|
43570
|
+
*/
|
|
43571
|
+
this.PanelResolution = null;
|
|
43572
|
+
|
|
43573
|
+
/**
|
|
43574
|
+
*
|
|
43575
|
+
* @type {Array.<CustomVariable> || null}
|
|
43576
|
+
*/
|
|
43577
|
+
this.CustomVariables = null;
|
|
43578
|
+
|
|
43579
|
+
/**
|
|
43580
|
+
*
|
|
43581
|
+
* @type {string || null}
|
|
43582
|
+
*/
|
|
43583
|
+
this.Model = null;
|
|
43584
|
+
|
|
43585
|
+
}
|
|
43586
|
+
|
|
43587
|
+
/**
|
|
43588
|
+
* @private
|
|
43589
|
+
*/
|
|
43590
|
+
deserialize(params) {
|
|
43591
|
+
if (!params) {
|
|
43592
|
+
return;
|
|
43593
|
+
}
|
|
43594
|
+
this.Mode = 'Mode' in params ? params.Mode : null;
|
|
43595
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
43596
|
+
|
|
43597
|
+
if (params.Recipe) {
|
|
43598
|
+
this.Recipe = new Array();
|
|
43599
|
+
for (let z in params.Recipe) {
|
|
43600
|
+
let obj = new RecipeItem();
|
|
43601
|
+
obj.deserialize(params.Recipe[z]);
|
|
43602
|
+
this.Recipe.push(obj);
|
|
43603
|
+
}
|
|
43604
|
+
}
|
|
43605
|
+
this.Language = 'Language' in params ? params.Language : null;
|
|
43606
|
+
this.PanelRatio = 'PanelRatio' in params ? params.PanelRatio : null;
|
|
43607
|
+
this.PanelResolution = 'PanelResolution' in params ? params.PanelResolution : null;
|
|
43608
|
+
|
|
43609
|
+
if (params.CustomVariables) {
|
|
43610
|
+
this.CustomVariables = new Array();
|
|
43611
|
+
for (let z in params.CustomVariables) {
|
|
43612
|
+
let obj = new CustomVariable();
|
|
43613
|
+
obj.deserialize(params.CustomVariables[z]);
|
|
43614
|
+
this.CustomVariables.push(obj);
|
|
43615
|
+
}
|
|
43616
|
+
}
|
|
43617
|
+
this.Model = 'Model' in params ? params.Model : null;
|
|
43618
|
+
|
|
43619
|
+
}
|
|
43620
|
+
}
|
|
43621
|
+
|
|
42658
43622
|
/**
|
|
42659
43623
|
* The audio enhancement configuration.
|
|
42660
43624
|
* @class
|
|
@@ -43979,37 +44943,37 @@ class AiRecognitionTaskTransTextSegmentItem extends AbstractModel {
|
|
|
43979
44943
|
super();
|
|
43980
44944
|
|
|
43981
44945
|
/**
|
|
43982
|
-
*
|
|
44946
|
+
* <p>Confidence of the recognized segment. Value range: 0–100.</p>
|
|
43983
44947
|
* @type {number || null}
|
|
43984
44948
|
*/
|
|
43985
44949
|
this.Confidence = null;
|
|
43986
44950
|
|
|
43987
44951
|
/**
|
|
43988
|
-
*
|
|
44952
|
+
* <p>Start time offset of the recognized segment, in seconds.</p>
|
|
43989
44953
|
* @type {number || null}
|
|
43990
44954
|
*/
|
|
43991
44955
|
this.StartTimeOffset = null;
|
|
43992
44956
|
|
|
43993
44957
|
/**
|
|
43994
|
-
*
|
|
44958
|
+
* <p>End time offset of the recognized segment, in seconds.</p>
|
|
43995
44959
|
* @type {number || null}
|
|
43996
44960
|
*/
|
|
43997
44961
|
this.EndTimeOffset = null;
|
|
43998
44962
|
|
|
43999
44963
|
/**
|
|
44000
|
-
*
|
|
44964
|
+
* <p>Recognized text.</p>
|
|
44001
44965
|
* @type {string || null}
|
|
44002
44966
|
*/
|
|
44003
44967
|
this.Text = null;
|
|
44004
44968
|
|
|
44005
44969
|
/**
|
|
44006
|
-
*
|
|
44970
|
+
* <p>Translated text.</p>
|
|
44007
44971
|
* @type {string || null}
|
|
44008
44972
|
*/
|
|
44009
44973
|
this.Trans = null;
|
|
44010
44974
|
|
|
44011
44975
|
/**
|
|
44012
|
-
* Word timestamp information
|
|
44976
|
+
* <p>Word timestamp information.</p>
|
|
44013
44977
|
* @type {Array.<WordResult> || null}
|
|
44014
44978
|
*/
|
|
44015
44979
|
this.Wordlist = null;
|
|
@@ -44233,6 +45197,7 @@ module.exports = {
|
|
|
44233
45197
|
ExtractBlindWatermarkTask: ExtractBlindWatermarkTask,
|
|
44234
45198
|
AiReviewTaskProhibitedAsrResult: AiReviewTaskProhibitedAsrResult,
|
|
44235
45199
|
AdaptiveDynamicStreamingTemplate: AdaptiveDynamicStreamingTemplate,
|
|
45200
|
+
CustomVariable: CustomVariable,
|
|
44236
45201
|
AiAnalysisTaskReelOutput: AiAnalysisTaskReelOutput,
|
|
44237
45202
|
MediaAiAnalysisDescriptionItem: MediaAiAnalysisDescriptionItem,
|
|
44238
45203
|
DeleteAnimatedGraphicsTemplateResponse: DeleteAnimatedGraphicsTemplateResponse,
|
|
@@ -44246,6 +45211,7 @@ module.exports = {
|
|
|
44246
45211
|
ManageTaskResponse: ManageTaskResponse,
|
|
44247
45212
|
DeleteWorkflowRequest: DeleteWorkflowRequest,
|
|
44248
45213
|
AwsS3FileUploadTrigger: AwsS3FileUploadTrigger,
|
|
45214
|
+
SubtitleArea: SubtitleArea,
|
|
44249
45215
|
MediaSnapshotByTimeOffsetItem: MediaSnapshotByTimeOffsetItem,
|
|
44250
45216
|
NumberFormat: NumberFormat,
|
|
44251
45217
|
ModifySampleSnapshotTemplateRequest: ModifySampleSnapshotTemplateRequest,
|
|
@@ -44300,6 +45266,7 @@ module.exports = {
|
|
|
44300
45266
|
AiRecognitionTaskInput: AiRecognitionTaskInput,
|
|
44301
45267
|
SmartSubtitleTaskTextResultOutput: SmartSubtitleTaskTextResultOutput,
|
|
44302
45268
|
AiAnalysisTaskFrameTagResult: AiAnalysisTaskFrameTagResult,
|
|
45269
|
+
VoiceUpdateFields: VoiceUpdateFields,
|
|
44303
45270
|
AudioTemplateInfo: AudioTemplateInfo,
|
|
44304
45271
|
DescribeBatchTaskDetailResponse: DescribeBatchTaskDetailResponse,
|
|
44305
45272
|
CoverConfigureInfo: CoverConfigureInfo,
|
|
@@ -44308,6 +45275,7 @@ module.exports = {
|
|
|
44308
45275
|
AiReviewPornAsrTaskInput: AiReviewPornAsrTaskInput,
|
|
44309
45276
|
AiRecognitionTaskFaceResult: AiRecognitionTaskFaceResult,
|
|
44310
45277
|
CreateAdaptiveDynamicStreamingTemplateRequest: CreateAdaptiveDynamicStreamingTemplateRequest,
|
|
45278
|
+
LLMDetectionResultItem: LLMDetectionResultItem,
|
|
44311
45279
|
CreateProcessImageTemplateResponse: CreateProcessImageTemplateResponse,
|
|
44312
45280
|
TerrorismImgReviewTemplateInfoForUpdate: TerrorismImgReviewTemplateInfoForUpdate,
|
|
44313
45281
|
ModifyTranscodeTemplateRequest: ModifyTranscodeTemplateRequest,
|
|
@@ -44338,6 +45306,7 @@ module.exports = {
|
|
|
44338
45306
|
AudioSeparateConfig: AudioSeparateConfig,
|
|
44339
45307
|
DeleteAIRecognitionTemplateRequest: DeleteAIRecognitionTemplateRequest,
|
|
44340
45308
|
AigcAudioOutputAudioInfo: AigcAudioOutputAudioInfo,
|
|
45309
|
+
UpdateVoiceRequest: UpdateVoiceRequest,
|
|
44341
45310
|
AiAnalysisTaskCoverResult: AiAnalysisTaskCoverResult,
|
|
44342
45311
|
AudioBeautifyConfig: AudioBeautifyConfig,
|
|
44343
45312
|
EnableWorkflowRequest: EnableWorkflowRequest,
|
|
@@ -44396,6 +45365,7 @@ module.exports = {
|
|
|
44396
45365
|
Speakers: Speakers,
|
|
44397
45366
|
FaceConfigureInfo: FaceConfigureInfo,
|
|
44398
45367
|
DescribeSmartEraseTemplatesRequest: DescribeSmartEraseTemplatesRequest,
|
|
45368
|
+
UpdateVoiceResponse: UpdateVoiceResponse,
|
|
44399
45369
|
PoliticalAsrReviewTemplateInfoForUpdate: PoliticalAsrReviewTemplateInfoForUpdate,
|
|
44400
45370
|
AiSampleFaceOperation: AiSampleFaceOperation,
|
|
44401
45371
|
SvgWatermarkInputForUpdate: SvgWatermarkInputForUpdate,
|
|
@@ -44407,6 +45377,7 @@ module.exports = {
|
|
|
44407
45377
|
CreateAigcImageTaskResponse: CreateAigcImageTaskResponse,
|
|
44408
45378
|
ComposeVideoStream: ComposeVideoStream,
|
|
44409
45379
|
LiveSmartSubtitleResult: LiveSmartSubtitleResult,
|
|
45380
|
+
LLMDetectionIssue: LLMDetectionIssue,
|
|
44410
45381
|
ProhibitedAsrReviewTemplateInfoForUpdate: ProhibitedAsrReviewTemplateInfoForUpdate,
|
|
44411
45382
|
AiAnalysisTaskCutoutInput: AiAnalysisTaskCutoutInput,
|
|
44412
45383
|
ModifyAnimatedGraphicsTemplateResponse: ModifyAnimatedGraphicsTemplateResponse,
|
|
@@ -44422,6 +45393,7 @@ module.exports = {
|
|
|
44422
45393
|
DeleteAIAnalysisTemplateRequest: DeleteAIAnalysisTemplateRequest,
|
|
44423
45394
|
EditMediaRequest: EditMediaRequest,
|
|
44424
45395
|
PureSubtitleTransResultOutput: PureSubtitleTransResultOutput,
|
|
45396
|
+
DeleteVoiceRequest: DeleteVoiceRequest,
|
|
44425
45397
|
DeleteAsrHotwordsRequest: DeleteAsrHotwordsRequest,
|
|
44426
45398
|
S3InputInfo: S3InputInfo,
|
|
44427
45399
|
MediaProcessTaskImageSpriteResult: MediaProcessTaskImageSpriteResult,
|
|
@@ -44555,7 +45527,7 @@ module.exports = {
|
|
|
44555
45527
|
ComposeMediaItem: ComposeMediaItem,
|
|
44556
45528
|
AdvancedSuperResolutionConfig: AdvancedSuperResolutionConfig,
|
|
44557
45529
|
BlindWatermarkTemplate: BlindWatermarkTemplate,
|
|
44558
|
-
|
|
45530
|
+
DetectVideoSubtitleAreaRequest: DetectVideoSubtitleAreaRequest,
|
|
44559
45531
|
DescribePersonSamplesRequest: DescribePersonSamplesRequest,
|
|
44560
45532
|
EnableScheduleResponse: EnableScheduleResponse,
|
|
44561
45533
|
SecurityGroupInfo: SecurityGroupInfo,
|
|
@@ -44589,6 +45561,7 @@ module.exports = {
|
|
|
44589
45561
|
AiReviewTerrorismOcrTaskOutput: AiReviewTerrorismOcrTaskOutput,
|
|
44590
45562
|
DescribeAsrHotwordsListResponse: DescribeAsrHotwordsListResponse,
|
|
44591
45563
|
AiAnalysisResult: AiAnalysisResult,
|
|
45564
|
+
AiReviewPoliticalOcrTaskOutput: AiReviewPoliticalOcrTaskOutput,
|
|
44592
45565
|
BlindWatermarkInput: BlindWatermarkInput,
|
|
44593
45566
|
DescribeBlindWatermarkTemplatesResponse: DescribeBlindWatermarkTemplatesResponse,
|
|
44594
45567
|
ImageWatermarkInputForUpdate: ImageWatermarkInputForUpdate,
|
|
@@ -44654,6 +45627,7 @@ module.exports = {
|
|
|
44654
45627
|
SmartSubtitleTaskAsrFullTextResultOutput: SmartSubtitleTaskAsrFullTextResultOutput,
|
|
44655
45628
|
TerrorismOcrReviewTemplateInfo: TerrorismOcrReviewTemplateInfo,
|
|
44656
45629
|
ExtractBlindWatermarkTaskConfig: ExtractBlindWatermarkTaskConfig,
|
|
45630
|
+
DetectVideoSubtitleAreaResponse: DetectVideoSubtitleAreaResponse,
|
|
44657
45631
|
RecognizeAudioSentence: RecognizeAudioSentence,
|
|
44658
45632
|
SharpEnhanceConfig: SharpEnhanceConfig,
|
|
44659
45633
|
ImageEncodeConfig: ImageEncodeConfig,
|
|
@@ -44693,6 +45667,7 @@ module.exports = {
|
|
|
44693
45667
|
CreateAIAnalysisTemplateResponse: CreateAIAnalysisTemplateResponse,
|
|
44694
45668
|
CreateSmartEraseTemplateResponse: CreateSmartEraseTemplateResponse,
|
|
44695
45669
|
MediaProcessTaskSampleSnapshotResult: MediaProcessTaskSampleSnapshotResult,
|
|
45670
|
+
DetectVideoWatermarkRequest: DetectVideoWatermarkRequest,
|
|
44696
45671
|
ModifySmartSubtitleTemplateResponse: ModifySmartSubtitleTemplateResponse,
|
|
44697
45672
|
UserDefineConfigureInfoForUpdate: UserDefineConfigureInfoForUpdate,
|
|
44698
45673
|
S3OutputStorage: S3OutputStorage,
|
|
@@ -44766,6 +45741,7 @@ module.exports = {
|
|
|
44766
45741
|
OcrFullTextConfigureInfoForUpdate: OcrFullTextConfigureInfoForUpdate,
|
|
44767
45742
|
SubtitleLayoutConfig: SubtitleLayoutConfig,
|
|
44768
45743
|
AiRecognitionTaskOcrFullTextResultInput: AiRecognitionTaskOcrFullTextResultInput,
|
|
45744
|
+
VoiceProfile: VoiceProfile,
|
|
44769
45745
|
SubtitleOutlineConfig: SubtitleOutlineConfig,
|
|
44770
45746
|
DescribeTasksResponse: DescribeTasksResponse,
|
|
44771
45747
|
AiRecognitionTaskFaceResultInput: AiRecognitionTaskFaceResultInput,
|
|
@@ -44829,6 +45805,7 @@ module.exports = {
|
|
|
44829
45805
|
DeleteSubtitleEmbedTemplateResponse: DeleteSubtitleEmbedTemplateResponse,
|
|
44830
45806
|
DescribeTranscodeTemplatesRequest: DescribeTranscodeTemplatesRequest,
|
|
44831
45807
|
DescribeSmartSubtitleTemplatesResponse: DescribeSmartSubtitleTemplatesResponse,
|
|
45808
|
+
LLMDetectionReport: LLMDetectionReport,
|
|
44832
45809
|
DescribeUsageDataRequest: DescribeUsageDataRequest,
|
|
44833
45810
|
SchedulesInfo: SchedulesInfo,
|
|
44834
45811
|
DisableWorkflowRequest: DisableWorkflowRequest,
|
|
@@ -44867,6 +45844,7 @@ module.exports = {
|
|
|
44867
45844
|
AiReviewTaskPornAsrResult: AiReviewTaskPornAsrResult,
|
|
44868
45845
|
EditMediaFileInfo: EditMediaFileInfo,
|
|
44869
45846
|
ComposeAudioStream: ComposeAudioStream,
|
|
45847
|
+
DetectVideoWatermarkResponse: DetectVideoWatermarkResponse,
|
|
44870
45848
|
SmartSubtitleTaskTransTextSegmentItem: SmartSubtitleTaskTransTextSegmentItem,
|
|
44871
45849
|
DescribeVoicesRequest: DescribeVoicesRequest,
|
|
44872
45850
|
LiveAiParagraphInfo: LiveAiParagraphInfo,
|
|
@@ -44874,7 +45852,8 @@ module.exports = {
|
|
|
44874
45852
|
PornImgReviewTemplateInfoForUpdate: PornImgReviewTemplateInfoForUpdate,
|
|
44875
45853
|
CreateWatermarkTemplateResponse: CreateWatermarkTemplateResponse,
|
|
44876
45854
|
DescribeStreamLinkSecurityGroupRequest: DescribeStreamLinkSecurityGroupRequest,
|
|
44877
|
-
|
|
45855
|
+
RecipeItem: RecipeItem,
|
|
45856
|
+
DeleteVoiceResponse: DeleteVoiceResponse,
|
|
44878
45857
|
OcrFullTextConfigureInfo: OcrFullTextConfigureInfo,
|
|
44879
45858
|
UpdateSmartErasePrivacyConfig: UpdateSmartErasePrivacyConfig,
|
|
44880
45859
|
TextTranslationResponse: TextTranslationResponse,
|
|
@@ -44885,6 +45864,7 @@ module.exports = {
|
|
|
44885
45864
|
DeleteSnapshotByTimeOffsetTemplateRequest: DeleteSnapshotByTimeOffsetTemplateRequest,
|
|
44886
45865
|
DescribeAnimatedGraphicsTemplatesResponse: DescribeAnimatedGraphicsTemplatesResponse,
|
|
44887
45866
|
MediaAiAnalysisFrameTagItem: MediaAiAnalysisFrameTagItem,
|
|
45867
|
+
TerrorismConfigureInfoForUpdate: TerrorismConfigureInfoForUpdate,
|
|
44888
45868
|
ActivityResItem: ActivityResItem,
|
|
44889
45869
|
LiveActivityResItem: LiveActivityResItem,
|
|
44890
45870
|
UpdateSmartEraseSubtitleConfig: UpdateSmartEraseSubtitleConfig,
|
|
@@ -44903,6 +45883,7 @@ module.exports = {
|
|
|
44903
45883
|
SampleSnapshotTemplate: SampleSnapshotTemplate,
|
|
44904
45884
|
SubtitleEmbedTemplateItem: SubtitleEmbedTemplateItem,
|
|
44905
45885
|
MediaImageSpriteItem: MediaImageSpriteItem,
|
|
45886
|
+
AiPosterSuiteConfig: AiPosterSuiteConfig,
|
|
44906
45887
|
AudioEnhanceConfig: AudioEnhanceConfig,
|
|
44907
45888
|
AiRecognitionTaskFaceResultItem: AiRecognitionTaskFaceResultItem,
|
|
44908
45889
|
AiAnalysisTaskDescriptionInput: AiAnalysisTaskDescriptionInput,
|