tencentcloud-sdk-nodejs-intl-en 3.0.1080 → 3.0.1082

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.
@@ -1008,6 +1008,56 @@ class ProcessLiveStreamResponse extends AbstractModel {
1008
1008
  }
1009
1009
  }
1010
1010
 
1011
+ /**
1012
+ * DescribeLiveRecordTemplates response structure.
1013
+ * @class
1014
+ */
1015
+ class DescribeLiveRecordTemplatesResponse extends AbstractModel {
1016
+ constructor(){
1017
+ super();
1018
+
1019
+ /**
1020
+ * Total number of records that meet filter conditions.
1021
+ * @type {number || null}
1022
+ */
1023
+ this.TotalCount = null;
1024
+
1025
+ /**
1026
+ * Recording template details list.
1027
+ * @type {Array.<LiveRecordTemplate> || null}
1028
+ */
1029
+ this.LiveRecordTemplateSet = null;
1030
+
1031
+ /**
1032
+ * 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.
1033
+ * @type {string || null}
1034
+ */
1035
+ this.RequestId = null;
1036
+
1037
+ }
1038
+
1039
+ /**
1040
+ * @private
1041
+ */
1042
+ deserialize(params) {
1043
+ if (!params) {
1044
+ return;
1045
+ }
1046
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
1047
+
1048
+ if (params.LiveRecordTemplateSet) {
1049
+ this.LiveRecordTemplateSet = new Array();
1050
+ for (let z in params.LiveRecordTemplateSet) {
1051
+ let obj = new LiveRecordTemplate();
1052
+ obj.deserialize(params.LiveRecordTemplateSet[z]);
1053
+ this.LiveRecordTemplateSet.push(obj);
1054
+ }
1055
+ }
1056
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
1057
+
1058
+ }
1059
+ }
1060
+
1011
1061
  /**
1012
1062
  * The information of intelligently generated highlight segments.
1013
1063
  * @class
@@ -1072,6 +1122,34 @@ class MediaAiAnalysisHighlightItem extends AbstractModel {
1072
1122
  }
1073
1123
  }
1074
1124
 
1125
+ /**
1126
+ * DeleteLiveRecordTemplate request structure.
1127
+ * @class
1128
+ */
1129
+ class DeleteLiveRecordTemplateRequest extends AbstractModel {
1130
+ constructor(){
1131
+ super();
1132
+
1133
+ /**
1134
+ * Unique identifier of the recording template.
1135
+ * @type {number || null}
1136
+ */
1137
+ this.Definition = null;
1138
+
1139
+ }
1140
+
1141
+ /**
1142
+ * @private
1143
+ */
1144
+ deserialize(params) {
1145
+ if (!params) {
1146
+ return;
1147
+ }
1148
+ this.Definition = 'Definition' in params ? params.Definition : null;
1149
+
1150
+ }
1151
+ }
1152
+
1075
1153
  /**
1076
1154
  * DescribeAnimatedGraphicsTemplates request structure.
1077
1155
  * @class
@@ -7001,6 +7079,84 @@ class PornAsrReviewTemplateInfoForUpdate extends AbstractModel {
7001
7079
  }
7002
7080
  }
7003
7081
 
7082
+ /**
7083
+ * Live recording template details
7084
+ * @class
7085
+ */
7086
+ class LiveRecordTemplate extends AbstractModel {
7087
+ constructor(){
7088
+ super();
7089
+
7090
+ /**
7091
+ * Specifies the recording template unique identifier.
7092
+ * @type {number || null}
7093
+ */
7094
+ this.Definition = null;
7095
+
7096
+ /**
7097
+ * HLS configuration parameters
7098
+ * @type {HLSConfigureInfo || null}
7099
+ */
7100
+ this.HLSConfigure = null;
7101
+
7102
+ /**
7103
+ * Recording template name.
7104
+ * @type {string || null}
7105
+ */
7106
+ this.Name = null;
7107
+
7108
+ /**
7109
+ * Template description.
7110
+
7111
+ * @type {string || null}
7112
+ */
7113
+ this.Comment = null;
7114
+
7115
+ /**
7116
+ * Template type. Valid values:
7117
+ <li>Preset: system-preset template;</li>
7118
+ <li>Custom: Custom template.</li>
7119
+ * @type {string || null}
7120
+ */
7121
+ this.Type = null;
7122
+
7123
+ /**
7124
+ * Creation time of a template in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
7125
+ * @type {string || null}
7126
+ */
7127
+ this.CreateTime = null;
7128
+
7129
+ /**
7130
+ * Last modified time of a template in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
7131
+ * @type {string || null}
7132
+ */
7133
+ this.UpdateTime = null;
7134
+
7135
+ }
7136
+
7137
+ /**
7138
+ * @private
7139
+ */
7140
+ deserialize(params) {
7141
+ if (!params) {
7142
+ return;
7143
+ }
7144
+ this.Definition = 'Definition' in params ? params.Definition : null;
7145
+
7146
+ if (params.HLSConfigure) {
7147
+ let obj = new HLSConfigureInfo();
7148
+ obj.deserialize(params.HLSConfigure)
7149
+ this.HLSConfigure = obj;
7150
+ }
7151
+ this.Name = 'Name' in params ? params.Name : null;
7152
+ this.Comment = 'Comment' in params ? params.Comment : null;
7153
+ this.Type = 'Type' in params ? params.Type : null;
7154
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
7155
+ this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
7156
+
7157
+ }
7158
+ }
7159
+
7004
7160
  /**
7005
7161
  * DescribeSnapshotByTimeOffsetTemplates request structure.
7006
7162
  * @class
@@ -13576,288 +13732,307 @@ If this parameter is left empty or 0 is entered, there will be no upper limit fo
13576
13732
  }
13577
13733
 
13578
13734
  /**
13579
- * Details of an animated image generating template.
13735
+ * Video stream configuration parameter
13580
13736
  * @class
13581
13737
  */
13582
- class AnimatedGraphicsTemplate extends AbstractModel {
13738
+ class VideoTemplateInfoForUpdate extends AbstractModel {
13583
13739
  constructor(){
13584
13740
  super();
13585
13741
 
13586
13742
  /**
13587
- * Unique ID of an animated image generating template.
13588
- * @type {number || null}
13743
+ * Encoding format for video streams. Optional values:
13744
+ <li>h264: H.264 encoding</li>
13745
+ <li>h265: H.265 encoding</li>
13746
+ <li>h266: H.266 encoding</li>
13747
+ <li>av1: AOMedia Video 1 encoding</li>
13748
+ <li>vp8: VP8 encoding</li>
13749
+ <li>vp9: VP9 encoding</li>
13750
+ <li>mpeg2: MPEG2 encoding</li>
13751
+ <li>dnxhd: DNxHD encoding</li>
13752
+ <li>mv-hevc: MV-HEVC encoding</li>
13753
+
13754
+ Note:
13755
+ AV1 encoding containers currently only support mp4, webm, and mkv.
13756
+ H.266 encoding containers currently only support mp4, hls, ts, and move.
13757
+ VP8 and VP9 encoding containers currently only support webm and mkv.
13758
+ MPEG2 and DNxHD encoding containers currently only support mxf.
13759
+ MV-HEVC encoding containers only support mp4, hls, and mov. Also, the hls format only supports mp4 segmentation format.
13760
+
13761
+ Note: This field may return null, indicating that no valid value can be obtained.
13762
+ * @type {string || null}
13589
13763
  */
13590
- this.Definition = null;
13764
+ this.Codec = null;
13591
13765
 
13592
13766
  /**
13593
- * Template type. Valid values:
13594
- <li>Preset: Preset template;</li>
13595
- <li>Custom: Custom template.</li>
13596
- * @type {string || null}
13767
+ * Video frame rate. Value range:
13768
+ When FpsDenominator is empty, the range is [0, 120], in Hz.
13769
+ When FpsDenominator is not empty, the Fps/FpsDenominator range is [0, 120].
13770
+ If the value is 0, the frame rate will be the same as that of the source video.Note: This field may return null, indicating that no valid values can be obtained.
13771
+ * @type {number || null}
13597
13772
  */
13598
- this.Type = null;
13773
+ this.Fps = null;
13599
13774
 
13600
13775
  /**
13601
- * Name of an animated image generating template.
13602
- * @type {string || null}
13776
+ * Bitrate of a video stream, in kbps. Value range: 0 and [128, 100000].If the value is 0, the bitrate of the video will be the same as that of the source video.Note: This field may return null, indicating that no valid values can be obtained.
13777
+ * @type {number || null}
13603
13778
  */
13604
- this.Name = null;
13779
+ this.Bitrate = null;
13605
13780
 
13606
13781
  /**
13607
- * Description of an animated image generating template.
13782
+ * Resolution adaption. Valid values:
13783
+ <li>open: Enabled. When resolution adaption is enabled, `Width` indicates the long side of a video, while `Height` indicates the short side.</li>
13784
+ <li>close: Disabled. When resolution adaption is disabled, `Width` indicates the width of a video, while `Height` indicates the height.</li>
13785
+ Note: When resolution adaption is enabled, `Width` cannot be smaller than `Height`.
13608
13786
  * @type {string || null}
13609
13787
  */
13610
- this.Comment = null;
13788
+ this.ResolutionAdaptive = null;
13611
13789
 
13612
13790
  /**
13613
- * Maximum value of the width (or long side) of an animated image in px. Value range: 0 and [128, 4,096].
13791
+ * Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].
13614
13792
  <li>If both `Width` and `Height` are 0, the resolution will be the same as that of the source video;</li>
13615
13793
  <li>If `Width` is 0, but `Height` is not 0, `Width` will be proportionally scaled;</li>
13616
13794
  <li>If `Width` is not 0, but `Height` is 0, `Height` will be proportionally scaled;</li>
13617
13795
  <li>If both `Width` and `Height` are not 0, the custom resolution will be used.</li>
13618
- Default value: 0.
13619
13796
  * @type {number || null}
13620
13797
  */
13621
13798
  this.Width = null;
13622
13799
 
13623
13800
  /**
13624
- * Maximum value of the height (or short side) of an animated image in px. Value range: 0 and [128, 4,096].
13625
- <li>If both `Width` and `Height` are 0, the resolution will be the same as that of the source video;</li>
13626
- <li>If `Width` is 0, but `Height` is not 0, `Width` will be proportionally scaled;</li>
13627
- <li>If `Width` is not 0, but `Height` is 0, `Height` will be proportionally scaled;</li>
13628
- <li>If both `Width` and `Height` are not 0, the custom resolution will be used.</li>
13629
- Default value: 0.
13801
+ * Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].
13630
13802
  * @type {number || null}
13631
13803
  */
13632
13804
  this.Height = null;
13633
13805
 
13634
13806
  /**
13635
- * Resolution adaption. Valid values:
13636
- <li>open: Enabled. In this case, `Width` represents the long side of a video, while `Height` the short side;</li>
13637
- <li>close: Disabled. In this case, `Width` represents the width of a video, while `Height` the height.</li>
13638
- Default value: open.
13639
- * @type {string || null}
13807
+ * Interval between I-frames (keyframes), which can be customized in frames or seconds. GOP value range: 0 and [1, 100000].
13808
+ If this parameter is 0, the system will automatically set the GOP length.
13809
+ Note: This field may return null, indicating that no valid value can be obtained.
13810
+ * @type {number || null}
13640
13811
  */
13641
- this.ResolutionAdaptive = null;
13812
+ this.Gop = null;
13642
13813
 
13643
13814
  /**
13644
- * Animated image format.
13815
+ * GOP value unit. Optional values:
13816
+ frame: indicates frame
13817
+ second: indicates second
13818
+ Default value: frame
13819
+ Note: This field may return null, indicating that no valid value can be obtained.
13645
13820
  * @type {string || null}
13646
13821
  */
13647
- this.Format = null;
13822
+ this.GopUnit = null;
13648
13823
 
13649
13824
  /**
13650
- * Frame rate.
13651
- * @type {number || null}
13825
+ * Fill type. "Fill" refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. Valid values:
13826
+ <li>stretch: Each frame is stretched to fill the entire screen, which may cause the transcoded video to be "flattened" or "stretched".</li>
13827
+ <li>black: Keep the image's original aspect ratio and fill the blank space with black bars.</li>
13828
+ <li>white: The aspect ratio of the video is kept unchanged, and the rest of the edges is filled with white.</li>
13829
+ <li>gauss: applies Gaussian blur to the uncovered area, without changing the image's aspect ratio.</li>
13830
+
13831
+ <li>smarttailor: Video images are smartly selected to ensure proportional image cropping.</li>
13832
+ Default value: black.
13833
+
13834
+ Note: This field may return null, indicating that no valid value can be obtained.
13835
+ * @type {string || null}
13652
13836
  */
13653
- this.Fps = null;
13837
+ this.FillType = null;
13654
13838
 
13655
13839
  /**
13656
- * Image quality.
13840
+ * The control factor of video constant bitrate. Value range: [0, 51]. If not specified, it means "auto". It is recommended not to specify this parameter unless necessary.
13841
+ When the Mode parameter is set to VBR, if the Vcrf value is also configured, MPS will process the video in VBR mode, considering both Vcrf and Bitrate parameters to balance video quality, bitrate, transcoding efficiency, and file size.
13842
+ When the Mode parameter is set to CRF, the Bitrate setting will be invalid, and the encoding will be based on the Vcrf value.
13843
+ When the Mode parameter is set to ABR or CBR, the Vcrf value does not need to be configured.
13844
+ Note: When you need to set it to auto, fill in 100.
13845
+
13846
+ Note: This field may return null, indicating that no valid value can be obtained.
13657
13847
  * @type {number || null}
13658
13848
  */
13659
- this.Quality = null;
13849
+ this.Vcrf = null;
13660
13850
 
13661
13851
  /**
13662
- * Creation time of a template in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
13663
- * @type {string || null}
13852
+ * Whether to enable adaptive encoding. Valid values:
13853
+ <li>0: Disable</li>
13854
+ <li>1: Enable</li>
13855
+ Default value: 0. If this parameter is set to `1`, multiple streams with different resolutions and bitrates will be generated automatically. The highest resolution, bitrate, and quality of the streams are determined by the values of `width` and `height`, `Bitrate`, and `Vcrf` in `VideoTemplate` respectively. If these parameters are not set in `VideoTemplate`, the highest resolution generated will be the same as that of the source video, and the highest video quality will be close to VMAF 95. To use this parameter or learn about the billing details of adaptive encoding, please contact your sales rep.
13856
+ * @type {number || null}
13664
13857
  */
13665
- this.CreateTime = null;
13858
+ this.ContentAdaptStream = null;
13666
13859
 
13667
13860
  /**
13668
- * Last modified time of a template in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
13669
- * @type {string || null}
13861
+ * Average segment duration. Value range: (0-10], unit: second
13862
+ Default value: 10
13863
+ Note: It is used only in the format of HLS.
13864
+ Note: This field may return null, indicating that no valid value can be obtained.
13865
+ * @type {number || null}
13670
13866
  */
13671
- this.UpdateTime = null;
13672
-
13673
- }
13674
-
13675
- /**
13676
- * @private
13677
- */
13678
- deserialize(params) {
13679
- if (!params) {
13680
- return;
13681
- }
13682
- this.Definition = 'Definition' in params ? params.Definition : null;
13683
- this.Type = 'Type' in params ? params.Type : null;
13684
- this.Name = 'Name' in params ? params.Name : null;
13685
- this.Comment = 'Comment' in params ? params.Comment : null;
13686
- this.Width = 'Width' in params ? params.Width : null;
13687
- this.Height = 'Height' in params ? params.Height : null;
13688
- this.ResolutionAdaptive = 'ResolutionAdaptive' in params ? params.ResolutionAdaptive : null;
13689
- this.Format = 'Format' in params ? params.Format : null;
13690
- this.Fps = 'Fps' in params ? params.Fps : null;
13691
- this.Quality = 'Quality' in params ? params.Quality : null;
13692
- this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
13693
- this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
13694
-
13695
- }
13696
- }
13697
-
13698
- /**
13699
- * Input rule. If an uploaded video hits the rule, the workflow will be triggered.
13700
- * @class
13701
- */
13702
- class WorkflowTrigger extends AbstractModel {
13703
- constructor(){
13704
- super();
13867
+ this.HlsTime = null;
13705
13868
 
13706
13869
  /**
13707
- * The trigger type. Valid values:
13708
- <li>`CosFileUpload`: Tencent Cloud COS trigger.</li>
13709
- <li>`AwsS3FileUpload`: AWS S3 trigger. Currently, this type is only supported for transcoding tasks and schemes (not supported for workflows).</li>
13710
-
13870
+ * HLS segment type. Valid values:
13871
+ <li>0: HLS+TS segment</li>
13872
+ <li>2: HLS+TS byte range</li>
13873
+ <li>7: HLS+MP4 segment</li>
13874
+ <li>5: HLS+MP4 byte range</li>
13875
+ Default value: 0
13711
13876
 
13712
- * @type {string || null}
13877
+ Note: This field is used for normal/Top Speed Codec transcoding settings and does not apply to adaptive bitrate streaming. To configure the segment type for adaptive bitrate streaming, use the outer field.
13878
+ Note: This field may return null, indicating that no valid value can be obtained.
13879
+ * @type {number || null}
13713
13880
  */
13714
- this.Type = null;
13881
+ this.SegmentType = null;
13715
13882
 
13716
13883
  /**
13717
- * This parameter is required and valid when `Type` is `CosFileUpload`, indicating the COS trigger rule.
13884
+ * Denominator of the frame rate.
13885
+ Note: The value must be greater than 0.
13718
13886
  Note: This field may return null, indicating that no valid values can be obtained.
13719
- * @type {CosFileUploadTrigger || null}
13887
+ * @type {number || null}
13720
13888
  */
13721
- this.CosFileUploadTrigger = null;
13889
+ this.FpsDenominator = null;
13722
13890
 
13723
13891
  /**
13724
- * The AWS S3 trigger. This parameter is valid and required if `Type` is `AwsS3FileUpload`.
13725
-
13726
- Note: Currently, the key for the AWS S3 bucket, the trigger SQS queue, and the callback SQS queue must be the same.
13892
+ * 3D video splicing mode, which is only valid for MV-HEVC 3D videos. Valid values:
13893
+ <li>side_by_side: side-by-side view.</li>
13894
+ <li>top_bottom: top-bottom view.</li>
13895
+ Default value: side_by_side.
13727
13896
  Note: This field may return null, indicating that no valid values can be obtained.
13728
- * @type {AwsS3FileUploadTrigger || null}
13897
+ * @type {string || null}
13729
13898
  */
13730
- this.AwsS3FileUploadTrigger = null;
13731
-
13732
- }
13733
-
13734
- /**
13735
- * @private
13736
- */
13737
- deserialize(params) {
13738
- if (!params) {
13739
- return;
13740
- }
13741
- this.Type = 'Type' in params ? params.Type : null;
13742
-
13743
- if (params.CosFileUploadTrigger) {
13744
- let obj = new CosFileUploadTrigger();
13745
- obj.deserialize(params.CosFileUploadTrigger)
13746
- this.CosFileUploadTrigger = obj;
13747
- }
13748
-
13749
- if (params.AwsS3FileUploadTrigger) {
13750
- let obj = new AwsS3FileUploadTrigger();
13751
- obj.deserialize(params.AwsS3FileUploadTrigger)
13752
- this.AwsS3FileUploadTrigger = obj;
13753
- }
13899
+ this.Stereo3dType = null;
13754
13900
 
13755
- }
13756
- }
13901
+ /**
13902
+ * Profile, suitable for different scenarios.
13903
+ baseline: It only supports I/P-frames and non-interlaced scenarios, and is suitable for scenarios such as video calls and mobile videos.
13904
+ main: It offers I-frames, P-frames, and B-frames, and supports both interlaced and non-interlaced modes. It is mainly used in mainstream audio and video consumption products such as video players and streaming media transmission devices.
13905
+ high: the highest encoding level, with 8x8 prediction added to the main profile and support for custom quantification. It is widely used in scenarios such as Blu-ray storage and HDTV.
13906
+ default: automatic filling along with the original video
13757
13907
 
13758
- /**
13759
- * Live stream AI recognition results
13760
- * @class
13761
- */
13762
- class LiveStreamAiRecognitionResultInfo extends AbstractModel {
13763
- constructor(){
13764
- super();
13908
+ This configuration appears only when the encoding standard is set to H264. Default value: default
13909
+ Note: This field may return null, indicating that no valid value can be obtained.
13910
+ * @type {string || null}
13911
+ */
13912
+ this.VideoProfile = null;
13765
13913
 
13766
13914
  /**
13767
- * Content recognition result list.
13768
- * @type {Array.<LiveStreamAiRecognitionResultItem> || null}
13915
+ * Encoder level. Default value: auto ("")
13916
+ If the encoding standard is set to H264, the following options are supported: "", 1, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1, 4.2, 5, and 5.1.
13917
+ If the encoding standard is set to H265, the following options are supported: "", 1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2, and 8.5.
13918
+ Note: This field may return null, indicating that no valid value can be obtained.
13919
+ * @type {string || null}
13769
13920
  */
13770
- this.ResultSet = null;
13771
-
13772
- }
13773
-
13774
- /**
13775
- * @private
13776
- */
13777
- deserialize(params) {
13778
- if (!params) {
13779
- return;
13780
- }
13921
+ this.VideoLevel = null;
13781
13922
 
13782
- if (params.ResultSet) {
13783
- this.ResultSet = new Array();
13784
- for (let z in params.ResultSet) {
13785
- let obj = new LiveStreamAiRecognitionResultItem();
13786
- obj.deserialize(params.ResultSet[z]);
13787
- this.ResultSet.push(obj);
13788
- }
13789
- }
13923
+ /**
13924
+ * Maximum number of consecutive B-frames. The default is auto, and 0 - 16 and -1 are supported.
13925
+ Note:
13790
13926
 
13791
- }
13792
- }
13927
+ -1 indicates auto.
13928
+ Note: This field may return null, indicating that no valid value can be obtained.
13929
+ * @type {number || null}
13930
+ */
13931
+ this.Bframes = null;
13793
13932
 
13794
- /**
13795
- * The result of detecting sensitive information in live streaming videos.
13796
- * @class
13797
- */
13798
- class LiveStreamAiReviewImagePoliticalResult extends AbstractModel {
13799
- constructor(){
13800
- super();
13933
+ /**
13934
+ * Bitrate control mode. Optional values:
13935
+ VBR: variable bitrate. The output bitrate is adjusted based on the complexity of the video image, ensuring higher image quality. This mode is suitable for storage scenarios as well as applications with high image quality requirements.
13936
+ ABR: average bitrate. The average bitrate of the output video is kept stable to the greatest extent, but short-term bitrate fluctuations are allowed. This mode is suitable for scenarios where it is necessary to minimize the overall bitrate while a certain quality is maintained.
13937
+ CBR: constant bitrate. The output bitrate remains constant during the video encoding process, regardless of changes in image complexity. This mode is suitable for scenarios with strict network bandwidth requirements, such as live streaming.
13938
+ VCRF: constant rate factor. The video quality is controlled by setting a quality factor, achieving constant quality encoding of videos. The bitrate is automatically adjusted based on the complexity of the content. This mode is suitable for scenarios where maintaining a certain quality is desired.
13939
+ VBR is selected by default.
13940
+ Note: This field may return null, indicating that no valid value can be obtained.
13941
+ * @type {string || null}
13942
+ */
13943
+ this.Mode = null;
13801
13944
 
13802
13945
  /**
13803
- * Start PTS time of a suspected segment in seconds.
13804
- * @type {number || null}
13946
+ * Display aspect ratio. Optional values: [1:1, 2:1, default]
13947
+ Default value: default
13948
+ Note: This field may return null, indicating that no valid value can be obtained.
13949
+ * @type {string || null}
13805
13950
  */
13806
- this.StartPtsTime = null;
13951
+ this.Sar = null;
13807
13952
 
13808
13953
  /**
13809
- * End PTS time of a suspected segment in seconds.
13954
+ * Adaptive I-frame decision. When it is enabled, Media Processing Service will automatically identify transition points between different scenarios in the video (usually they are visually distinct frames, such as those of switching from one shot to another) and adaptively insert keyframes (I-frames) at these points to improve the random accessibility and encoding efficiency of the video. Optional values:
13955
+ 0: Disable the adaptive I-frame decision
13956
+ 1: Enable the adaptive I-frame decision
13957
+ Default value: 0
13958
+
13959
+ Note: This field may return null, indicating that no valid value can be obtained.
13810
13960
  * @type {number || null}
13811
13961
  */
13812
- this.EndPtsTime = null;
13962
+ this.NoScenecut = null;
13813
13963
 
13814
13964
  /**
13815
- * The confidence score for the detected sensitive segments.
13965
+ * Bit: 8/10 is supported. Default value: 8
13966
+ Note: This field may return null, indicating that no valid value can be obtained.
13816
13967
  * @type {number || null}
13817
13968
  */
13818
- this.Confidence = null;
13969
+ this.BitDepth = null;
13819
13970
 
13820
13971
  /**
13821
- * Suggestion for porn information detection of a suspected segment. Valid values:
13822
- <li>pass</li>
13823
- <li>review</li>
13824
- <li>block</li>
13825
- * @type {string || null}
13972
+ * Preservation of original timestamp. Optional values:
13973
+ 0: Disabled
13974
+ 1: Enabled
13975
+ Default value: Disabled
13976
+ Note: This field may return null, indicating that no valid value can be obtained.
13977
+ * @type {number || null}
13826
13978
  */
13827
- this.Suggestion = null;
13979
+ this.RawPts = null;
13828
13980
 
13829
13981
  /**
13830
- * The labels for the detected sensitive information. Valid values:
13831
- <li>politician</li>
13832
- <li>violation_photo (banned icons)</li>
13833
- * @type {string || null}
13982
+ * Proportional compression bitrate. When it is enabled, the bitrate of the output video will be adjusted according to the proportion. After the compression ratio is entered, the system will automatically calculate the target output bitrate based on the source video bitrate. Compression ratio range: 0-100, optional values: [0-100] and -1
13983
+ Note: -1 indicates auto.
13984
+ Note: This field may return null, indicating that no valid value can be obtained.
13985
+ * @type {number || null}
13834
13986
  */
13835
- this.Label = null;
13987
+ this.Compress = null;
13836
13988
 
13837
13989
  /**
13838
- * The name of a sensitive person or banned icon.
13839
- * @type {string || null}
13990
+ * Segment duration at startup.
13991
+ Note: This field may return null, indicating that no valid value can be obtained.
13992
+ * @type {SegmentSpecificInfo || null}
13840
13993
  */
13841
- this.Name = null;
13994
+ this.SegmentSpecificInfo = null;
13842
13995
 
13843
13996
  /**
13844
- * The pixel coordinates of the detected sensitive people or banned icons. The format is [x1, y1, x2, y2], which indicates the coordinates of the top-left and bottom-right corners.
13845
- * @type {Array.<number> || null}
13997
+ * Indicates whether to enable scenario-based settings for the template.
13998
+ 0: Disable.
13999
+ 1: enable
14000
+
14001
+ Default value: 0
14002
+
14003
+ Note: This value takes effect only when the value of this field is 1.
14004
+ Note: This field may return null, indicating that no valid value can be obtained.
14005
+ * @type {number || null}
13846
14006
  */
13847
- this.AreaCoordSet = null;
14007
+ this.ScenarioBased = null;
13848
14008
 
13849
14009
  /**
13850
- * URL of a suspected image (which will not be permanently stored
13851
- and will be deleted after `PicUrlExpireTime`).
14010
+ * Video scenario. Valid values:
14011
+ normal: General transcoding scenario: General transcoding and compression scenario. pgc: PGC HD film and television: Emphasis is placed on the viewing experience of films and TV shows during compression, with ROI encoding based on the characteristics of films and TV shows, while maintaining high-quality video and audio content.
14012
+ materials_video: HD materials: Scenario involving material resources, where requirements for image quality are extremely high and there are many transparent images, with almost no visual loss during compression.
14013
+ ugc: UGC content: It is suitable for a wide range of UGC/short video scenarios, with an optimized encoding bitrate for short video characteristics, improved image quality, and enhanced business QOS/QOE metrics.
14014
+ e-commerce_video: Fashion show/e-commerce: At the time of compression, emphasis is placed on detail clarity and ROI enhancement, with a particular focus on maintaining the image quality of the face region.
14015
+ educational_video: Education: At the time of compression, emphasis is placed on the clarity and readability of text and images to help students better understand the content, ensuring that the teaching content is clearly conveyed.
14016
+ Default value: normal.
14017
+ Note: To use this value, the value of ScenarioBased must be 1; otherwise, this value will not take effect.
14018
+ Note: This field may return null, indicating that no valid value can be obtained.
13852
14019
  * @type {string || null}
13853
14020
  */
13854
- this.Url = null;
14021
+ this.SceneType = null;
13855
14022
 
13856
14023
  /**
13857
- * Expiration time of a suspected image URL in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
14024
+ * Transcoding policy. Valid values:
14025
+ ultra_compress: Extreme compression: Compared to standard compression, this policy can maximize bitrate compression while ensuring a certain level of image quality, thus greatly saving bandwidth and storage costs.
14026
+ standard_compress: Comprehensively optimal: Balances compression ratio and image quality, compressing files as much as possible without a noticeable reduction in subjective image quality. This policy only charges audio and video TSC transcoding fees.
14027
+ high_compress: Bitrate priority: Prioritizes reducing file size, which may result in some image quality loss. This policy only charges audio and video TSC transcoding fees.
14028
+ low_compress: Image quality priority: Prioritizes ensuring image quality, and the size of compressed files may be relatively large. This policy only charges audio and video TSC transcoding fees.
14029
+ Default value: standard_compress.
14030
+ Note: If you need to watch videos on TV, it is recommended not to use the ultra_compress policy. The billing standard for the ultra_compress policy is TSC transcoding + audio and video enhancement - artifacts removal.
14031
+ Note: To use this value, the value of ScenarioBased must be 1; otherwise, this value will not take effect.
14032
+ Note: This field may return null, indicating that no valid value can be obtained.
13858
14033
  * @type {string || null}
13859
14034
  */
13860
- this.PicUrlExpireTime = null;
14035
+ this.CompressType = null;
13861
14036
 
13862
14037
  }
13863
14038
 
@@ -13868,46 +14043,137 @@ and will be deleted after `PicUrlExpireTime`).
13868
14043
  if (!params) {
13869
14044
  return;
13870
14045
  }
13871
- this.StartPtsTime = 'StartPtsTime' in params ? params.StartPtsTime : null;
13872
- this.EndPtsTime = 'EndPtsTime' in params ? params.EndPtsTime : null;
13873
- this.Confidence = 'Confidence' in params ? params.Confidence : null;
13874
- this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
13875
- this.Label = 'Label' in params ? params.Label : null;
13876
- this.Name = 'Name' in params ? params.Name : null;
13877
- this.AreaCoordSet = 'AreaCoordSet' in params ? params.AreaCoordSet : null;
13878
- this.Url = 'Url' in params ? params.Url : null;
13879
- this.PicUrlExpireTime = 'PicUrlExpireTime' in params ? params.PicUrlExpireTime : null;
14046
+ this.Codec = 'Codec' in params ? params.Codec : null;
14047
+ this.Fps = 'Fps' in params ? params.Fps : null;
14048
+ this.Bitrate = 'Bitrate' in params ? params.Bitrate : null;
14049
+ this.ResolutionAdaptive = 'ResolutionAdaptive' in params ? params.ResolutionAdaptive : null;
14050
+ this.Width = 'Width' in params ? params.Width : null;
14051
+ this.Height = 'Height' in params ? params.Height : null;
14052
+ this.Gop = 'Gop' in params ? params.Gop : null;
14053
+ this.GopUnit = 'GopUnit' in params ? params.GopUnit : null;
14054
+ this.FillType = 'FillType' in params ? params.FillType : null;
14055
+ this.Vcrf = 'Vcrf' in params ? params.Vcrf : null;
14056
+ this.ContentAdaptStream = 'ContentAdaptStream' in params ? params.ContentAdaptStream : null;
14057
+ this.HlsTime = 'HlsTime' in params ? params.HlsTime : null;
14058
+ this.SegmentType = 'SegmentType' in params ? params.SegmentType : null;
14059
+ this.FpsDenominator = 'FpsDenominator' in params ? params.FpsDenominator : null;
14060
+ this.Stereo3dType = 'Stereo3dType' in params ? params.Stereo3dType : null;
14061
+ this.VideoProfile = 'VideoProfile' in params ? params.VideoProfile : null;
14062
+ this.VideoLevel = 'VideoLevel' in params ? params.VideoLevel : null;
14063
+ this.Bframes = 'Bframes' in params ? params.Bframes : null;
14064
+ this.Mode = 'Mode' in params ? params.Mode : null;
14065
+ this.Sar = 'Sar' in params ? params.Sar : null;
14066
+ this.NoScenecut = 'NoScenecut' in params ? params.NoScenecut : null;
14067
+ this.BitDepth = 'BitDepth' in params ? params.BitDepth : null;
14068
+ this.RawPts = 'RawPts' in params ? params.RawPts : null;
14069
+ this.Compress = 'Compress' in params ? params.Compress : null;
14070
+
14071
+ if (params.SegmentSpecificInfo) {
14072
+ let obj = new SegmentSpecificInfo();
14073
+ obj.deserialize(params.SegmentSpecificInfo)
14074
+ this.SegmentSpecificInfo = obj;
14075
+ }
14076
+ this.ScenarioBased = 'ScenarioBased' in params ? params.ScenarioBased : null;
14077
+ this.SceneType = 'SceneType' in params ? params.SceneType : null;
14078
+ this.CompressType = 'CompressType' in params ? params.CompressType : null;
13880
14079
 
13881
14080
  }
13882
14081
  }
13883
14082
 
13884
14083
  /**
13885
- * The parameters for detecting sensitive information based on OCR.
14084
+ * Details of an animated image generating template.
13886
14085
  * @class
13887
14086
  */
13888
- class TerrorismOcrReviewTemplateInfoForUpdate extends AbstractModel {
14087
+ class AnimatedGraphicsTemplate extends AbstractModel {
13889
14088
  constructor(){
13890
14089
  super();
13891
14090
 
13892
14091
  /**
13893
- * Whether to detect sensitive information based on OCR. Valid values:
13894
- <li>ON</li>
13895
- <li>OFF</li>
14092
+ * Unique ID of an animated image generating template.
14093
+ * @type {number || null}
14094
+ */
14095
+ this.Definition = null;
14096
+
14097
+ /**
14098
+ * Template type. Valid values:
14099
+ <li>Preset: Preset template;</li>
14100
+ <li>Custom: Custom template.</li>
13896
14101
  * @type {string || null}
13897
14102
  */
13898
- this.Switch = null;
14103
+ this.Type = null;
13899
14104
 
13900
14105
  /**
13901
- * Threshold score for violation. If this score is reached or exceeded during intelligent audit, it will be deemed that a suspected violation has occurred. If this parameter is left empty, 100 will be used by default. Value range: 0–100.
14106
+ * Name of an animated image generating template.
14107
+ * @type {string || null}
14108
+ */
14109
+ this.Name = null;
14110
+
14111
+ /**
14112
+ * Description of an animated image generating template.
14113
+ * @type {string || null}
14114
+ */
14115
+ this.Comment = null;
14116
+
14117
+ /**
14118
+ * Maximum value of the width (or long side) of an animated image in px. Value range: 0 and [128, 4,096].
14119
+ <li>If both `Width` and `Height` are 0, the resolution will be the same as that of the source video;</li>
14120
+ <li>If `Width` is 0, but `Height` is not 0, `Width` will be proportionally scaled;</li>
14121
+ <li>If `Width` is not 0, but `Height` is 0, `Height` will be proportionally scaled;</li>
14122
+ <li>If both `Width` and `Height` are not 0, the custom resolution will be used.</li>
14123
+ Default value: 0.
13902
14124
  * @type {number || null}
13903
14125
  */
13904
- this.BlockConfidence = null;
14126
+ this.Width = null;
13905
14127
 
13906
14128
  /**
13907
- * Threshold score for human audit. If this score is reached or exceeded during intelligent audit, human audit will be considered necessary. If this parameter is left empty, 75 will be used by default. Value range: 0–100.
14129
+ * Maximum value of the height (or short side) of an animated image in px. Value range: 0 and [128, 4,096].
14130
+ <li>If both `Width` and `Height` are 0, the resolution will be the same as that of the source video;</li>
14131
+ <li>If `Width` is 0, but `Height` is not 0, `Width` will be proportionally scaled;</li>
14132
+ <li>If `Width` is not 0, but `Height` is 0, `Height` will be proportionally scaled;</li>
14133
+ <li>If both `Width` and `Height` are not 0, the custom resolution will be used.</li>
14134
+ Default value: 0.
13908
14135
  * @type {number || null}
13909
14136
  */
13910
- this.ReviewConfidence = null;
14137
+ this.Height = null;
14138
+
14139
+ /**
14140
+ * Resolution adaption. Valid values:
14141
+ <li>open: Enabled. In this case, `Width` represents the long side of a video, while `Height` the short side;</li>
14142
+ <li>close: Disabled. In this case, `Width` represents the width of a video, while `Height` the height.</li>
14143
+ Default value: open.
14144
+ * @type {string || null}
14145
+ */
14146
+ this.ResolutionAdaptive = null;
14147
+
14148
+ /**
14149
+ * Animated image format.
14150
+ * @type {string || null}
14151
+ */
14152
+ this.Format = null;
14153
+
14154
+ /**
14155
+ * Frame rate.
14156
+ * @type {number || null}
14157
+ */
14158
+ this.Fps = null;
14159
+
14160
+ /**
14161
+ * Image quality.
14162
+ * @type {number || null}
14163
+ */
14164
+ this.Quality = null;
14165
+
14166
+ /**
14167
+ * Creation time of a template in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
14168
+ * @type {string || null}
14169
+ */
14170
+ this.CreateTime = null;
14171
+
14172
+ /**
14173
+ * Last modified time of a template in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
14174
+ * @type {string || null}
14175
+ */
14176
+ this.UpdateTime = null;
13911
14177
 
13912
14178
  }
13913
14179
 
@@ -13918,47 +14184,55 @@ class TerrorismOcrReviewTemplateInfoForUpdate extends AbstractModel {
13918
14184
  if (!params) {
13919
14185
  return;
13920
14186
  }
13921
- this.Switch = 'Switch' in params ? params.Switch : null;
13922
- this.BlockConfidence = 'BlockConfidence' in params ? params.BlockConfidence : null;
13923
- this.ReviewConfidence = 'ReviewConfidence' in params ? params.ReviewConfidence : null;
14187
+ this.Definition = 'Definition' in params ? params.Definition : null;
14188
+ this.Type = 'Type' in params ? params.Type : null;
14189
+ this.Name = 'Name' in params ? params.Name : null;
14190
+ this.Comment = 'Comment' in params ? params.Comment : null;
14191
+ this.Width = 'Width' in params ? params.Width : null;
14192
+ this.Height = 'Height' in params ? params.Height : null;
14193
+ this.ResolutionAdaptive = 'ResolutionAdaptive' in params ? params.ResolutionAdaptive : null;
14194
+ this.Format = 'Format' in params ? params.Format : null;
14195
+ this.Fps = 'Fps' in params ? params.Fps : null;
14196
+ this.Quality = 'Quality' in params ? params.Quality : null;
14197
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
14198
+ this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
13924
14199
 
13925
14200
  }
13926
14201
  }
13927
14202
 
13928
14203
  /**
13929
- * Control parameter of a custom speech audit task
14204
+ * Input rule. If an uploaded video hits the rule, the workflow will be triggered.
13930
14205
  * @class
13931
14206
  */
13932
- class UserDefineAsrTextReviewTemplateInfoForUpdate extends AbstractModel {
14207
+ class WorkflowTrigger extends AbstractModel {
13933
14208
  constructor(){
13934
14209
  super();
13935
14210
 
13936
14211
  /**
13937
- * Switch of a custom speech audit task. Valid values:
13938
- <li>ON: Enables a custom speech audit task;</li>
13939
- <li>OFF: Disables a custom speech audit task.</li>
14212
+ * The trigger type. Valid values:
14213
+ <li>`CosFileUpload`: Tencent Cloud COS trigger.</li>
14214
+ <li>`AwsS3FileUpload`: AWS S3 trigger. Currently, this type is only supported for transcoding tasks and schemes (not supported for workflows).</li>
14215
+
14216
+
13940
14217
  * @type {string || null}
13941
14218
  */
13942
- this.Switch = null;
14219
+ this.Type = null;
13943
14220
 
13944
14221
  /**
13945
- * Custom speech filter tag. If an audit result contains the selected tag, it will be returned; if the filter tag is empty, all audit results will be returned. To use the tag filtering feature, you need to add the corresponding tag when adding materials for custom speech keywords.
13946
- There can be up to 10 tags, each with a length limit of 16 characters.
13947
- * @type {Array.<string> || null}
14222
+ * This parameter is required and valid when `Type` is `CosFileUpload`, indicating the COS trigger rule.
14223
+ Note: This field may return null, indicating that no valid values can be obtained.
14224
+ * @type {CosFileUploadTrigger || null}
13948
14225
  */
13949
- this.LabelSet = null;
14226
+ this.CosFileUploadTrigger = null;
13950
14227
 
13951
14228
  /**
13952
- * Threshold score for violation. If this score is reached or exceeded during intelligent audit, it will be deemed that a suspected violation has occurred. Value range: 0-100.
13953
- * @type {number || null}
13954
- */
13955
- this.BlockConfidence = null;
14229
+ * The AWS S3 trigger. This parameter is valid and required if `Type` is `AwsS3FileUpload`.
13956
14230
 
13957
- /**
13958
- * Threshold score for human audit. If this score is reached or exceeded during intelligent audit, human audit will be considered necessary. Value range: 0-100.
13959
- * @type {number || null}
14231
+ Note: Currently, the key for the AWS S3 bucket, the trigger SQS queue, and the callback SQS queue must be the same.
14232
+ Note: This field may return null, indicating that no valid values can be obtained.
14233
+ * @type {AwsS3FileUploadTrigger || null}
13960
14234
  */
13961
- this.ReviewConfidence = null;
14235
+ this.AwsS3FileUploadTrigger = null;
13962
14236
 
13963
14237
  }
13964
14238
 
@@ -13969,27 +14243,36 @@ There can be up to 10 tags, each with a length limit of 16 characters.
13969
14243
  if (!params) {
13970
14244
  return;
13971
14245
  }
13972
- this.Switch = 'Switch' in params ? params.Switch : null;
13973
- this.LabelSet = 'LabelSet' in params ? params.LabelSet : null;
13974
- this.BlockConfidence = 'BlockConfidence' in params ? params.BlockConfidence : null;
13975
- this.ReviewConfidence = 'ReviewConfidence' in params ? params.ReviewConfidence : null;
14246
+ this.Type = 'Type' in params ? params.Type : null;
14247
+
14248
+ if (params.CosFileUploadTrigger) {
14249
+ let obj = new CosFileUploadTrigger();
14250
+ obj.deserialize(params.CosFileUploadTrigger)
14251
+ this.CosFileUploadTrigger = obj;
14252
+ }
14253
+
14254
+ if (params.AwsS3FileUploadTrigger) {
14255
+ let obj = new AwsS3FileUploadTrigger();
14256
+ obj.deserialize(params.AwsS3FileUploadTrigger)
14257
+ this.AwsS3FileUploadTrigger = obj;
14258
+ }
13976
14259
 
13977
14260
  }
13978
14261
  }
13979
14262
 
13980
14263
  /**
13981
- * ModifyImageSpriteTemplate response structure.
14264
+ * Live stream AI recognition results
13982
14265
  * @class
13983
14266
  */
13984
- class ModifyImageSpriteTemplateResponse extends AbstractModel {
14267
+ class LiveStreamAiRecognitionResultInfo extends AbstractModel {
13985
14268
  constructor(){
13986
14269
  super();
13987
14270
 
13988
14271
  /**
13989
- * 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.
13990
- * @type {string || null}
14272
+ * Content recognition result list.
14273
+ * @type {Array.<LiveStreamAiRecognitionResultItem> || null}
13991
14274
  */
13992
- this.RequestId = null;
14275
+ this.ResultSet = null;
13993
14276
 
13994
14277
  }
13995
14278
 
@@ -14000,50 +14283,272 @@ class ModifyImageSpriteTemplateResponse extends AbstractModel {
14000
14283
  if (!params) {
14001
14284
  return;
14002
14285
  }
14003
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
14286
+
14287
+ if (params.ResultSet) {
14288
+ this.ResultSet = new Array();
14289
+ for (let z in params.ResultSet) {
14290
+ let obj = new LiveStreamAiRecognitionResultItem();
14291
+ obj.deserialize(params.ResultSet[z]);
14292
+ this.ResultSet.push(obj);
14293
+ }
14294
+ }
14004
14295
 
14005
14296
  }
14006
14297
  }
14007
14298
 
14008
14299
  /**
14009
- * CreateWatermarkTemplate request structure.
14300
+ * The result of detecting sensitive information in live streaming videos.
14010
14301
  * @class
14011
14302
  */
14012
- class CreateWatermarkTemplateRequest extends AbstractModel {
14303
+ class LiveStreamAiReviewImagePoliticalResult extends AbstractModel {
14013
14304
  constructor(){
14014
14305
  super();
14015
14306
 
14016
14307
  /**
14017
- * Watermarking type. Valid values:
14018
- <li>image: Image watermark;</li>
14019
- <li>text: Text watermark;</li>
14020
- <li>svg: SVG watermark.</li>
14021
- * @type {string || null}
14308
+ * Start PTS time of a suspected segment in seconds.
14309
+ * @type {number || null}
14022
14310
  */
14023
- this.Type = null;
14311
+ this.StartPtsTime = null;
14024
14312
 
14025
14313
  /**
14026
- * Watermarking template name. Length limit: 64 characters.
14027
- * @type {string || null}
14314
+ * End PTS time of a suspected segment in seconds.
14315
+ * @type {number || null}
14028
14316
  */
14029
- this.Name = null;
14317
+ this.EndPtsTime = null;
14030
14318
 
14031
14319
  /**
14032
- * Template description. Length limit: 256 characters.
14320
+ * The confidence score for the detected sensitive segments.
14321
+ * @type {number || null}
14322
+ */
14323
+ this.Confidence = null;
14324
+
14325
+ /**
14326
+ * Suggestion for porn information detection of a suspected segment. Valid values:
14327
+ <li>pass</li>
14328
+ <li>review</li>
14329
+ <li>block</li>
14033
14330
  * @type {string || null}
14034
14331
  */
14035
- this.Comment = null;
14332
+ this.Suggestion = null;
14036
14333
 
14037
14334
  /**
14038
- * Origin position. Valid values:
14039
- <li>TopLeft: The origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text;</li>
14040
- <li>TopRight: The origin of coordinates is in the top-right corner of the video, and the origin of the watermark is in the top-right corner of the image or text;</li>
14041
- <li>BottomLeft: The origin of coordinates is in the bottom-left corner of the video, and the origin of the watermark is in the bottom-left corner of the image or text;</li>
14042
- <li>BottomRight: The origin of coordinates is in the bottom-right corner of the video, and the origin of the watermark is in the bottom-right corner of the image or text.</li>
14043
- Default value: TopLeft.
14335
+ * The labels for the detected sensitive information. Valid values:
14336
+ <li>politician</li>
14337
+ <li>violation_photo (banned icons)</li>
14044
14338
  * @type {string || null}
14045
14339
  */
14046
- this.CoordinateOrigin = null;
14340
+ this.Label = null;
14341
+
14342
+ /**
14343
+ * The name of a sensitive person or banned icon.
14344
+ * @type {string || null}
14345
+ */
14346
+ this.Name = null;
14347
+
14348
+ /**
14349
+ * The pixel coordinates of the detected sensitive people or banned icons. The format is [x1, y1, x2, y2], which indicates the coordinates of the top-left and bottom-right corners.
14350
+ * @type {Array.<number> || null}
14351
+ */
14352
+ this.AreaCoordSet = null;
14353
+
14354
+ /**
14355
+ * URL of a suspected image (which will not be permanently stored
14356
+ and will be deleted after `PicUrlExpireTime`).
14357
+ * @type {string || null}
14358
+ */
14359
+ this.Url = null;
14360
+
14361
+ /**
14362
+ * Expiration time of a suspected image URL in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
14363
+ * @type {string || null}
14364
+ */
14365
+ this.PicUrlExpireTime = null;
14366
+
14367
+ }
14368
+
14369
+ /**
14370
+ * @private
14371
+ */
14372
+ deserialize(params) {
14373
+ if (!params) {
14374
+ return;
14375
+ }
14376
+ this.StartPtsTime = 'StartPtsTime' in params ? params.StartPtsTime : null;
14377
+ this.EndPtsTime = 'EndPtsTime' in params ? params.EndPtsTime : null;
14378
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
14379
+ this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
14380
+ this.Label = 'Label' in params ? params.Label : null;
14381
+ this.Name = 'Name' in params ? params.Name : null;
14382
+ this.AreaCoordSet = 'AreaCoordSet' in params ? params.AreaCoordSet : null;
14383
+ this.Url = 'Url' in params ? params.Url : null;
14384
+ this.PicUrlExpireTime = 'PicUrlExpireTime' in params ? params.PicUrlExpireTime : null;
14385
+
14386
+ }
14387
+ }
14388
+
14389
+ /**
14390
+ * The parameters for detecting sensitive information based on OCR.
14391
+ * @class
14392
+ */
14393
+ class TerrorismOcrReviewTemplateInfoForUpdate extends AbstractModel {
14394
+ constructor(){
14395
+ super();
14396
+
14397
+ /**
14398
+ * Whether to detect sensitive information based on OCR. Valid values:
14399
+ <li>ON</li>
14400
+ <li>OFF</li>
14401
+ * @type {string || null}
14402
+ */
14403
+ this.Switch = null;
14404
+
14405
+ /**
14406
+ * Threshold score for violation. If this score is reached or exceeded during intelligent audit, it will be deemed that a suspected violation has occurred. If this parameter is left empty, 100 will be used by default. Value range: 0–100.
14407
+ * @type {number || null}
14408
+ */
14409
+ this.BlockConfidence = null;
14410
+
14411
+ /**
14412
+ * Threshold score for human audit. If this score is reached or exceeded during intelligent audit, human audit will be considered necessary. If this parameter is left empty, 75 will be used by default. Value range: 0–100.
14413
+ * @type {number || null}
14414
+ */
14415
+ this.ReviewConfidence = null;
14416
+
14417
+ }
14418
+
14419
+ /**
14420
+ * @private
14421
+ */
14422
+ deserialize(params) {
14423
+ if (!params) {
14424
+ return;
14425
+ }
14426
+ this.Switch = 'Switch' in params ? params.Switch : null;
14427
+ this.BlockConfidence = 'BlockConfidence' in params ? params.BlockConfidence : null;
14428
+ this.ReviewConfidence = 'ReviewConfidence' in params ? params.ReviewConfidence : null;
14429
+
14430
+ }
14431
+ }
14432
+
14433
+ /**
14434
+ * Control parameter of a custom speech audit task
14435
+ * @class
14436
+ */
14437
+ class UserDefineAsrTextReviewTemplateInfoForUpdate extends AbstractModel {
14438
+ constructor(){
14439
+ super();
14440
+
14441
+ /**
14442
+ * Switch of a custom speech audit task. Valid values:
14443
+ <li>ON: Enables a custom speech audit task;</li>
14444
+ <li>OFF: Disables a custom speech audit task.</li>
14445
+ * @type {string || null}
14446
+ */
14447
+ this.Switch = null;
14448
+
14449
+ /**
14450
+ * Custom speech filter tag. If an audit result contains the selected tag, it will be returned; if the filter tag is empty, all audit results will be returned. To use the tag filtering feature, you need to add the corresponding tag when adding materials for custom speech keywords.
14451
+ There can be up to 10 tags, each with a length limit of 16 characters.
14452
+ * @type {Array.<string> || null}
14453
+ */
14454
+ this.LabelSet = null;
14455
+
14456
+ /**
14457
+ * Threshold score for violation. If this score is reached or exceeded during intelligent audit, it will be deemed that a suspected violation has occurred. Value range: 0-100.
14458
+ * @type {number || null}
14459
+ */
14460
+ this.BlockConfidence = null;
14461
+
14462
+ /**
14463
+ * Threshold score for human audit. If this score is reached or exceeded during intelligent audit, human audit will be considered necessary. Value range: 0-100.
14464
+ * @type {number || null}
14465
+ */
14466
+ this.ReviewConfidence = null;
14467
+
14468
+ }
14469
+
14470
+ /**
14471
+ * @private
14472
+ */
14473
+ deserialize(params) {
14474
+ if (!params) {
14475
+ return;
14476
+ }
14477
+ this.Switch = 'Switch' in params ? params.Switch : null;
14478
+ this.LabelSet = 'LabelSet' in params ? params.LabelSet : null;
14479
+ this.BlockConfidence = 'BlockConfidence' in params ? params.BlockConfidence : null;
14480
+ this.ReviewConfidence = 'ReviewConfidence' in params ? params.ReviewConfidence : null;
14481
+
14482
+ }
14483
+ }
14484
+
14485
+ /**
14486
+ * ModifyImageSpriteTemplate response structure.
14487
+ * @class
14488
+ */
14489
+ class ModifyImageSpriteTemplateResponse extends AbstractModel {
14490
+ constructor(){
14491
+ super();
14492
+
14493
+ /**
14494
+ * 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.
14495
+ * @type {string || null}
14496
+ */
14497
+ this.RequestId = null;
14498
+
14499
+ }
14500
+
14501
+ /**
14502
+ * @private
14503
+ */
14504
+ deserialize(params) {
14505
+ if (!params) {
14506
+ return;
14507
+ }
14508
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
14509
+
14510
+ }
14511
+ }
14512
+
14513
+ /**
14514
+ * CreateWatermarkTemplate request structure.
14515
+ * @class
14516
+ */
14517
+ class CreateWatermarkTemplateRequest extends AbstractModel {
14518
+ constructor(){
14519
+ super();
14520
+
14521
+ /**
14522
+ * Watermarking type. Valid values:
14523
+ <li>image: Image watermark;</li>
14524
+ <li>text: Text watermark;</li>
14525
+ <li>svg: SVG watermark.</li>
14526
+ * @type {string || null}
14527
+ */
14528
+ this.Type = null;
14529
+
14530
+ /**
14531
+ * Watermarking template name. Length limit: 64 characters.
14532
+ * @type {string || null}
14533
+ */
14534
+ this.Name = null;
14535
+
14536
+ /**
14537
+ * Template description. Length limit: 256 characters.
14538
+ * @type {string || null}
14539
+ */
14540
+ this.Comment = null;
14541
+
14542
+ /**
14543
+ * Origin position. Valid values:
14544
+ <li>TopLeft: The origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text;</li>
14545
+ <li>TopRight: The origin of coordinates is in the top-right corner of the video, and the origin of the watermark is in the top-right corner of the image or text;</li>
14546
+ <li>BottomLeft: The origin of coordinates is in the bottom-left corner of the video, and the origin of the watermark is in the bottom-left corner of the image or text;</li>
14547
+ <li>BottomRight: The origin of coordinates is in the bottom-right corner of the video, and the origin of the watermark is in the bottom-right corner of the image or text.</li>
14548
+ Default value: TopLeft.
14549
+ * @type {string || null}
14550
+ */
14551
+ this.CoordinateOrigin = null;
14047
14552
 
14048
14553
  /**
14049
14554
  * The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:
@@ -19092,6 +19597,41 @@ u200c<li>`Horizental`: Flip horizontally. </li>
19092
19597
  }
19093
19598
  }
19094
19599
 
19600
+ /**
19601
+ * CreateLiveRecordTemplate response structure.
19602
+ * @class
19603
+ */
19604
+ class CreateLiveRecordTemplateResponse extends AbstractModel {
19605
+ constructor(){
19606
+ super();
19607
+
19608
+ /**
19609
+ * Unique identifier of the recording template.
19610
+ * @type {number || null}
19611
+ */
19612
+ this.Definition = null;
19613
+
19614
+ /**
19615
+ * 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.
19616
+ * @type {string || null}
19617
+ */
19618
+ this.RequestId = null;
19619
+
19620
+ }
19621
+
19622
+ /**
19623
+ * @private
19624
+ */
19625
+ deserialize(params) {
19626
+ if (!params) {
19627
+ return;
19628
+ }
19629
+ this.Definition = 'Definition' in params ? params.Definition : null;
19630
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
19631
+
19632
+ }
19633
+ }
19634
+
19095
19635
  /**
19096
19636
  * The execution result of a scheme.
19097
19637
  * @class
@@ -19172,24 +19712,74 @@ class ResetWorkflowResponse extends AbstractModel {
19172
19712
  }
19173
19713
 
19174
19714
  /**
19175
- * CreateAIAnalysisTemplate response structure.
19715
+ * HLS configuration parameters
19176
19716
  * @class
19177
19717
  */
19178
- class CreateAIAnalysisTemplateResponse extends AbstractModel {
19718
+ class HLSConfigureInfo extends AbstractModel {
19179
19719
  constructor(){
19180
19720
  super();
19181
19721
 
19182
19722
  /**
19183
- * Unique ID of video content analysis template.
19723
+ * Duration of a single TS file in seconds. Value range: 5-30 seconds.
19724
+
19725
+ If this parameter is left empty, 30 seconds will be used by default.
19726
+ Note: This field may return null, indicating that no valid value can be obtained.
19184
19727
  * @type {number || null}
19185
19728
  */
19186
- this.Definition = null;
19729
+ this.ItemDuration = null;
19187
19730
 
19188
19731
  /**
19189
- * 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.
19190
- * @type {string || null}
19732
+ * Recording cycle in seconds. Value range: 10 minutes to 12 hours.
19733
+
19734
+ If this parameter is left empty, 10 minutes (3600 seconds) will be used by default.
19735
+ Note: This field may return null, indicating that no valid value can be obtained.
19736
+ * @type {number || null}
19191
19737
  */
19192
- this.RequestId = null;
19738
+ this.Interval = null;
19739
+
19740
+ /**
19741
+ * Resume recording waiting time, unit: seconds. Value range: 60-1800 seconds.
19742
+ If this parameter is left empty, 0 (resume recording not enabled) will be used by default.
19743
+ Note: This field may return null, indicating that no valid value can be obtained.
19744
+ * @type {number || null}
19745
+ */
19746
+ this.ContinueTimeout = null;
19747
+
19748
+ }
19749
+
19750
+ /**
19751
+ * @private
19752
+ */
19753
+ deserialize(params) {
19754
+ if (!params) {
19755
+ return;
19756
+ }
19757
+ this.ItemDuration = 'ItemDuration' in params ? params.ItemDuration : null;
19758
+ this.Interval = 'Interval' in params ? params.Interval : null;
19759
+ this.ContinueTimeout = 'ContinueTimeout' in params ? params.ContinueTimeout : null;
19760
+
19761
+ }
19762
+ }
19763
+
19764
+ /**
19765
+ * CreateAIAnalysisTemplate response structure.
19766
+ * @class
19767
+ */
19768
+ class CreateAIAnalysisTemplateResponse extends AbstractModel {
19769
+ constructor(){
19770
+ super();
19771
+
19772
+ /**
19773
+ * Unique ID of video content analysis template.
19774
+ * @type {number || null}
19775
+ */
19776
+ this.Definition = null;
19777
+
19778
+ /**
19779
+ * 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.
19780
+ * @type {string || null}
19781
+ */
19782
+ this.RequestId = null;
19193
19783
 
19194
19784
  }
19195
19785
 
@@ -20399,6 +20989,64 @@ class AiRecognitionTaskOcrWordsSegmentItem extends AbstractModel {
20399
20989
  }
20400
20990
  }
20401
20991
 
20992
+ /**
20993
+ * DescribeLiveRecordTemplates request structure.
20994
+ * @class
20995
+ */
20996
+ class DescribeLiveRecordTemplatesRequest extends AbstractModel {
20997
+ constructor(){
20998
+ super();
20999
+
21000
+ /**
21001
+ * Specifies the recording template unique identifier filter condition, with an array length limit of 100.
21002
+ * @type {Array.<number> || null}
21003
+ */
21004
+ this.Definitions = null;
21005
+
21006
+ /**
21007
+ * Paging offset. Default value: 0.
21008
+ * @type {number || null}
21009
+ */
21010
+ this.Offset = null;
21011
+
21012
+ /**
21013
+ * Number of returned entries. Default value: 10. Maximum value: 100.
21014
+ * @type {number || null}
21015
+ */
21016
+ this.Limit = null;
21017
+
21018
+ /**
21019
+ * Indicates the template type filter condition. If left empty, all templates are returned. Valid values:
21020
+ * Preset: System preset template;
21021
+ * Custom
21022
+ * @type {string || null}
21023
+ */
21024
+ this.Type = null;
21025
+
21026
+ /**
21027
+ * Specifies the recording template identifier filter condition, with a length limit of 64 characters.
21028
+ * @type {string || null}
21029
+ */
21030
+ this.Name = null;
21031
+
21032
+ }
21033
+
21034
+ /**
21035
+ * @private
21036
+ */
21037
+ deserialize(params) {
21038
+ if (!params) {
21039
+ return;
21040
+ }
21041
+ this.Definitions = 'Definitions' in params ? params.Definitions : null;
21042
+ this.Offset = 'Offset' in params ? params.Offset : null;
21043
+ this.Limit = 'Limit' in params ? params.Limit : null;
21044
+ this.Type = 'Type' in params ? params.Type : null;
21045
+ this.Name = 'Name' in params ? params.Name : null;
21046
+
21047
+ }
21048
+ }
21049
+
20402
21050
  /**
20403
21051
  * Query result type of a task
20404
21052
  * @class
@@ -21278,310 +21926,33 @@ Note: The style ID can be up to 32 characters long and can contain letters, digi
21278
21926
  }
21279
21927
 
21280
21928
  }
21281
- }
21282
-
21283
- /**
21284
- * Video stream configuration parameter
21285
- * @class
21286
- */
21287
- class VideoTemplateInfoForUpdate extends AbstractModel {
21288
- constructor(){
21289
- super();
21290
-
21291
- /**
21292
- * Encoding format for video streams. Optional values:
21293
- <li>h264: H.264 encoding</li>
21294
- <li>h265: H.265 encoding</li>
21295
- <li>h266: H.266 encoding</li>
21296
- <li>av1: AOMedia Video 1 encoding</li>
21297
- <li>vp8: VP8 encoding</li>
21298
- <li>vp9: VP9 encoding</li>
21299
- <li>mpeg2: MPEG2 encoding</li>
21300
- <li>dnxhd: DNxHD encoding</li>
21301
- <li>mv-hevc: MV-HEVC encoding</li>
21302
-
21303
- Note:
21304
- AV1 encoding containers currently only support mp4, webm, and mkv.
21305
- H.266 encoding containers currently only support mp4, hls, ts, and move.
21306
- VP8 and VP9 encoding containers currently only support webm and mkv.
21307
- MPEG2 and DNxHD encoding containers currently only support mxf.
21308
- MV-HEVC encoding containers only support mp4, hls, and mov. Also, the hls format only supports mp4 segmentation format.
21309
-
21310
- Note: This field may return null, indicating that no valid value can be obtained.
21311
- * @type {string || null}
21312
- */
21313
- this.Codec = null;
21314
-
21315
- /**
21316
- * Video frame rate. Value range:
21317
- When FpsDenominator is empty, the range is [0, 120], in Hz.
21318
- When FpsDenominator is not empty, the Fps/FpsDenominator range is [0, 120].
21319
- If the value is 0, the frame rate will be the same as that of the source video.Note: This field may return null, indicating that no valid values can be obtained.
21320
- * @type {number || null}
21321
- */
21322
- this.Fps = null;
21323
-
21324
- /**
21325
- * Bitrate of a video stream, in kbps. Value range: 0 and [128, 100000].If the value is 0, the bitrate of the video will be the same as that of the source video.Note: This field may return null, indicating that no valid values can be obtained.
21326
- * @type {number || null}
21327
- */
21328
- this.Bitrate = null;
21329
-
21330
- /**
21331
- * Resolution adaption. Valid values:
21332
- <li>open: Enabled. When resolution adaption is enabled, `Width` indicates the long side of a video, while `Height` indicates the short side.</li>
21333
- <li>close: Disabled. When resolution adaption is disabled, `Width` indicates the width of a video, while `Height` indicates the height.</li>
21334
- Note: When resolution adaption is enabled, `Width` cannot be smaller than `Height`.
21335
- * @type {string || null}
21336
- */
21337
- this.ResolutionAdaptive = null;
21338
-
21339
- /**
21340
- * Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].
21341
- <li>If both `Width` and `Height` are 0, the resolution will be the same as that of the source video;</li>
21342
- <li>If `Width` is 0, but `Height` is not 0, `Width` will be proportionally scaled;</li>
21343
- <li>If `Width` is not 0, but `Height` is 0, `Height` will be proportionally scaled;</li>
21344
- <li>If both `Width` and `Height` are not 0, the custom resolution will be used.</li>
21345
- * @type {number || null}
21346
- */
21347
- this.Width = null;
21348
-
21349
- /**
21350
- * Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].
21351
- * @type {number || null}
21352
- */
21353
- this.Height = null;
21354
-
21355
- /**
21356
- * Interval between I-frames (keyframes), which can be customized in frames or seconds. GOP value range: 0 and [1, 100000].
21357
- If this parameter is 0, the system will automatically set the GOP length.
21358
- Note: This field may return null, indicating that no valid value can be obtained.
21359
- * @type {number || null}
21360
- */
21361
- this.Gop = null;
21362
-
21363
- /**
21364
- * GOP value unit. Optional values:
21365
- frame: indicates frame
21366
- second: indicates second
21367
- Default value: frame
21368
- Note: This field may return null, indicating that no valid value can be obtained.
21369
- * @type {string || null}
21370
- */
21371
- this.GopUnit = null;
21372
-
21373
- /**
21374
- * Fill type. "Fill" refers to the way of processing a screenshot when its aspect ratio is different from that of the source video. Valid values:
21375
- <li>stretch: Each frame is stretched to fill the entire screen, which may cause the transcoded video to be "flattened" or "stretched".</li>
21376
- <li>black: Keep the image's original aspect ratio and fill the blank space with black bars.</li>
21377
- <li>white: The aspect ratio of the video is kept unchanged, and the rest of the edges is filled with white.</li>
21378
- <li>gauss: applies Gaussian blur to the uncovered area, without changing the image's aspect ratio.</li>
21379
-
21380
- <li>smarttailor: Video images are smartly selected to ensure proportional image cropping.</li>
21381
- Default value: black.
21382
-
21383
- Note: This field may return null, indicating that no valid value can be obtained.
21384
- * @type {string || null}
21385
- */
21386
- this.FillType = null;
21387
-
21388
- /**
21389
- * The control factor of video constant bitrate. Value range: [0, 51]. If not specified, it means "auto". It is recommended not to specify this parameter unless necessary.
21390
- When the Mode parameter is set to VBR, if the Vcrf value is also configured, MPS will process the video in VBR mode, considering both Vcrf and Bitrate parameters to balance video quality, bitrate, transcoding efficiency, and file size.
21391
- When the Mode parameter is set to CRF, the Bitrate setting will be invalid, and the encoding will be based on the Vcrf value.
21392
- When the Mode parameter is set to ABR or CBR, the Vcrf value does not need to be configured.
21393
- Note: When you need to set it to auto, fill in 100.
21394
-
21395
- Note: This field may return null, indicating that no valid value can be obtained.
21396
- * @type {number || null}
21397
- */
21398
- this.Vcrf = null;
21399
-
21400
- /**
21401
- * Whether to enable adaptive encoding. Valid values:
21402
- <li>0: Disable</li>
21403
- <li>1: Enable</li>
21404
- Default value: 0. If this parameter is set to `1`, multiple streams with different resolutions and bitrates will be generated automatically. The highest resolution, bitrate, and quality of the streams are determined by the values of `width` and `height`, `Bitrate`, and `Vcrf` in `VideoTemplate` respectively. If these parameters are not set in `VideoTemplate`, the highest resolution generated will be the same as that of the source video, and the highest video quality will be close to VMAF 95. To use this parameter or learn about the billing details of adaptive encoding, please contact your sales rep.
21405
- * @type {number || null}
21406
- */
21407
- this.ContentAdaptStream = null;
21408
-
21409
- /**
21410
- * Average segment duration. Value range: (0-10], unit: second
21411
- Default value: 10
21412
- Note: It is used only in the format of HLS.
21413
- Note: This field may return null, indicating that no valid value can be obtained.
21414
- * @type {number || null}
21415
- */
21416
- this.HlsTime = null;
21417
-
21418
- /**
21419
- * HLS segment type. Valid values:
21420
- <li>0: HLS+TS segment</li>
21421
- <li>2: HLS+TS byte range</li>
21422
- <li>7: HLS+MP4 segment</li>
21423
- <li>5: HLS+MP4 byte range</li>
21424
- Default value: 0
21425
-
21426
- Note: This field is used for normal/Top Speed Codec transcoding settings and does not apply to adaptive bitrate streaming. To configure the segment type for adaptive bitrate streaming, use the outer field.
21427
- Note: This field may return null, indicating that no valid value can be obtained.
21428
- * @type {number || null}
21429
- */
21430
- this.SegmentType = null;
21431
-
21432
- /**
21433
- * Denominator of the frame rate.
21434
- Note: The value must be greater than 0.
21435
- Note: This field may return null, indicating that no valid values can be obtained.
21436
- * @type {number || null}
21437
- */
21438
- this.FpsDenominator = null;
21439
-
21440
- /**
21441
- * 3D video splicing mode, which is only valid for MV-HEVC 3D videos. Valid values:
21442
- <li>side_by_side: side-by-side view.</li>
21443
- <li>top_bottom: top-bottom view.</li>
21444
- Default value: side_by_side.
21445
- Note: This field may return null, indicating that no valid values can be obtained.
21446
- * @type {string || null}
21447
- */
21448
- this.Stereo3dType = null;
21449
-
21450
- /**
21451
- * Profile, suitable for different scenarios.
21452
- baseline: It only supports I/P-frames and non-interlaced scenarios, and is suitable for scenarios such as video calls and mobile videos.
21453
- main: It offers I-frames, P-frames, and B-frames, and supports both interlaced and non-interlaced modes. It is mainly used in mainstream audio and video consumption products such as video players and streaming media transmission devices.
21454
- high: the highest encoding level, with 8x8 prediction added to the main profile and support for custom quantification. It is widely used in scenarios such as Blu-ray storage and HDTV.
21455
- default: automatic filling along with the original video
21456
-
21457
- This configuration appears only when the encoding standard is set to H264. Default value: default
21458
- Note: This field may return null, indicating that no valid value can be obtained.
21459
- * @type {string || null}
21460
- */
21461
- this.VideoProfile = null;
21462
-
21463
- /**
21464
- * Encoder level. Default value: auto ("")
21465
- If the encoding standard is set to H264, the following options are supported: "", 1, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1, 4.2, 5, and 5.1.
21466
- If the encoding standard is set to H265, the following options are supported: "", 1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2, and 8.5.
21467
- Note: This field may return null, indicating that no valid value can be obtained.
21468
- * @type {string || null}
21469
- */
21470
- this.VideoLevel = null;
21471
-
21472
- /**
21473
- * Maximum number of consecutive B-frames. The default is auto, and 0 - 16 and -1 are supported.
21474
- Note:
21475
-
21476
- -1 indicates auto.
21477
- Note: This field may return null, indicating that no valid value can be obtained.
21478
- * @type {number || null}
21479
- */
21480
- this.Bframes = null;
21481
-
21482
- /**
21483
- * Bitrate control mode. Optional values:
21484
- VBR: variable bitrate. The output bitrate is adjusted based on the complexity of the video image, ensuring higher image quality. This mode is suitable for storage scenarios as well as applications with high image quality requirements.
21485
- ABR: average bitrate. The average bitrate of the output video is kept stable to the greatest extent, but short-term bitrate fluctuations are allowed. This mode is suitable for scenarios where it is necessary to minimize the overall bitrate while a certain quality is maintained.
21486
- CBR: constant bitrate. The output bitrate remains constant during the video encoding process, regardless of changes in image complexity. This mode is suitable for scenarios with strict network bandwidth requirements, such as live streaming.
21487
- VCRF: constant rate factor. The video quality is controlled by setting a quality factor, achieving constant quality encoding of videos. The bitrate is automatically adjusted based on the complexity of the content. This mode is suitable for scenarios where maintaining a certain quality is desired.
21488
- VBR is selected by default.
21489
- Note: This field may return null, indicating that no valid value can be obtained.
21490
- * @type {string || null}
21491
- */
21492
- this.Mode = null;
21493
-
21494
- /**
21495
- * Display aspect ratio. Optional values: [1:1, 2:1, default]
21496
- Default value: default
21497
- Note: This field may return null, indicating that no valid value can be obtained.
21498
- * @type {string || null}
21499
- */
21500
- this.Sar = null;
21501
-
21502
- /**
21503
- * Adaptive I-frame decision. When it is enabled, Media Processing Service will automatically identify transition points between different scenarios in the video (usually they are visually distinct frames, such as those of switching from one shot to another) and adaptively insert keyframes (I-frames) at these points to improve the random accessibility and encoding efficiency of the video. Optional values:
21504
- 0: Disable the adaptive I-frame decision
21505
- 1: Enable the adaptive I-frame decision
21506
- Default value: 0
21507
-
21508
- Note: This field may return null, indicating that no valid value can be obtained.
21509
- * @type {number || null}
21510
- */
21511
- this.NoScenecut = null;
21512
-
21513
- /**
21514
- * Bit: 8/10 is supported. Default value: 8
21515
- Note: This field may return null, indicating that no valid value can be obtained.
21516
- * @type {number || null}
21517
- */
21518
- this.BitDepth = null;
21519
-
21520
- /**
21521
- * Preservation of original timestamp. Optional values:
21522
- 0: Disabled
21523
- 1: Enabled
21524
- Default value: Disabled
21525
- Note: This field may return null, indicating that no valid value can be obtained.
21526
- * @type {number || null}
21527
- */
21528
- this.RawPts = null;
21529
-
21530
- /**
21531
- * Proportional compression bitrate. When it is enabled, the bitrate of the output video will be adjusted according to the proportion. After the compression ratio is entered, the system will automatically calculate the target output bitrate based on the source video bitrate. Compression ratio range: 0-100, optional values: [0-100] and -1
21532
- Note: -1 indicates auto.
21533
- Note: This field may return null, indicating that no valid value can be obtained.
21534
- * @type {number || null}
21535
- */
21536
- this.Compress = null;
21537
-
21538
- /**
21539
- * Segment duration at startup.
21540
- Note: This field may return null, indicating that no valid value can be obtained.
21541
- * @type {SegmentSpecificInfo || null}
21542
- */
21543
- this.SegmentSpecificInfo = null;
21929
+ }
21930
+
21931
+ /**
21932
+ * CreateLiveRecordTemplate request structure.
21933
+ * @class
21934
+ */
21935
+ class CreateLiveRecordTemplateRequest extends AbstractModel {
21936
+ constructor(){
21937
+ super();
21544
21938
 
21545
21939
  /**
21546
- * Indicates whether to enable scenario-based settings for the template.
21547
- 0: Disable.
21548
- 1: enable
21549
-
21550
- Default value: 0
21551
-
21552
- Note: This value takes effect only when the value of this field is 1.
21553
- Note: This field may return null, indicating that no valid value can be obtained.
21554
- * @type {number || null}
21940
+ * HLS configuration parameters.
21941
+ * @type {HLSConfigureInfo || null}
21555
21942
  */
21556
- this.ScenarioBased = null;
21943
+ this.HLSConfigure = null;
21557
21944
 
21558
21945
  /**
21559
- * Video scenario. Valid values:
21560
- normal: General transcoding scenario: General transcoding and compression scenario. pgc: PGC HD film and television: Emphasis is placed on the viewing experience of films and TV shows during compression, with ROI encoding based on the characteristics of films and TV shows, while maintaining high-quality video and audio content.
21561
- materials_video: HD materials: Scenario involving material resources, where requirements for image quality are extremely high and there are many transparent images, with almost no visual loss during compression.
21562
- ugc: UGC content: It is suitable for a wide range of UGC/short video scenarios, with an optimized encoding bitrate for short video characteristics, improved image quality, and enhanced business QOS/QOE metrics.
21563
- e-commerce_video: Fashion show/e-commerce: At the time of compression, emphasis is placed on detail clarity and ROI enhancement, with a particular focus on maintaining the image quality of the face region.
21564
- educational_video: Education: At the time of compression, emphasis is placed on the clarity and readability of text and images to help students better understand the content, ensuring that the teaching content is clearly conveyed.
21565
- Default value: normal.
21566
- Note: To use this value, the value of ScenarioBased must be 1; otherwise, this value will not take effect.
21567
- Note: This field may return null, indicating that no valid value can be obtained.
21946
+ * Recording template name. Length limit: 64 characters.
21568
21947
  * @type {string || null}
21569
21948
  */
21570
- this.SceneType = null;
21949
+ this.Name = null;
21571
21950
 
21572
21951
  /**
21573
- * Transcoding policy. Valid values:
21574
- ultra_compress: Extreme compression: Compared to standard compression, this policy can maximize bitrate compression while ensuring a certain level of image quality, thus greatly saving bandwidth and storage costs.
21575
- standard_compress: Comprehensively optimal: Balances compression ratio and image quality, compressing files as much as possible without a noticeable reduction in subjective image quality. This policy only charges audio and video TSC transcoding fees.
21576
- high_compress: Bitrate priority: Prioritizes reducing file size, which may result in some image quality loss. This policy only charges audio and video TSC transcoding fees.
21577
- low_compress: Image quality priority: Prioritizes ensuring image quality, and the size of compressed files may be relatively large. This policy only charges audio and video TSC transcoding fees.
21578
- Default value: standard_compress.
21579
- Note: If you need to watch videos on TV, it is recommended not to use the ultra_compress policy. The billing standard for the ultra_compress policy is TSC transcoding + audio and video enhancement - artifacts removal.
21580
- Note: To use this value, the value of ScenarioBased must be 1; otherwise, this value will not take effect.
21581
- Note: This field may return null, indicating that no valid value can be obtained.
21952
+ * Template description, with a length limit of 256 characters.
21582
21953
  * @type {string || null}
21583
21954
  */
21584
- this.CompressType = null;
21955
+ this.Comment = null;
21585
21956
 
21586
21957
  }
21587
21958
 
@@ -21592,39 +21963,14 @@ Note: This field may return null, indicating that no valid value can be obtained
21592
21963
  if (!params) {
21593
21964
  return;
21594
21965
  }
21595
- this.Codec = 'Codec' in params ? params.Codec : null;
21596
- this.Fps = 'Fps' in params ? params.Fps : null;
21597
- this.Bitrate = 'Bitrate' in params ? params.Bitrate : null;
21598
- this.ResolutionAdaptive = 'ResolutionAdaptive' in params ? params.ResolutionAdaptive : null;
21599
- this.Width = 'Width' in params ? params.Width : null;
21600
- this.Height = 'Height' in params ? params.Height : null;
21601
- this.Gop = 'Gop' in params ? params.Gop : null;
21602
- this.GopUnit = 'GopUnit' in params ? params.GopUnit : null;
21603
- this.FillType = 'FillType' in params ? params.FillType : null;
21604
- this.Vcrf = 'Vcrf' in params ? params.Vcrf : null;
21605
- this.ContentAdaptStream = 'ContentAdaptStream' in params ? params.ContentAdaptStream : null;
21606
- this.HlsTime = 'HlsTime' in params ? params.HlsTime : null;
21607
- this.SegmentType = 'SegmentType' in params ? params.SegmentType : null;
21608
- this.FpsDenominator = 'FpsDenominator' in params ? params.FpsDenominator : null;
21609
- this.Stereo3dType = 'Stereo3dType' in params ? params.Stereo3dType : null;
21610
- this.VideoProfile = 'VideoProfile' in params ? params.VideoProfile : null;
21611
- this.VideoLevel = 'VideoLevel' in params ? params.VideoLevel : null;
21612
- this.Bframes = 'Bframes' in params ? params.Bframes : null;
21613
- this.Mode = 'Mode' in params ? params.Mode : null;
21614
- this.Sar = 'Sar' in params ? params.Sar : null;
21615
- this.NoScenecut = 'NoScenecut' in params ? params.NoScenecut : null;
21616
- this.BitDepth = 'BitDepth' in params ? params.BitDepth : null;
21617
- this.RawPts = 'RawPts' in params ? params.RawPts : null;
21618
- this.Compress = 'Compress' in params ? params.Compress : null;
21619
21966
 
21620
- if (params.SegmentSpecificInfo) {
21621
- let obj = new SegmentSpecificInfo();
21622
- obj.deserialize(params.SegmentSpecificInfo)
21623
- this.SegmentSpecificInfo = obj;
21967
+ if (params.HLSConfigure) {
21968
+ let obj = new HLSConfigureInfo();
21969
+ obj.deserialize(params.HLSConfigure)
21970
+ this.HLSConfigure = obj;
21624
21971
  }
21625
- this.ScenarioBased = 'ScenarioBased' in params ? params.ScenarioBased : null;
21626
- this.SceneType = 'SceneType' in params ? params.SceneType : null;
21627
- this.CompressType = 'CompressType' in params ? params.CompressType : null;
21972
+ this.Name = 'Name' in params ? params.Name : null;
21973
+ this.Comment = 'Comment' in params ? params.Comment : null;
21628
21974
 
21629
21975
  }
21630
21976
  }
@@ -23421,50 +23767,18 @@ class LiveStreamAiReviewResultItem extends AbstractModel {
23421
23767
  }
23422
23768
 
23423
23769
  /**
23424
- * Task overview information
23770
+ * DeleteLiveRecordTemplate response structure.
23425
23771
  * @class
23426
23772
  */
23427
- class TaskSimpleInfo extends AbstractModel {
23773
+ class DeleteLiveRecordTemplateResponse extends AbstractModel {
23428
23774
  constructor(){
23429
23775
  super();
23430
23776
 
23431
23777
  /**
23432
- * Task ID.
23433
- * @type {string || null}
23434
- */
23435
- this.TaskId = null;
23436
-
23437
- /**
23438
- * Task type. Valid values:
23439
- <li> WorkflowTask: Workflow processing task;</li>
23440
- <li> LiveProcessTask: Live stream processing task.</li>
23441
- * @type {string || null}
23442
- */
23443
- this.TaskType = null;
23444
-
23445
- /**
23446
- * Creation time of a task in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
23447
- * @type {string || null}
23448
- */
23449
- this.CreateTime = null;
23450
-
23451
- /**
23452
- * Start time of task execution in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F). If the task has not been started yet, this field will be `0000-00-00T00:00:00Z`.
23453
- * @type {string || null}
23454
- */
23455
- this.BeginProcessTime = null;
23456
-
23457
- /**
23458
- * End time of a task in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F). If the task has not been completed yet, this field will be `0000-00-00T00:00:00Z`.
23778
+ * 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.
23459
23779
  * @type {string || null}
23460
23780
  */
23461
- this.FinishTime = null;
23462
-
23463
- /**
23464
- * The subtask type.
23465
- * @type {Array.<string> || null}
23466
- */
23467
- this.SubTaskTypes = null;
23781
+ this.RequestId = null;
23468
23782
 
23469
23783
  }
23470
23784
 
@@ -23475,12 +23789,7 @@ class TaskSimpleInfo extends AbstractModel {
23475
23789
  if (!params) {
23476
23790
  return;
23477
23791
  }
23478
- this.TaskId = 'TaskId' in params ? params.TaskId : null;
23479
- this.TaskType = 'TaskType' in params ? params.TaskType : null;
23480
- this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
23481
- this.BeginProcessTime = 'BeginProcessTime' in params ? params.BeginProcessTime : null;
23482
- this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
23483
- this.SubTaskTypes = 'SubTaskTypes' in params ? params.SubTaskTypes : null;
23792
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
23484
23793
 
23485
23794
  }
23486
23795
  }
@@ -25318,6 +25627,71 @@ If one or both parameters are empty or set to `0`:
25318
25627
  }
25319
25628
  }
25320
25629
 
25630
+ /**
25631
+ * Task overview information
25632
+ * @class
25633
+ */
25634
+ class TaskSimpleInfo extends AbstractModel {
25635
+ constructor(){
25636
+ super();
25637
+
25638
+ /**
25639
+ * Task ID.
25640
+ * @type {string || null}
25641
+ */
25642
+ this.TaskId = null;
25643
+
25644
+ /**
25645
+ * Task type. Valid values:
25646
+ <li> WorkflowTask: Workflow processing task;</li>
25647
+ <li> LiveProcessTask: Live stream processing task.</li>
25648
+ * @type {string || null}
25649
+ */
25650
+ this.TaskType = null;
25651
+
25652
+ /**
25653
+ * Creation time of a task in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
25654
+ * @type {string || null}
25655
+ */
25656
+ this.CreateTime = null;
25657
+
25658
+ /**
25659
+ * Start time of task execution in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F). If the task has not been started yet, this field will be `0000-00-00T00:00:00Z`.
25660
+ * @type {string || null}
25661
+ */
25662
+ this.BeginProcessTime = null;
25663
+
25664
+ /**
25665
+ * End time of a task in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F). If the task has not been completed yet, this field will be `0000-00-00T00:00:00Z`.
25666
+ * @type {string || null}
25667
+ */
25668
+ this.FinishTime = null;
25669
+
25670
+ /**
25671
+ * The subtask type.
25672
+ * @type {Array.<string> || null}
25673
+ */
25674
+ this.SubTaskTypes = null;
25675
+
25676
+ }
25677
+
25678
+ /**
25679
+ * @private
25680
+ */
25681
+ deserialize(params) {
25682
+ if (!params) {
25683
+ return;
25684
+ }
25685
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
25686
+ this.TaskType = 'TaskType' in params ? params.TaskType : null;
25687
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
25688
+ this.BeginProcessTime = 'BeginProcessTime' in params ? params.BeginProcessTime : null;
25689
+ this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
25690
+ this.SubTaskTypes = 'SubTaskTypes' in params ? params.SubTaskTypes : null;
25691
+
25692
+ }
25693
+ }
25694
+
25321
25695
  /**
25322
25696
  * The information about the detected pornographic/sensitive segments.
25323
25697
  * @class
@@ -25870,6 +26244,34 @@ no_config: Not configured.
25870
26244
  }
25871
26245
  }
25872
26246
 
26247
+ /**
26248
+ * ModifyLiveRecordTemplate response structure.
26249
+ * @class
26250
+ */
26251
+ class ModifyLiveRecordTemplateResponse extends AbstractModel {
26252
+ constructor(){
26253
+ super();
26254
+
26255
+ /**
26256
+ * 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.
26257
+ * @type {string || null}
26258
+ */
26259
+ this.RequestId = null;
26260
+
26261
+ }
26262
+
26263
+ /**
26264
+ * @private
26265
+ */
26266
+ deserialize(params) {
26267
+ if (!params) {
26268
+ return;
26269
+ }
26270
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
26271
+
26272
+ }
26273
+ }
26274
+
25873
26275
  /**
25874
26276
  * The details of a scheme.
25875
26277
  * @class
@@ -27980,6 +28382,60 @@ class OcrFullTextConfigureInfo extends AbstractModel {
27980
28382
  }
27981
28383
  }
27982
28384
 
28385
+ /**
28386
+ * ModifyLiveRecordTemplate request structure.
28387
+ * @class
28388
+ */
28389
+ class ModifyLiveRecordTemplateRequest extends AbstractModel {
28390
+ constructor(){
28391
+ super();
28392
+
28393
+ /**
28394
+ * Specifies the recording template unique identifier.
28395
+ * @type {number || null}
28396
+ */
28397
+ this.Definition = null;
28398
+
28399
+ /**
28400
+ * HLS configuration parameters.
28401
+ * @type {HLSConfigureInfo || null}
28402
+ */
28403
+ this.HLSConfigure = null;
28404
+
28405
+ /**
28406
+ * Recording template name. Length limit: 64 characters.
28407
+ * @type {string || null}
28408
+ */
28409
+ this.Name = null;
28410
+
28411
+ /**
28412
+ * Template description, with a length limit of 256 characters.
28413
+ * @type {string || null}
28414
+ */
28415
+ this.Comment = null;
28416
+
28417
+ }
28418
+
28419
+ /**
28420
+ * @private
28421
+ */
28422
+ deserialize(params) {
28423
+ if (!params) {
28424
+ return;
28425
+ }
28426
+ this.Definition = 'Definition' in params ? params.Definition : null;
28427
+
28428
+ if (params.HLSConfigure) {
28429
+ let obj = new HLSConfigureInfo();
28430
+ obj.deserialize(params.HLSConfigure)
28431
+ this.HLSConfigure = obj;
28432
+ }
28433
+ this.Name = 'Name' in params ? params.Name : null;
28434
+ this.Comment = 'Comment' in params ? params.Comment : null;
28435
+
28436
+ }
28437
+ }
28438
+
27983
28439
  /**
27984
28440
  * DescribeTranscodeTemplates response structure.
27985
28441
  * @class
@@ -29966,7 +30422,9 @@ module.exports = {
29966
30422
  WorkflowInfo: WorkflowInfo,
29967
30423
  CreateTranscodeTemplateRequest: CreateTranscodeTemplateRequest,
29968
30424
  ProcessLiveStreamResponse: ProcessLiveStreamResponse,
30425
+ DescribeLiveRecordTemplatesResponse: DescribeLiveRecordTemplatesResponse,
29969
30426
  MediaAiAnalysisHighlightItem: MediaAiAnalysisHighlightItem,
30427
+ DeleteLiveRecordTemplateRequest: DeleteLiveRecordTemplateRequest,
29970
30428
  DescribeAnimatedGraphicsTemplatesRequest: DescribeAnimatedGraphicsTemplatesRequest,
29971
30429
  AiReviewTaskProhibitedAsrResult: AiReviewTaskProhibitedAsrResult,
29972
30430
  AdaptiveDynamicStreamingTemplate: AdaptiveDynamicStreamingTemplate,
@@ -30068,6 +30526,7 @@ module.exports = {
30068
30526
  AudioDenoiseConfig: AudioDenoiseConfig,
30069
30527
  DeleteTranscodeTemplateRequest: DeleteTranscodeTemplateRequest,
30070
30528
  PornAsrReviewTemplateInfoForUpdate: PornAsrReviewTemplateInfoForUpdate,
30529
+ LiveRecordTemplate: LiveRecordTemplate,
30071
30530
  DescribeSnapshotByTimeOffsetTemplatesRequest: DescribeSnapshotByTimeOffsetTemplatesRequest,
30072
30531
  ScheduleRecognitionTaskResult: ScheduleRecognitionTaskResult,
30073
30532
  ComposeTargetInfo: ComposeTargetInfo,
@@ -30181,6 +30640,7 @@ module.exports = {
30181
30640
  DeleteImageSpriteTemplateResponse: DeleteImageSpriteTemplateResponse,
30182
30641
  DescribeContentReviewTemplatesResponse: DescribeContentReviewTemplatesResponse,
30183
30642
  TEHDConfig: TEHDConfig,
30643
+ VideoTemplateInfoForUpdate: VideoTemplateInfoForUpdate,
30184
30644
  AnimatedGraphicsTemplate: AnimatedGraphicsTemplate,
30185
30645
  WorkflowTrigger: WorkflowTrigger,
30186
30646
  LiveStreamAiRecognitionResultInfo: LiveStreamAiRecognitionResultInfo,
@@ -30272,8 +30732,10 @@ module.exports = {
30272
30732
  ModifyAIRecognitionTemplateRequest: ModifyAIRecognitionTemplateRequest,
30273
30733
  ParseNotificationResponse: ParseNotificationResponse,
30274
30734
  ComposeImageOperation: ComposeImageOperation,
30735
+ CreateLiveRecordTemplateResponse: CreateLiveRecordTemplateResponse,
30275
30736
  ActivityResult: ActivityResult,
30276
30737
  ResetWorkflowResponse: ResetWorkflowResponse,
30738
+ HLSConfigureInfo: HLSConfigureInfo,
30277
30739
  CreateAIAnalysisTemplateResponse: CreateAIAnalysisTemplateResponse,
30278
30740
  MediaProcessTaskSampleSnapshotResult: MediaProcessTaskSampleSnapshotResult,
30279
30741
  UserDefineConfigureInfoForUpdate: UserDefineConfigureInfoForUpdate,
@@ -30296,6 +30758,7 @@ module.exports = {
30296
30758
  PoliticalConfigureInfo: PoliticalConfigureInfo,
30297
30759
  ModifyAnimatedGraphicsTemplateRequest: ModifyAnimatedGraphicsTemplateRequest,
30298
30760
  AiRecognitionTaskOcrWordsSegmentItem: AiRecognitionTaskOcrWordsSegmentItem,
30761
+ DescribeLiveRecordTemplatesRequest: DescribeLiveRecordTemplatesRequest,
30299
30762
  MediaProcessTaskResult: MediaProcessTaskResult,
30300
30763
  DeleteWordSamplesResponse: DeleteWordSamplesResponse,
30301
30764
  LiveStreamTransTextRecognitionResult: LiveStreamTransTextRecognitionResult,
@@ -30312,7 +30775,7 @@ module.exports = {
30312
30775
  ModifyTranscodeTemplateResponse: ModifyTranscodeTemplateResponse,
30313
30776
  LiveStreamRecordResultInfo: LiveStreamRecordResultInfo,
30314
30777
  ComposeStyles: ComposeStyles,
30315
- VideoTemplateInfoForUpdate: VideoTemplateInfoForUpdate,
30778
+ CreateLiveRecordTemplateRequest: CreateLiveRecordTemplateRequest,
30316
30779
  CreateContentReviewTemplateRequest: CreateContentReviewTemplateRequest,
30317
30780
  DescribeContentReviewTemplatesRequest: DescribeContentReviewTemplatesRequest,
30318
30781
  AdaptiveDynamicStreamingTaskInput: AdaptiveDynamicStreamingTaskInput,
@@ -30341,7 +30804,7 @@ module.exports = {
30341
30804
  AiRecognitionTaskTransTextResultOutput: AiRecognitionTaskTransTextResultOutput,
30342
30805
  ModifySnapshotByTimeOffsetTemplateRequest: ModifySnapshotByTimeOffsetTemplateRequest,
30343
30806
  LiveStreamAiReviewResultItem: LiveStreamAiReviewResultItem,
30344
- TaskSimpleInfo: TaskSimpleInfo,
30807
+ DeleteLiveRecordTemplateResponse: DeleteLiveRecordTemplateResponse,
30345
30808
  DescribeSnapshotByTimeOffsetTemplatesResponse: DescribeSnapshotByTimeOffsetTemplatesResponse,
30346
30809
  MediaVideoStreamItem: MediaVideoStreamItem,
30347
30810
  SnapshotByTimeOffsetTemplate: SnapshotByTimeOffsetTemplate,
@@ -30372,6 +30835,7 @@ module.exports = {
30372
30835
  DrmInfo: DrmInfo,
30373
30836
  DescribeSampleSnapshotTemplatesResponse: DescribeSampleSnapshotTemplatesResponse,
30374
30837
  ComposeImageItem: ComposeImageItem,
30838
+ TaskSimpleInfo: TaskSimpleInfo,
30375
30839
  MediaContentReviewSegmentItem: MediaContentReviewSegmentItem,
30376
30840
  AiContentReviewResult: AiContentReviewResult,
30377
30841
  LiveActivityResult: LiveActivityResult,
@@ -30379,6 +30843,7 @@ module.exports = {
30379
30843
  TranslateConfigureInfo: TranslateConfigureInfo,
30380
30844
  AiAnalysisTaskHeadTailInput: AiAnalysisTaskHeadTailInput,
30381
30845
  DescribeTranscodeTemplatesRequest: DescribeTranscodeTemplatesRequest,
30846
+ ModifyLiveRecordTemplateResponse: ModifyLiveRecordTemplateResponse,
30382
30847
  SchedulesInfo: SchedulesInfo,
30383
30848
  DisableWorkflowRequest: DisableWorkflowRequest,
30384
30849
  PoliticalConfigureInfoForUpdate: PoliticalConfigureInfoForUpdate,
@@ -30416,6 +30881,7 @@ module.exports = {
30416
30881
  PornImgReviewTemplateInfo: PornImgReviewTemplateInfo,
30417
30882
  AiReviewPoliticalOcrTaskOutput: AiReviewPoliticalOcrTaskOutput,
30418
30883
  OcrFullTextConfigureInfo: OcrFullTextConfigureInfo,
30884
+ ModifyLiveRecordTemplateRequest: ModifyLiveRecordTemplateRequest,
30419
30885
  DescribeTranscodeTemplatesResponse: DescribeTranscodeTemplatesResponse,
30420
30886
  DeleteAnimatedGraphicsTemplateRequest: DeleteAnimatedGraphicsTemplateRequest,
30421
30887
  DeleteSnapshotByTimeOffsetTemplateRequest: DeleteSnapshotByTimeOffsetTemplateRequest,