tencentcloud-sdk-nodejs-mps 4.1.205 → 4.1.208

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.
@@ -188,6 +188,23 @@ export interface ModifyWatermarkTemplateRequest {
188
188
  */
189
189
  SvgTemplate?: SvgWatermarkInputForUpdate;
190
190
  }
191
+ /**
192
+ * CreateStreamPackageSSAIChannel请求参数结构体
193
+ */
194
+ export interface CreateStreamPackageSSAIChannelRequest {
195
+ /**
196
+ * 广告插入配置名称,全局唯一,不能与其他频道重复。
197
+ */
198
+ Name: string;
199
+ /**
200
+ * 源流地址前缀
201
+ */
202
+ ContentSource: string;
203
+ /**
204
+ * 广告插入配置
205
+ */
206
+ SSAIInfo: SSAIConf;
207
+ }
191
208
  /**
192
209
  * 查询输入的RTP配置信息。
193
210
  */
@@ -330,6 +347,32 @@ export interface DeleteStreamLinkSecurityGroupResponse {
330
347
  */
331
348
  RequestId?: string;
332
349
  }
350
+ /**
351
+ * DeleteStreamPackageLinearAssemblyProgramsByChannel请求参数结构体
352
+ */
353
+ export interface DeleteStreamPackageLinearAssemblyProgramsByChannelRequest {
354
+ /**
355
+ * <p>频道的ID</p>
356
+ */
357
+ ChannelID: string;
358
+ /**
359
+ * <p>需要删除的Id数组</p>
360
+ */
361
+ IDs: Array<string>;
362
+ }
363
+ /**
364
+ * Metadata。
365
+ */
366
+ export interface Metadata {
367
+ /**
368
+ * Key。
369
+ */
370
+ Key?: string;
371
+ /**
372
+ * Value。
373
+ */
374
+ Value?: string;
375
+ }
333
376
  /**
334
377
  * 智能分类任务输入类型
335
378
  */
@@ -369,17 +412,17 @@ export interface SvgWatermarkInput {
369
412
  Height?: string;
370
413
  }
371
414
  /**
372
- * 流的统计数据列表。
415
+ * Alias-value配置信息。
373
416
  */
374
- export interface FlowStatisticsArray {
417
+ export interface AliasValueConf {
375
418
  /**
376
- * 时间戳。
419
+ * Alias。
377
420
  */
378
- Timestamp: number;
421
+ Alias?: string;
379
422
  /**
380
- * 每个会话的统计数据。
423
+ * Value。
381
424
  */
382
- FlowStatistics: Array<FlowStatistics>;
425
+ Value?: string;
383
426
  }
384
427
  /**
385
428
  * CreateTranscodeTemplate请求参数结构体
@@ -589,48 +632,17 @@ export interface DescribeAnimatedGraphicsTemplatesRequest {
589
632
  Name?: string;
590
633
  }
591
634
  /**
592
- * 提取视频数字水印任务信息
635
+ * DescribeStreamLinkSecurityGroups返回参数结构体
593
636
  */
594
- export interface ExtractBlindWatermarkTask {
595
- /**
596
- * 媒体处理任务 ID。
597
- */
598
- TaskId?: string;
599
- /**
600
- * 任务流状态,取值:
601
- <li>WAITING:等待中;</li>
602
- <li>PROCESSING:处理中;</li>
603
- <li>FINISH:已完成。</li>
604
- */
605
- Status?: string;
606
- /**
607
- * 错误码,0 表示成功,其他值表示失败。
608
- */
609
- ErrCode?: number;
610
- /**
611
- * 错误信息。
612
- */
613
- Message?: string;
614
- /**
615
- * 媒体处理的目标文件信息。
616
- */
617
- InputInfo?: MediaInputInfo;
618
- /**
619
- * 数字水印类型,可选值:<li>blind-basic:基础版权数字水印;</li> <li>blind-ab:ab版权数字水印;</li>
620
- */
621
- Type?: string;
622
- /**
623
- * 标记是否检测到水印,如果该参数为true, Result字段将返回水印提取结果,如果该参数为false,Result字段不会返回。
624
- */
625
- IsDetected?: boolean;
637
+ export interface DescribeStreamLinkSecurityGroupsResponse {
626
638
  /**
627
- * 提取出的数字水印内容,当没有检测到水印时该字段不会返回。
639
+ * 安全组信息列表。
628
640
  */
629
- Result?: string;
641
+ Infos?: Array<SecurityGroupInfo>;
630
642
  /**
631
- * 提取数字水印配置。
643
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
632
644
  */
633
- ExtractBlindWatermarkConfig?: ExtractBlindWatermarkTaskConfig;
645
+ RequestId?: string;
634
646
  }
635
647
  /**
636
648
  * 内容审核 Asr 文字鉴任违禁务结果类型
@@ -734,6 +746,44 @@ export interface AdaptiveDynamicStreamingTemplate {
734
746
  */
735
747
  SegmentType?: string;
736
748
  }
749
+ /**
750
+ * 对视频截雪碧图任务结果类型
751
+ */
752
+ export interface MediaProcessTaskImageSpriteResult {
753
+ /**
754
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
755
+ */
756
+ Status?: string;
757
+ /**
758
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
759
+ */
760
+ ErrCodeExt?: string;
761
+ /**
762
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
763
+ */
764
+ ErrCode?: number;
765
+ /**
766
+ * 错误信息。
767
+ */
768
+ Message?: string;
769
+ /**
770
+ * 对视频截雪碧图任务的输入。
771
+ */
772
+ Input?: ImageSpriteTaskInput;
773
+ /**
774
+ * 对视频截雪碧图任务的输出。
775
+ 注意:此字段可能返回 null,表示取不到有效值。
776
+ */
777
+ Output?: MediaImageSpriteItem;
778
+ /**
779
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
780
+ */
781
+ BeginProcessTime?: string;
782
+ /**
783
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
784
+ */
785
+ FinishTime?: string;
786
+ }
737
787
  /**
738
788
  * AI解说二创结果信息
739
789
  */
@@ -803,6 +853,29 @@ export interface MediaAiAnalysisDescriptionItem {
803
853
  */
804
854
  OutputStorage?: TaskOutputStorage;
805
855
  }
856
+ /**
857
+ * 切片特殊配置信息。
858
+ */
859
+ export interface SegmentSpecificInfo {
860
+ /**
861
+ * 启动分片时长开关,可选值:
862
+ on:打开
863
+ off:关闭
864
+ 默认off
865
+ 注意:此字段可能返回 null,表示取不到有效值。
866
+ */
867
+ Switch?: string;
868
+ /**
869
+ * 启动时分片时长,单位:秒
870
+ 注意:此字段可能返回 null,表示取不到有效值。
871
+ */
872
+ FragmentTime?: number;
873
+ /**
874
+ * 生效分片数,表示前FragmentEndNum个分片以FragmentTime时长切片,取值>=1
875
+ 注意:此字段可能返回 null,表示取不到有效值。
876
+ */
877
+ FragmentEndNum?: number;
878
+ }
806
879
  /**
807
880
  * DeleteAnimatedGraphicsTemplate返回参数结构体
808
881
  */
@@ -952,6 +1025,27 @@ export interface ManageTaskResponse {
952
1025
  */
953
1026
  RequestId?: string;
954
1027
  }
1028
+ /**
1029
+ * ModifyStreamPackageSSAIChannel请求参数结构体
1030
+ */
1031
+ export interface ModifyStreamPackageSSAIChannelRequest {
1032
+ /**
1033
+ * 广告插入配置名称,全局唯一,不能与其他频道重复。
1034
+ */
1035
+ Name: string;
1036
+ /**
1037
+ * 通配广告源地址。
1038
+ */
1039
+ ContentSource: string;
1040
+ /**
1041
+ * 广告插入配置信息。
1042
+ */
1043
+ SSAIInfo: SSAIConf;
1044
+ /**
1045
+ * 广告插入配置ID。
1046
+ */
1047
+ ID: string;
1048
+ }
955
1049
  /**
956
1050
  * BatchDeleteStreamLinkFlow请求参数结构体
957
1051
  */
@@ -1068,25 +1162,41 @@ export interface AwsS3FileUploadTrigger {
1068
1162
  AwsSQS?: AwsSQS;
1069
1163
  }
1070
1164
  /**
1071
- * 字词信息。
1165
+ * AdBreakInfo。
1072
1166
  */
1073
- export interface WordResult {
1167
+ export interface AdBreakInfo {
1074
1168
  /**
1075
- * 字词文本。
1169
+ * SourceLocationId。
1076
1170
  */
1077
- Word?: string;
1171
+ SourceLocationId?: string;
1078
1172
  /**
1079
- * 字词起始时间戳,单位秒。
1173
+ * VodSourceName。
1080
1174
  */
1081
- Start?: number;
1175
+ VodSourceName?: string;
1082
1176
  /**
1083
- * 字词结束时间戳,单位秒。
1177
+ * Offset。
1084
1178
  */
1085
- End?: number;
1179
+ Offset?: number;
1086
1180
  /**
1087
- * 翻译文本
1181
+ * MessageType,分SpliceInsert和TimeSignal。
1088
1182
  */
1089
- Trans?: string;
1183
+ MessageType?: string;
1184
+ /**
1185
+ * TimeSignalConf。
1186
+ */
1187
+ TimeSignalConf?: TimeSignalInfo;
1188
+ /**
1189
+ * SpliceInsertConf。
1190
+ */
1191
+ SpliceInsertConf?: SpliceInsertInfo;
1192
+ /**
1193
+ * Metadatas。
1194
+ */
1195
+ Metadatas?: Array<Metadata>;
1196
+ /**
1197
+ * SourceLocationName。
1198
+ */
1199
+ SourceLocationName?: string;
1090
1200
  }
1091
1201
  /**
1092
1202
  * 用户自定义文本审核任务控制参数。
@@ -1112,6 +1222,43 @@ export interface UserDefineOcrTextReviewTemplateInfoForUpdate {
1112
1222
  */
1113
1223
  ReviewConfidence?: number;
1114
1224
  }
1225
+ /**
1226
+ * 编排视频分析任务结果类型
1227
+ */
1228
+ export interface ScheduleAnalysisTaskResult {
1229
+ /**
1230
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
1231
+ */
1232
+ Status?: string;
1233
+ /**
1234
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
1235
+ */
1236
+ ErrCodeExt?: string;
1237
+ /**
1238
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
1239
+ */
1240
+ ErrCode?: number;
1241
+ /**
1242
+ * 错误信息。
1243
+ */
1244
+ Message?: string;
1245
+ /**
1246
+ * 分析任务的输入。
1247
+ */
1248
+ Input?: AiAnalysisTaskInput;
1249
+ /**
1250
+ * 分析任务的输出。
1251
+ */
1252
+ Output?: Array<AiAnalysisResult>;
1253
+ /**
1254
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
1255
+ */
1256
+ BeginProcessTime?: string;
1257
+ /**
1258
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
1259
+ */
1260
+ FinishTime?: string;
1261
+ }
1115
1262
  /**
1116
1263
  * 修改Output配置。
1117
1264
  */
@@ -1333,6 +1480,15 @@ export interface AiReviewPoliticalOcrTaskInput {
1333
1480
  */
1334
1481
  Definition: number;
1335
1482
  }
1483
+ /**
1484
+ * ModifyStreamPackageSourceLocation返回参数结构体
1485
+ */
1486
+ export interface ModifyStreamPackageSourceLocationResponse {
1487
+ /**
1488
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1489
+ */
1490
+ RequestId?: string;
1491
+ }
1336
1492
  /**
1337
1493
  * 翻译结果。
1338
1494
  */
@@ -1770,106 +1926,89 @@ export interface DiagnoseResult {
1770
1926
  SeverityLevel?: string;
1771
1927
  }
1772
1928
  /**
1773
- * 智能擦除任务
1929
+ * DescribeStreamPackageLinearAssemblyChannels请求参数结构体
1774
1930
  */
1775
- export interface SmartEraseTaskInput {
1776
- /**
1777
- * 智能擦除模板id。
1778
- */
1779
- Definition?: number;
1780
- /**
1781
- * 智能擦除自定义参数,当 Definition 填 0 时有效。 该参数用于高度定制场景,建议您优先使用 Definition 指定智能擦除参数。
1782
- 注意:此字段可能返回 null,表示取不到有效值。
1783
- */
1784
- RawParameter?: RawSmartEraseParameter;
1931
+ export interface DescribeStreamPackageLinearAssemblyChannelsRequest {
1785
1932
  /**
1786
- * 智能擦除自定义参数,当 Definition 不填 0 时有效。 当填写了该结构中的部分擦除参数时,将使用填写的参数覆盖智能擦除模板中的参数。 该参数用于高度定制场景,建议您仅使用 Definition 指定智能擦除参数。
1933
+ * 页数,取值范围为[1, 1000]。
1787
1934
  */
1788
- OverrideParameter?: OverrideEraseParameter;
1935
+ PageNum?: number;
1789
1936
  /**
1790
- * 文件的目标存储,不填则继承上层的 OutputStorage 值。
1791
- 注意:此字段可能返回 null,表示取不到有效值。
1937
+ * 每页大小,取值范围为[1, 1000]。
1792
1938
  */
1793
- OutputStorage?: TaskOutputStorage;
1939
+ PageSize?: number;
1940
+ }
1941
+ /**
1942
+ * EnableWorkflow请求参数结构体
1943
+ */
1944
+ export interface EnableWorkflowRequest {
1794
1945
  /**
1795
- * 文件的输出路径,可以为相对路径或者绝对路径。
1796
- 若需定义输出路径,路径需以`.{format}`结尾。变量名请参考 [文件名变量说明](https://cloud.tencent.com/document/product/862/37039)。
1797
- 相对路径示例:
1798
- <li>文件名_{变量名}.{format}</li>
1799
- <li>文件名.{format}</li>
1800
- 绝对路径示例:
1801
- <li>/自定义路径/文件名_{变量名}.{format}</li>
1802
-
1803
- **注意**:目前不支持`BatchProcessMedia`接口。
1946
+ * 工作流 ID。
1804
1947
  */
1805
- OutputObjectPath?: string;
1948
+ WorkflowId: number;
1806
1949
  }
1807
1950
  /**
1808
- * 自定义水印规格参数。
1951
+ * 内容审核 Ocr 文字敏感任务结果类型
1809
1952
  */
1810
- export interface RawWatermarkParameter {
1953
+ export interface AiReviewTaskPoliticalOcrResult {
1811
1954
  /**
1812
- * 水印类型,可选值:
1813
- <li>image:图片水印。</li>
1955
+ * 任务状态,有 PROCESSING,SUCCESS,FAIL 三种。
1814
1956
  */
1815
- Type: string;
1957
+ Status?: string;
1816
1958
  /**
1817
- * 原点位置,可选值:
1818
- <li>TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角。</li>
1819
- <li>TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
1820
- <li>BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
1821
- <li>BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。</li>
1822
- 默认值:TopLeft。
1959
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
1823
1960
  */
1824
- CoordinateOrigin?: string;
1961
+ ErrCodeExt?: string;
1825
1962
  /**
1826
- * 水印原点距离视频图像坐标原点的水平位置。支持 %、px 两种格式:
1827
- <li>当字符串以 % 结尾,表示水印 XPos 为视频宽度指定百分比,如 10% 表示 XPos 为视频宽度的 10%;</li>
1828
- <li>当字符串以 px 结尾,表示水印 XPos 为指定像素,如 100px 表示 XPos 为 100 像素。</li>
1829
- 默认值:0px。
1963
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
1830
1964
  */
1831
- XPos?: string;
1965
+ ErrCode?: number;
1832
1966
  /**
1833
- * 水印原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式:
1834
- <li>当字符串以 % 结尾,表示水印 YPos 为视频高度指定百分比,如 10% 表示 YPos 为视频高度的 10%;</li>
1835
- <li>当字符串以 px 结尾,表示水印 YPos 为指定像素,如 100px 表示 YPos 为 100 像素。</li>
1836
- 默认值:0px。
1967
+ * 错误信息。
1837
1968
  */
1838
- YPos?: string;
1969
+ Message?: string;
1839
1970
  /**
1840
- * 图片水印模板,当 Type 为 image,该字段必填。当 Type 为 text,该字段无效。
1971
+ * 内容审核 Ocr 文字敏感任务输入。
1841
1972
  */
1842
- ImageTemplate?: RawImageWatermarkInput;
1973
+ Input?: AiReviewPoliticalOcrTaskInput;
1974
+ /**
1975
+ * 内容审核 Ocr 文字敏感任务输出。
1976
+ 注意:此字段可能返回 null,表示取不到有效值。
1977
+ */
1978
+ Output?: AiReviewPoliticalOcrTaskOutput;
1843
1979
  }
1844
1980
  /**
1845
- * 内容审核 Ocr 文字敏感任务结果类型
1981
+ * ModifyAIAnalysisTemplate请求参数结构体
1846
1982
  */
1847
- export interface AiReviewTaskPoliticalOcrResult {
1983
+ export interface ModifyAIAnalysisTemplateRequest {
1848
1984
  /**
1849
- * 任务状态,有 PROCESSING,SUCCESS,FAIL 三种。
1985
+ * 视频内容分析模板唯一标识。
1850
1986
  */
1851
- Status?: string;
1987
+ Definition: number;
1852
1988
  /**
1853
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
1989
+ * 视频内容分析模板名称,长度限制:64 个字符。
1854
1990
  */
1855
- ErrCodeExt?: string;
1991
+ Name?: string;
1856
1992
  /**
1857
- * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
1993
+ * 视频内容分析模板描述信息,长度限制:256 个字符。
1858
1994
  */
1859
- ErrCode?: number;
1995
+ Comment?: string;
1860
1996
  /**
1861
- * 错误信息。
1997
+ * 智能分类任务控制参数。
1862
1998
  */
1863
- Message?: string;
1999
+ ClassificationConfigure?: ClassificationConfigureInfoForUpdate;
1864
2000
  /**
1865
- * 内容审核 Ocr 文字敏感任务输入。
2001
+ * 智能标签任务控制参数。
1866
2002
  */
1867
- Input?: AiReviewPoliticalOcrTaskInput;
2003
+ TagConfigure?: TagConfigureInfoForUpdate;
1868
2004
  /**
1869
- * 内容审核 Ocr 文字敏感任务输出。
1870
- 注意:此字段可能返回 null,表示取不到有效值。
2005
+ * 智能封面任务控制参数。
1871
2006
  */
1872
- Output?: AiReviewPoliticalOcrTaskOutput;
2007
+ CoverConfigure?: CoverConfigureInfoForUpdate;
2008
+ /**
2009
+ * 智能按帧标签任务控制参数。
2010
+ */
2011
+ FrameTagConfigure?: FrameTagConfigureInfoForUpdate;
1873
2012
  }
1874
2013
  /**
1875
2014
  * AI 样本管理,关键词输出信息。
@@ -2094,6 +2233,15 @@ export interface AddOnParameter {
2094
2233
  */
2095
2234
  ExtPrompt?: Array<ImageProcessPrompt>;
2096
2235
  }
2236
+ /**
2237
+ * DeleteStreamPackageSSAIChannel请求参数结构体
2238
+ */
2239
+ export interface DeleteStreamPackageSSAIChannelRequest {
2240
+ /**
2241
+ * 需要删除的广告插入配置ID。
2242
+ */
2243
+ ID: string;
2244
+ }
2097
2245
  /**
2098
2246
  * 用户自定义人物审核任务控制参数
2099
2247
  */
@@ -2311,25 +2459,13 @@ export interface DeleteContentReviewTemplateRequest {
2311
2459
  Definition: number;
2312
2460
  }
2313
2461
  /**
2314
- * 智能字幕结果
2462
+ * ActivateStreamPackage返回参数结构体
2315
2463
  */
2316
- export interface SubtitleResult {
2317
- /**
2318
- * <p>字幕文件语言</p>
2319
- */
2320
- Language?: string;
2321
- /**
2322
- * <p>处理是否成功</p>
2323
- */
2324
- Status?: string;
2464
+ export interface ActivateStreamPackageResponse {
2325
2465
  /**
2326
- * <p>字幕文件路径。</p>
2327
- */
2328
- Path?: string;
2329
- /**
2330
- * <p>字幕压制视频路径。</p>
2466
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2331
2467
  */
2332
- SubtitleEmbedPath?: string;
2468
+ RequestId?: string;
2333
2469
  }
2334
2470
  /**
2335
2471
  * StartStreamLinkFlow返回参数结构体
@@ -2397,6 +2533,35 @@ export interface ModifyScheduleRequest {
2397
2533
  */
2398
2534
  ResourceId?: string;
2399
2535
  }
2536
+ /**
2537
+ * DescribeWatermarkTemplates请求参数结构体
2538
+ */
2539
+ export interface DescribeWatermarkTemplatesRequest {
2540
+ /**
2541
+ * 水印模板唯一标识过滤条件,数组长度限制:100。
2542
+ */
2543
+ Definitions?: Array<number | bigint>;
2544
+ /**
2545
+ * 水印类型过滤条件,可选值:
2546
+ <li>image:图片水印;</li>
2547
+ <li>text:文字水印。</li>
2548
+ */
2549
+ Type?: string;
2550
+ /**
2551
+ * 分页偏移量,默认值:0。
2552
+ */
2553
+ Offset?: number;
2554
+ /**
2555
+ * 返回记录条数
2556
+ <li>默认值:10;</li>
2557
+ <li>最大值:100。</li>
2558
+ */
2559
+ Limit?: number;
2560
+ /**
2561
+ * 水印模板标识过滤条件,长度限制:64 个字符。
2562
+ */
2563
+ Name?: string;
2564
+ }
2400
2565
  /**
2401
2566
  * 点播媒体文件元信息
2402
2567
  */
@@ -2459,6 +2624,19 @@ export interface CreateOutputRTPSettingsDestinations {
2459
2624
  */
2460
2625
  Port: number;
2461
2626
  }
2627
+ /**
2628
+ * DescribeStreamLinkActivateState请求参数结构体
2629
+ */
2630
+ export type DescribeStreamLinkActivateStateRequest = null;
2631
+ /**
2632
+ * ResetWorkflow返回参数结构体
2633
+ */
2634
+ export interface ResetWorkflowResponse {
2635
+ /**
2636
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2637
+ */
2638
+ RequestId?: string;
2639
+ }
2462
2640
  /**
2463
2641
  * SRT FEC 高级配置
2464
2642
  */
@@ -2639,6 +2817,15 @@ export interface AudioTemplateInfoForUpdate {
2639
2817
  */
2640
2818
  StreamSelects?: Array<number | bigint>;
2641
2819
  }
2820
+ /**
2821
+ * ModifyStreamPackageSource返回参数结构体
2822
+ */
2823
+ export interface ModifyStreamPackageSourceResponse {
2824
+ /**
2825
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2826
+ */
2827
+ RequestId?: string;
2828
+ }
2642
2829
  /**
2643
2830
  * 智能擦除模板去水印配置
2644
2831
  */
@@ -2949,6 +3136,76 @@ export interface DescribeVideoDatabaseEntryTaskDetailRequest {
2949
3136
  */
2950
3137
  TaskId: string;
2951
3138
  }
3139
+ /**
3140
+ * 用户自定义语音审核任务控制参数
3141
+ */
3142
+ export interface UserDefineAsrTextReviewTemplateInfoForUpdate {
3143
+ /**
3144
+ * 用户自定语音审核任务开关,可选值:
3145
+ <li>ON:开启自定义语音审核任务;</li>
3146
+ <li>OFF:关闭自定义语音审核任务。</li>
3147
+ */
3148
+ Switch?: string;
3149
+ /**
3150
+ * 用户自定义语音过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义语音关键词素材时需要添加对应标签。
3151
+ 标签个数最多 10 个,每个标签长度最多 16 个字符。
3152
+ */
3153
+ LabelSet?: Array<string>;
3154
+ /**
3155
+ * 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
3156
+ */
3157
+ BlockConfidence?: number;
3158
+ /**
3159
+ * 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
3160
+ */
3161
+ ReviewConfidence?: number;
3162
+ }
3163
+ /**
3164
+ * CreateStreamPackageLinearAssemblyProgram请求参数结构体
3165
+ */
3166
+ export interface CreateStreamPackageLinearAssemblyProgramRequest {
3167
+ /**
3168
+ * Program名称。
3169
+ */
3170
+ Name: string;
3171
+ /**
3172
+ * 绑定的channel。
3173
+ */
3174
+ AttachedChannel: string;
3175
+ /**
3176
+ * 编排的目标source的类型,分直播Live和点播VOD。Tier为Basic时只支持VOD,Tier为Standard时支持Live和VOD
3177
+ */
3178
+ SourceType?: string;
3179
+ /**
3180
+ * 关联的source location。
3181
+ */
3182
+ SourceLocationId?: string;
3183
+ /**
3184
+ * 关联的直播or点播,source名称,location下全局唯一。
3185
+ */
3186
+ SourceName?: string;
3187
+ /**
3188
+ * PlaybackConf。
3189
+ */
3190
+ PlaybackConf?: PlaybackInfoReq;
3191
+ /**
3192
+ * AdBreaks,只有source类型为Vod时有效。
3193
+ */
3194
+ AdBreaks?: Array<AdBreakInfo>;
3195
+ }
3196
+ /**
3197
+ * SourceLocation垫片配置。
3198
+ */
3199
+ export interface SegmentDeliverInfo {
3200
+ /**
3201
+ * 默认内容源地址。
3202
+ */
3203
+ DefaultSegmentUrl?: string;
3204
+ /**
3205
+ * 自定义服务器地址。
3206
+ */
3207
+ NameServers?: Array<NameServer>;
3208
+ }
2952
3209
  /**
2953
3210
  * 视频内容识别输入参数类型
2954
3211
  */
@@ -3012,6 +3269,31 @@ export interface AiAnalysisTaskFrameTagResult {
3012
3269
  */
3013
3270
  Output?: AiAnalysisTaskFrameTagOutput;
3014
3271
  }
3272
+ /**
3273
+ * HLS配置参数
3274
+ */
3275
+ export interface HLSConfigureInfo {
3276
+ /**
3277
+ * 单个 TS 文件时长,单位:秒,取值范围 5-30 秒。
3278
+
3279
+ 不填默认为 30 秒。
3280
+ 注意:此字段可能返回 null,表示取不到有效值。
3281
+ */
3282
+ ItemDuration?: number;
3283
+ /**
3284
+ * 录制周期,单位:秒,取值范围 10 分钟到 12 小时。
3285
+
3286
+ 不填默认为 10分钟(3600 秒)。
3287
+ 注意:此字段可能返回 null,表示取不到有效值。
3288
+ */
3289
+ Interval?: number;
3290
+ /**
3291
+ * 续录等待时间,单位:秒。取值范围为60秒-1800秒。
3292
+ 不填默认为0(不启用续录)。
3293
+ 注意:此字段可能返回 null,表示取不到有效值。
3294
+ */
3295
+ ContinueTimeout?: number;
3296
+ }
3015
3297
  /**
3016
3298
  * 音频流配置参数
3017
3299
  */
@@ -3262,6 +3544,24 @@ export interface AiRecognitionTaskFaceResult {
3262
3544
  */
3263
3545
  Output?: AiRecognitionTaskFaceResultOutput;
3264
3546
  }
3547
+ /**
3548
+ * StartStreamPackageLinearAssemblyChannel返回参数结构体
3549
+ */
3550
+ export interface StartStreamPackageLinearAssemblyChannelResponse {
3551
+ /**
3552
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3553
+ */
3554
+ RequestId?: string;
3555
+ }
3556
+ /**
3557
+ * ModifyStreamPackageLinearAssemblyProgram返回参数结构体
3558
+ */
3559
+ export interface ModifyStreamPackageLinearAssemblyProgramResponse {
3560
+ /**
3561
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3562
+ */
3563
+ RequestId?: string;
3564
+ }
3265
3565
  /**
3266
3566
  * CreateAdaptiveDynamicStreamingTemplate请求参数结构体
3267
3567
  */
@@ -3572,6 +3872,19 @@ export interface AiRecognitionTaskOcrWordsResultInput {
3572
3872
  */
3573
3873
  Definition?: number;
3574
3874
  }
3875
+ /**
3876
+ * 线性组装频道垫片配置。
3877
+ */
3878
+ export interface SlateInfo {
3879
+ /**
3880
+ * source location的ID。
3881
+ */
3882
+ SourceLocationId?: string;
3883
+ /**
3884
+ * 对应的vod垫片内容源名称。
3885
+ */
3886
+ VodSourceName?: string;
3887
+ }
3575
3888
  /**
3576
3889
  * CreateQualityControlTemplate返回参数结构体
3577
3890
  */
@@ -3615,6 +3928,15 @@ export interface AiAnalysisTaskReelInput {
3615
3928
  */
3616
3929
  Definition?: number;
3617
3930
  }
3931
+ /**
3932
+ * DeleteStreamPackageLinearAssemblyProgram请求参数结构体
3933
+ */
3934
+ export interface DeleteStreamPackageLinearAssemblyProgramRequest {
3935
+ /**
3936
+ * Program id。
3937
+ */
3938
+ Id: string;
3939
+ }
3618
3940
  /**
3619
3941
  * 质检异常项。
3620
3942
  */
@@ -3716,6 +4038,23 @@ export interface ScheduleTask {
3716
4038
  */
3717
4039
  ActivityResultSet?: Array<ActivityResult>;
3718
4040
  }
4041
+ /**
4042
+ * 查询输入的RIST配置信息。
4043
+ */
4044
+ export interface DescribeInputRISTSettings {
4045
+ /**
4046
+ * RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
4047
+ */
4048
+ Mode?: string;
4049
+ /**
4050
+ * RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
4051
+ */
4052
+ Profile?: string;
4053
+ /**
4054
+ * RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
4055
+ */
4056
+ Buffer?: number;
4057
+ }
3719
4058
  /**
3720
4059
  * CreateStreamLinkEvent请求参数结构体
3721
4060
  */
@@ -3874,7 +4213,56 @@ export interface TagConfigureInfo {
3874
4213
  Switch: string;
3875
4214
  }
3876
4215
  /**
3877
- * 文本关键词识别输出。
4216
+ * 频道线性组装program信息。
4217
+ */
4218
+ export interface LinearAssemblyProgramInfo {
4219
+ /**
4220
+ * program名称。
4221
+ */
4222
+ Name?: string;
4223
+ /**
4224
+ * 编排的目标source的类型,分直播和点播。
4225
+ */
4226
+ SourceType?: string;
4227
+ /**
4228
+ * 关联的source location id。
4229
+ */
4230
+ SourceLocationId?: string;
4231
+ /**
4232
+ * SourceId,唯一标识一个source。
4233
+ */
4234
+ SourceId?: string;
4235
+ /**
4236
+ * 关联的直播or点播,source名称,location下全局唯一。
4237
+ */
4238
+ SourceName?: string;
4239
+ /**
4240
+ * 绑定的channel。
4241
+ */
4242
+ AttachedChannel?: string;
4243
+ /**
4244
+ * 播放配置。
4245
+ */
4246
+ PlaybackConf?: PlaybackInfo;
4247
+ /**
4248
+ * AdBreaks。
4249
+ */
4250
+ AdBreaks?: Array<AdBreakInfo>;
4251
+ /**
4252
+ * Id。
4253
+ */
4254
+ Id?: string;
4255
+ /**
4256
+ * Region。
4257
+ */
4258
+ Region?: string;
4259
+ /**
4260
+ * SourceLocation名称。
4261
+ */
4262
+ SourceLocationName?: string;
4263
+ }
4264
+ /**
4265
+ * 文本关键词识别输出。
3878
4266
  */
3879
4267
  export interface AiRecognitionTaskOcrWordsResultOutput {
3880
4268
  /**
@@ -4080,13 +4468,34 @@ export interface DescribeStreamLinkEventResponse {
4080
4468
  RequestId?: string;
4081
4469
  }
4082
4470
  /**
4083
- * EnableWorkflow请求参数结构体
4471
+ * DescribeStreamPackageSources返回参数结构体
4084
4472
  */
4085
- export interface EnableWorkflowRequest {
4473
+ export interface DescribeStreamPackageSourcesResponse {
4086
4474
  /**
4087
- * 工作流 ID。
4475
+ * Source列表。
4476
+ 注意:此字段可能返回 null,表示取不到有效值。
4088
4477
  */
4089
- WorkflowId: number;
4478
+ Infos?: Array<SourceInfo>;
4479
+ /**
4480
+ * 页数。
4481
+ */
4482
+ PageNum?: number;
4483
+ /**
4484
+ * 每页大小。
4485
+ */
4486
+ PageSize?: number;
4487
+ /**
4488
+ * 总数量。
4489
+ */
4490
+ TotalNum?: number;
4491
+ /**
4492
+ * 总页数。
4493
+ */
4494
+ TotalPage?: number;
4495
+ /**
4496
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4497
+ */
4498
+ RequestId?: string;
4090
4499
  }
4091
4500
  /**
4092
4501
  * CreateStreamLinkFlow返回参数结构体
@@ -4192,52 +4601,30 @@ export interface DescribeSmartSubtitleTemplatesRequest {
4192
4601
  ProcessType?: number;
4193
4602
  }
4194
4603
  /**
4195
- * 流状态实时查询接口的流状态信息
4604
+ * DescribeMDPMPSUserInfo返回参数结构体
4196
4605
  */
4197
- export interface FlowRealtimeStatusItem {
4198
- /**
4199
- * 类型,Input|Output。
4200
- */
4201
- Type: string;
4202
- /**
4203
- * 输入Id,如果Type为Input,此字段不为空。
4204
- */
4205
- InputId: string;
4606
+ export interface DescribeMDPMPSUserInfoResponse {
4206
4607
  /**
4207
- * 输出Id,如果Type为Output,此字段不为空。
4208
- */
4209
- OutputId: string;
4210
- /**
4211
- * 流Id。
4212
- */
4213
- FlowId: string;
4214
- /**
4215
- * 协议, SRT | RTMP。
4216
- */
4217
- Protocol: string;
4218
- /**
4219
- * 共同状态信息。
4220
- */
4221
- CommonStatus: FlowRealtimeStatusCommon;
4222
- /**
4223
- * 如果是SRT协议则有此字段。
4224
- 注意:此字段可能返回 null,表示取不到有效值。
4225
- */
4226
- SRTStatus: FlowRealtimeStatusSRT;
4227
- /**
4228
- * 如果是RTMP协议则有此字段。
4229
- 注意:此字段可能返回 null,表示取不到有效值。
4608
+ * 用户状态,取值为:
4609
+ <li> InvalidMpsUser:未开通mps;</li>
4610
+ <li>Normal:正常 ;</li>
4611
+ <li> Closed:下线;</li>
4612
+ <li> Arrearage:欠费停服</li>
4230
4613
  */
4231
- RTMPStatus: FlowRealtimeStatusRTMP;
4614
+ Status?: string;
4232
4615
  /**
4233
- * 服务器IP
4616
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
4234
4617
  */
4235
- ConnectServerIP: string;
4618
+ RequestId?: string;
4619
+ }
4620
+ /**
4621
+ * DeleteStreamPackageLinearAssemblyPrograms请求参数结构体
4622
+ */
4623
+ export interface DeleteStreamPackageLinearAssemblyProgramsRequest {
4236
4624
  /**
4237
- * 如果是RTP协议则有此字段。
4238
- 注意:此字段可能返回 null,表示取不到有效值。
4625
+ * Program id列表。
4239
4626
  */
4240
- RTPStatus: FlowRealtimeStatusRTP;
4627
+ Ids: Array<string>;
4241
4628
  }
4242
4629
  /**
4243
4630
  * DisassociateSecurityGroup返回参数结构体
@@ -4344,6 +4731,15 @@ export interface CreateAigcVideoTaskResponse {
4344
4731
  */
4345
4732
  RequestId?: string;
4346
4733
  }
4734
+ /**
4735
+ * ModifyAdaptiveDynamicStreamingTemplate返回参数结构体
4736
+ */
4737
+ export interface ModifyAdaptiveDynamicStreamingTemplateResponse {
4738
+ /**
4739
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4740
+ */
4741
+ RequestId?: string;
4742
+ }
4347
4743
  /**
4348
4744
  * 用户自定义语音审核任务控制参数
4349
4745
  */
@@ -4477,6 +4873,39 @@ export interface AiSampleFaceInfo {
4477
4873
  */
4478
4874
  Url?: string;
4479
4875
  }
4876
+ /**
4877
+ * 雪碧图信息
4878
+ */
4879
+ export interface MediaImageSpriteItem {
4880
+ /**
4881
+ * 雪碧图规格,参见[雪碧图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.9B.AA.E7.A2.A7.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
4882
+ */
4883
+ Definition?: number;
4884
+ /**
4885
+ * 雪碧图小图的高度。
4886
+ */
4887
+ Height?: number;
4888
+ /**
4889
+ * 雪碧图小图的宽度。
4890
+ */
4891
+ Width?: number;
4892
+ /**
4893
+ * 每一张雪碧图大图里小图的数量。
4894
+ */
4895
+ TotalCount?: number;
4896
+ /**
4897
+ * 每一张雪碧图大图的路径。
4898
+ */
4899
+ ImagePathSet?: Array<string>;
4900
+ /**
4901
+ * 雪碧图子图位置与时间关系的 WebVtt 文件路径。WebVtt 文件表明了各个雪碧图小图对应的时间点,以及在雪碧大图里的坐标位置,一般被播放器用于实现预览。
4902
+ */
4903
+ WebVttPath?: string;
4904
+ /**
4905
+ * 雪碧图文件的存储位置。
4906
+ */
4907
+ Storage?: TaskOutputStorage;
4908
+ }
4480
4909
  /**
4481
4910
  * 创建的输入RTSP拉流的配置信息。
4482
4911
  */
@@ -4705,30 +5134,17 @@ export interface WatermarkTemplate {
4705
5134
  CoordinateOrigin?: string;
4706
5135
  }
4707
5136
  /**
4708
- * 媒体质检任务结果类型
5137
+ * ModifyStreamLinkOutputInfo请求参数结构体
4709
5138
  */
4710
- export interface ScheduleExecRuleTaskResult {
4711
- /**
4712
- * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
4713
- */
4714
- Status?: string;
4715
- /**
4716
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
4717
- */
4718
- ErrCodeExt?: string;
4719
- /**
4720
- * 错误信息。
4721
- */
4722
- Message?: string;
5139
+ export interface ModifyStreamLinkOutputInfoRequest {
4723
5140
  /**
4724
- * 条件判断任务的输入。
5141
+ * 流Id。
4725
5142
  */
4726
- Input?: ExecRulesTask;
5143
+ FlowId: string;
4727
5144
  /**
4728
- * 条件判断任务的输出。
4729
- 注意:此字段可能返回 null,表示取不到有效值。
5145
+ * 需要修改的Output配置。
4730
5146
  */
4731
- Output?: ExecRuleTaskData;
5147
+ Output: ModifyOutputInfo;
4732
5148
  }
4733
5149
  /**
4734
5150
  * 智能擦除自定义参数
@@ -4848,6 +5264,19 @@ export interface ScratchRepairConfig {
4848
5264
  */
4849
5265
  Intensity?: number;
4850
5266
  }
5267
+ /**
5268
+ * 流的统计数据列表。
5269
+ */
5270
+ export interface FlowStatisticsArray {
5271
+ /**
5272
+ * 时间戳。
5273
+ */
5274
+ Timestamp: number;
5275
+ /**
5276
+ * 每个会话的统计数据。
5277
+ */
5278
+ FlowStatistics: Array<FlowStatistics>;
5279
+ }
4851
5280
  /**
4852
5281
  * DescribeImageTaskDetail请求参数结构体
4853
5282
  */
@@ -4889,6 +5318,27 @@ export interface PoliticalOcrReviewTemplateInfoForUpdate {
4889
5318
  */
4890
5319
  ReviewConfidence?: number;
4891
5320
  }
5321
+ /**
5322
+ * 字词信息。
5323
+ */
5324
+ export interface WordResult {
5325
+ /**
5326
+ * 字词文本。
5327
+ */
5328
+ Word?: string;
5329
+ /**
5330
+ * 字词起始时间戳,单位秒。
5331
+ */
5332
+ Start?: number;
5333
+ /**
5334
+ * 字词结束时间戳,单位秒。
5335
+ */
5336
+ End?: number;
5337
+ /**
5338
+ * 翻译文本
5339
+ */
5340
+ Trans?: string;
5341
+ }
4892
5342
  /**
4893
5343
  * ExtractBlindWatermark返回参数结构体
4894
5344
  */
@@ -4902,6 +5352,71 @@ export interface ExtractBlindWatermarkResponse {
4902
5352
  */
4903
5353
  RequestId?: string;
4904
5354
  }
5355
+ /**
5356
+ * SSAI广告插入配置。
5357
+ */
5358
+ export interface SSAIConf {
5359
+ /**
5360
+ * <p>广告决策服务器URL(ADS)。</p>
5361
+ */
5362
+ AdsUrl?: string;
5363
+ /**
5364
+ * <p>参数配置。</p>
5365
+ 注意:此字段可能返回 null,表示取不到有效值。
5366
+ */
5367
+ ConfigAliases?: Array<ConfigAliasesInfo>;
5368
+ /**
5369
+ * <p>是否开启广告标记透传。</p>
5370
+ */
5371
+ AdMarkerPassthrough?: boolean;
5372
+ /**
5373
+ * <p>如何处理广告中的标记,可选值[1-2]:<br>1:所有SCTE-35类型标记全部处理-all(默认)<br>2:SCTE-35enhanced,解析部分类型。</p>
5374
+ 注意:此字段可能返回 null,表示取不到有效值。
5375
+ */
5376
+ SCTE35AdType?: number;
5377
+ /**
5378
+ * <p>默认广告url。</p>
5379
+ */
5380
+ SlateAd?: string;
5381
+ /**
5382
+ * <p>未填充的最大时长,单位:秒。</p>
5383
+ */
5384
+ Threshold?: number;
5385
+ /**
5386
+ * <p>是否开启mpd location, true对应enable, false对应disable。</p>
5387
+ */
5388
+ DashMPDLocation?: boolean;
5389
+ /**
5390
+ * <p>被视作广告的标记类型,可选值[1-8]:</p><ol><li>Splice insert<br>2.Provider advertisement</li><li>Distributor advertisement</li><li>Provider placement opportunity</li><li>Distributor placement opportunity</li><li>Break</li><li>Provider overlay placement opportunity</li><li>Distributor overlay placement opportunity。</li></ol>
5391
+ 注意:此字段可能返回 null,表示取不到有效值。
5392
+ */
5393
+ AdTriggers?: Array<number | bigint>;
5394
+ /**
5395
+ * <p>被视作广告的分发限制类型,可选值[1-4]:<br>1:None<br>2:Restricted(默认) 3:Unrestricted<br>4.Both</p>
5396
+ 注意:此字段可能返回 null,表示取不到有效值。
5397
+ */
5398
+ DeliveryRestrictions?: number;
5399
+ /**
5400
+ * <p>源流CDN前缀,需要以http://或者https://开头。</p>
5401
+ */
5402
+ SourceCDNPrefix?: string;
5403
+ /**
5404
+ * <p>广告CDN前缀,需要以http://或者https://开头。</p>
5405
+ */
5406
+ AdCDNPrefix?: string;
5407
+ /**
5408
+ * <p>预加载广告决策服务地址。</p>
5409
+ */
5410
+ PreRollAdsUrl?: string;
5411
+ /**
5412
+ * <p>预加载广告最大允许时长,0-3600。</p>
5413
+ */
5414
+ PreRollMaxAllowedDuration?: number;
5415
+ /**
5416
+ * <p>是否开启多次请求ADS,开启后将优先请求ADS,请求失败后再请求兜底广告</p>
5417
+ */
5418
+ MultiRequest?: boolean;
5419
+ }
4905
5420
  /**
4906
5421
  * 极速高清参数配置。
4907
5422
  */
@@ -5435,21 +5950,17 @@ export interface AiAnalysisTaskHorizontalToVerticalResult {
5435
5950
  Output?: AiAnalysisTaskHorizontalToVerticalOutput;
5436
5951
  }
5437
5952
  /**
5438
- * 查询输入的RIST配置信息。
5953
+ * 参数配置。
5439
5954
  */
5440
- export interface DescribeInputRISTSettings {
5441
- /**
5442
- * RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
5443
- */
5444
- Mode?: string;
5955
+ export interface ConfigAliasesInfo {
5445
5956
  /**
5446
- * RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
5957
+ * 参数名。
5447
5958
  */
5448
- Profile?: string;
5959
+ ParamName?: string;
5449
5960
  /**
5450
- * RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
5961
+ * alias-value配置。
5451
5962
  */
5452
- Buffer?: number;
5963
+ AliasValueList?: Array<AliasValueConf>;
5453
5964
  }
5454
5965
  /**
5455
5966
  * 创建的输入RTMP拉流源站配置信息。
@@ -5671,17 +6182,30 @@ export interface SmartEraseWatermarkConfig {
5671
6182
  CustomAreas?: Array<EraseTimeArea>;
5672
6183
  }
5673
6184
  /**
5674
- * DescribeStreamLinkEvents返回参数结构体
6185
+ * CreateMediaEvaluation返回参数结构体
5675
6186
  */
5676
- export interface DescribeStreamLinkEventsResponse {
6187
+ export interface CreateMediaEvaluationResponse {
5677
6188
  /**
5678
- * 媒体传输事件的配置信息列表。
6189
+ * 任务 ID。
5679
6190
  */
5680
- Infos?: Array<DescribeEvent>;
6191
+ TaskId?: string;
5681
6192
  /**
5682
- * 当前页数。
6193
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5683
6194
  */
5684
- PageNum?: number;
6195
+ RequestId?: string;
6196
+ }
6197
+ /**
6198
+ * DescribeStreamLinkEvents返回参数结构体
6199
+ */
6200
+ export interface DescribeStreamLinkEventsResponse {
6201
+ /**
6202
+ * 媒体传输事件的配置信息列表。
6203
+ */
6204
+ Infos?: Array<DescribeEvent>;
6205
+ /**
6206
+ * 当前页数。
6207
+ */
6208
+ PageNum?: number;
5685
6209
  /**
5686
6210
  * 每页大小。
5687
6211
  */
@@ -5733,6 +6257,15 @@ export interface DescribeSmartEraseTemplatesRequest {
5733
6257
  */
5734
6258
  Name?: string;
5735
6259
  }
6260
+ /**
6261
+ * StartStreamPackageLinearAssemblyChannel请求参数结构体
6262
+ */
6263
+ export interface StartStreamPackageLinearAssemblyChannelRequest {
6264
+ /**
6265
+ * Channel ID。
6266
+ */
6267
+ Id: string;
6268
+ }
5736
6269
  /**
5737
6270
  * 语音涉敏任务控制参数。
5738
6271
  */
@@ -5870,6 +6403,15 @@ export interface AiReviewTaskTerrorismOcrResult {
5870
6403
  */
5871
6404
  Output?: AiReviewTerrorismOcrTaskOutput;
5872
6405
  }
6406
+ /**
6407
+ * DescribeStreamPackageSSAIChannel请求参数结构体
6408
+ */
6409
+ export interface DescribeStreamPackageSSAIChannelRequest {
6410
+ /**
6411
+ * 广告插入配置ID。
6412
+ */
6413
+ ID: string;
6414
+ }
5873
6415
  /**
5874
6416
  * 任务判断条件
5875
6417
  */
@@ -6021,6 +6563,15 @@ export interface LiveSmartSubtitleResult {
6021
6563
  */
6022
6564
  UserId?: string;
6023
6565
  }
6566
+ /**
6567
+ * ModifyStreamPackageSSAIChannel返回参数结构体
6568
+ */
6569
+ export interface ModifyStreamPackageSSAIChannelResponse {
6570
+ /**
6571
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6572
+ */
6573
+ RequestId?: string;
6574
+ }
6024
6575
  /**
6025
6576
  * 语音违禁任务控制参数
6026
6577
  */
@@ -6059,13 +6610,17 @@ export interface ModifyAnimatedGraphicsTemplateResponse {
6059
6610
  RequestId?: string;
6060
6611
  }
6061
6612
  /**
6062
- * DeleteSmartSubtitleTemplate请求参数结构体
6613
+ * 线性组装频道告警返回信息。
6063
6614
  */
6064
- export interface DeleteSmartSubtitleTemplateRequest {
6615
+ export interface ChannelAlertResp {
6065
6616
  /**
6066
- * 智能字幕模板唯一标识。
6617
+ * Program告警聚合信息。
6067
6618
  */
6068
- Definition: number;
6619
+ ProgramAlertCounts?: Array<ProgramAlertCounts>;
6620
+ /**
6621
+ * Program告警明细信息。
6622
+ */
6623
+ ProgramAlertInfos?: Array<ProgramAlertInfos>;
6069
6624
  }
6070
6625
  /**
6071
6626
  * DeleteAdaptiveDynamicStreamingTemplate请求参数结构体
@@ -6162,6 +6717,35 @@ export interface ScheduleQualityControlTaskResult {
6162
6717
  */
6163
6718
  Progress?: number;
6164
6719
  }
6720
+ /**
6721
+ * ModifyStreamPackageSourceLocation请求参数结构体
6722
+ */
6723
+ export interface ModifyStreamPackageSourceLocationRequest {
6724
+ /**
6725
+ * SourceLocation Id。
6726
+ */
6727
+ Id: string;
6728
+ /**
6729
+ * 修改后的名称。
6730
+ */
6731
+ Name?: string;
6732
+ /**
6733
+ * 基准URL。
6734
+ */
6735
+ BaseUrl?: string;
6736
+ /**
6737
+ * 是否开启补片。
6738
+ */
6739
+ SegmentDeliverEnable?: boolean;
6740
+ /**
6741
+ * 补片配置。
6742
+ */
6743
+ SegmentDeliverConf?: SegmentDeliverInfo;
6744
+ /**
6745
+ * 是否开启package分发分片,默认开启。
6746
+ */
6747
+ SegmentDeliverUsePackageEnable?: boolean;
6748
+ }
6165
6749
  /**
6166
6750
  * 媒体质检输入参数类型
6167
6751
  */
@@ -6259,6 +6843,15 @@ export interface ComposeTransitionItem {
6259
6843
  */
6260
6844
  Transitions?: Array<ComposeTransitionOperation>;
6261
6845
  }
6846
+ /**
6847
+ * DeleteStreamPackageSource请求参数结构体
6848
+ */
6849
+ export interface DeleteStreamPackageSourceRequest {
6850
+ /**
6851
+ * Source Id。
6852
+ */
6853
+ Id: string;
6854
+ }
6262
6855
  /**
6263
6856
  * DeleteAIAnalysisTemplate请求参数结构体
6264
6857
  */
@@ -6269,49 +6862,41 @@ export interface DeleteAIAnalysisTemplateRequest {
6269
6862
  Definition: number;
6270
6863
  }
6271
6864
  /**
6272
- * EditMedia请求参数结构体
6865
+ * DescribeMDPMPSUserInfo请求参数结构体
6273
6866
  */
6274
- export interface EditMediaRequest {
6275
- /**
6276
- * <p>输入的视频文件信息。</p>
6277
- */
6278
- FileInfos: Array<EditMediaFileInfo>;
6279
- /**
6280
- * <p>媒体处理输出文件的目标存储。</p>
6281
- */
6282
- OutputStorage: TaskOutputStorage;
6283
- /**
6284
- * <p>媒体处理输出文件的目标路径。</p><p>注意:对于复杂合成任务,路径中的文件名只可为数字、字母、-、_ 的组合,最长 64 个字符。</p>
6285
- */
6286
- OutputObjectPath: string;
6867
+ export type DescribeMDPMPSUserInfoRequest = null;
6868
+ /**
6869
+ * 广告插入频道配置信息。
6870
+ */
6871
+ export interface SSAIChannelInfo {
6287
6872
  /**
6288
- * <p>【剪辑】任务生成的文件配置。</p>
6873
+ * 频道ID,全局唯一标识。
6289
6874
  */
6290
- OutputConfig?: EditMediaOutputConfig;
6875
+ ID?: string;
6291
6876
  /**
6292
- * <p>【合成】任务配置。</p><p>注意:当其不为空时,认为是合成任务,否则按剪辑任务处理。</p>
6877
+ * 频道名称。
6293
6878
  */
6294
- ComposeConfig?: ComposeMediaConfig;
6879
+ Name?: string;
6295
6880
  /**
6296
- * <p>任务的事件通知信息,不填代表不获取事件通知。</p>
6881
+ * 广告源信息。
6297
6882
  */
6298
- TaskNotifyConfig?: TaskNotifyConfig;
6883
+ ContentSource?: string;
6299
6884
  /**
6300
- * <p>任务优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。</p>
6885
+ * 播放地址。
6301
6886
  */
6302
- TasksPriority?: number;
6887
+ PlaybackPrefix?: string;
6303
6888
  /**
6304
- * <p>用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。</p>
6889
+ * 广告插入SSAI配置信息。
6305
6890
  */
6306
- SessionId?: string;
6891
+ SSAIInfo?: SSAIConf;
6307
6892
  /**
6308
- * <p>来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。</p>
6893
+ * 地域信息。
6309
6894
  */
6310
- SessionContext?: string;
6895
+ Region?: string;
6311
6896
  /**
6312
- * <p>资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。</p>
6897
+ * 用于clickthrough地址
6313
6898
  */
6314
- ResourceId?: string;
6899
+ SessionInitPrefix?: string;
6315
6900
  }
6316
6901
  /**
6317
6902
  * DescribeBlindWatermarkTemplates请求参数结构体
@@ -6401,42 +6986,25 @@ export interface S3InputInfo {
6401
6986
  S3SecretKey?: string;
6402
6987
  }
6403
6988
  /**
6404
- * 对视频截雪碧图任务结果类型
6989
+ * DescribeStreamPackageLinearAssemblyPrograms请求参数结构体
6405
6990
  */
6406
- export interface MediaProcessTaskImageSpriteResult {
6407
- /**
6408
- * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
6409
- */
6410
- Status?: string;
6411
- /**
6412
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
6413
- */
6414
- ErrCodeExt?: string;
6415
- /**
6416
- * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
6417
- */
6418
- ErrCode?: number;
6419
- /**
6420
- * 错误信息。
6421
- */
6422
- Message?: string;
6991
+ export interface DescribeStreamPackageLinearAssemblyProgramsRequest {
6423
6992
  /**
6424
- * 对视频截雪碧图任务的输入。
6993
+ * 页数,取值范围为[1, 1000]。
6425
6994
  */
6426
- Input?: ImageSpriteTaskInput;
6995
+ PageNum?: number;
6427
6996
  /**
6428
- * 对视频截雪碧图任务的输出。
6429
- 注意:此字段可能返回 null,表示取不到有效值。
6997
+ * 每页大小,取值范围为[1, 10000]。
6430
6998
  */
6431
- Output?: MediaImageSpriteItem;
6999
+ PageSize?: number;
6432
7000
  /**
6433
- * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)
7001
+ * 查询某个Channel下面的所有Program
6434
7002
  */
6435
- BeginProcessTime?: string;
7003
+ ChannelId?: string;
6436
7004
  /**
6437
- * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
7005
+ * 按Name过滤,模糊匹配
6438
7006
  */
6439
- FinishTime?: string;
7007
+ Name?: string;
6440
7008
  }
6441
7009
  /**
6442
7010
  * DescribeAsrHotwordsList请求参数结构体
@@ -6519,6 +7087,36 @@ export interface RTPAddressDestination {
6519
7087
  */
6520
7088
  Port: number;
6521
7089
  }
7090
+ /**
7091
+ * DescribeStreamPackageLinearAssemblyProgramSchedules返回参数结构体
7092
+ */
7093
+ export interface DescribeStreamPackageLinearAssemblyProgramSchedulesResponse {
7094
+ /**
7095
+ * Program的调度列表。
7096
+ 注意:此字段可能返回 null,表示取不到有效值。
7097
+ */
7098
+ Infos?: Array<LinearAssemblyProgramInfo>;
7099
+ /**
7100
+ * 页数。
7101
+ */
7102
+ PageNum?: number;
7103
+ /**
7104
+ * 每页大小。
7105
+ */
7106
+ PageSize?: number;
7107
+ /**
7108
+ * 总数量。
7109
+ */
7110
+ TotalNum?: number;
7111
+ /**
7112
+ * 总页数。
7113
+ */
7114
+ TotalPage?: number;
7115
+ /**
7116
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7117
+ */
7118
+ RequestId?: string;
7119
+ }
6522
7120
  /**
6523
7121
  * DescribeAdaptiveDynamicStreamingTemplates返回参数结构体
6524
7122
  */
@@ -6536,6 +7134,10 @@ export interface DescribeAdaptiveDynamicStreamingTemplatesResponse {
6536
7134
  */
6537
7135
  RequestId?: string;
6538
7136
  }
7137
+ /**
7138
+ * DescribeStreamPackageActivateState请求参数结构体
7139
+ */
7140
+ export type DescribeStreamPackageActivateStateRequest = null;
6539
7141
  /**
6540
7142
  * 内容审核 Ocr 文字审核嫌疑片段
6541
7143
  */
@@ -6592,13 +7194,41 @@ export interface AiAnalysisTaskHighlightOutput {
6592
7194
  OutputStorage?: TaskOutputStorage;
6593
7195
  }
6594
7196
  /**
6595
- * StopStreamLinkFlow请求参数结构体
7197
+ * 源信息。
6596
7198
  */
6597
- export interface StopStreamLinkFlowRequest {
7199
+ export interface SourceInfo {
6598
7200
  /**
6599
- * 流Id。
7201
+ * 名称。
6600
7202
  */
6601
- FlowId: string;
7203
+ Name?: string;
7204
+ /**
7205
+ * source类型,区分直播Live和点播Vod。
7206
+ */
7207
+ Type?: string;
7208
+ /**
7209
+ * 源配置。
7210
+ */
7211
+ PackageConf?: Array<SourcePackageConf>;
7212
+ /**
7213
+ * ID。
7214
+ */
7215
+ Id?: string;
7216
+ /**
7217
+ * 创建时间戳。
7218
+ */
7219
+ CreateTime?: number;
7220
+ /**
7221
+ * 更新时间戳。
7222
+ */
7223
+ UpdateTime?: number;
7224
+ /**
7225
+ * Region。
7226
+ */
7227
+ Region?: string;
7228
+ /**
7229
+ * 源标签
7230
+ */
7231
+ SourceTags?: Array<SourceTag>;
6602
7232
  }
6603
7233
  /**
6604
7234
  * 智能字幕翻译的输入。
@@ -6658,6 +7288,15 @@ export interface ImageWatermarkInput {
6658
7288
  */
6659
7289
  RepeatType?: string;
6660
7290
  }
7291
+ /**
7292
+ * DescribeStreamPackageLinearAssemblyChannel请求参数结构体
7293
+ */
7294
+ export interface DescribeStreamPackageLinearAssemblyChannelRequest {
7295
+ /**
7296
+ * 频道id。
7297
+ */
7298
+ Id: string;
7299
+ }
6661
7300
  /**
6662
7301
  * SRT FEC 设置
6663
7302
  */
@@ -6715,6 +7354,41 @@ export interface AsrFullTextConfigureInfoForUpdate {
6715
7354
  */
6716
7355
  SourceLanguage?: string;
6717
7356
  }
7357
+ /**
7358
+ * 智能擦除任务
7359
+ */
7360
+ export interface SmartEraseTaskInput {
7361
+ /**
7362
+ * 智能擦除模板id。
7363
+ */
7364
+ Definition?: number;
7365
+ /**
7366
+ * 智能擦除自定义参数,当 Definition 填 0 时有效。 该参数用于高度定制场景,建议您优先使用 Definition 指定智能擦除参数。
7367
+ 注意:此字段可能返回 null,表示取不到有效值。
7368
+ */
7369
+ RawParameter?: RawSmartEraseParameter;
7370
+ /**
7371
+ * 智能擦除自定义参数,当 Definition 不填 0 时有效。 当填写了该结构中的部分擦除参数时,将使用填写的参数覆盖智能擦除模板中的参数。 该参数用于高度定制场景,建议您仅使用 Definition 指定智能擦除参数。
7372
+ */
7373
+ OverrideParameter?: OverrideEraseParameter;
7374
+ /**
7375
+ * 文件的目标存储,不填则继承上层的 OutputStorage 值。
7376
+ 注意:此字段可能返回 null,表示取不到有效值。
7377
+ */
7378
+ OutputStorage?: TaskOutputStorage;
7379
+ /**
7380
+ * 文件的输出路径,可以为相对路径或者绝对路径。
7381
+ 若需定义输出路径,路径需以`.{format}`结尾。变量名请参考 [文件名变量说明](https://cloud.tencent.com/document/product/862/37039)。
7382
+ 相对路径示例:
7383
+ <li>文件名_{变量名}.{format}</li>
7384
+ <li>文件名.{format}</li>
7385
+ 绝对路径示例:
7386
+ <li>/自定义路径/文件名_{变量名}.{format}</li>
7387
+
7388
+ **注意**:目前不支持`BatchProcessMedia`接口。
7389
+ */
7390
+ OutputObjectPath?: string;
7391
+ }
6718
7392
  /**
6719
7393
  * 直播录制输出文件信息
6720
7394
  */
@@ -6745,6 +7419,19 @@ export interface LiveRecordFile {
6745
7419
  */
6746
7420
  EndTime?: string;
6747
7421
  }
7422
+ /**
7423
+ * DescribeStreamPackageActivateState返回参数结构体
7424
+ */
7425
+ export interface DescribeStreamPackageActivateStateResponse {
7426
+ /**
7427
+ * 用户已激活为0,否则为非0。
7428
+ */
7429
+ Status?: number;
7430
+ /**
7431
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7432
+ */
7433
+ RequestId?: string;
7434
+ }
6748
7435
  /**
6749
7436
  * 视频编辑/合成任务 媒体素材源信息。
6750
7437
  */
@@ -6820,6 +7507,31 @@ export interface ModifyBlindWatermarkTemplateResponse {
6820
7507
  */
6821
7508
  RequestId?: string;
6822
7509
  }
7510
+ /**
7511
+ * DescribeStreamPackageSSAIChannels返回参数结构体
7512
+ */
7513
+ export interface DescribeStreamPackageSSAIChannelsResponse {
7514
+ /**
7515
+ * 广告插入配置信息。
7516
+ */
7517
+ Infos?: Array<SSAIChannelInfo>;
7518
+ /**
7519
+ * 页码。
7520
+ */
7521
+ PageNum?: number;
7522
+ /**
7523
+ * 每页大小。
7524
+ */
7525
+ PageSize?: number;
7526
+ /**
7527
+ * 总条目数。
7528
+ */
7529
+ TotalNum?: number;
7530
+ /**
7531
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7532
+ */
7533
+ RequestId?: string;
7534
+ }
6823
7535
  /**
6824
7536
  * DescribeAIAnalysisTemplates请求参数结构体
6825
7537
  */
@@ -6933,6 +7645,19 @@ export interface EnableScheduleRequest {
6933
7645
  */
6934
7646
  ScheduleId: number;
6935
7647
  }
7648
+ /**
7649
+ * 自定义服务器信息。
7650
+ */
7651
+ export interface NameServer {
7652
+ /**
7653
+ * 名称。
7654
+ */
7655
+ Name?: string;
7656
+ /**
7657
+ * 地址。
7658
+ */
7659
+ Url?: string;
7660
+ }
6936
7661
  /**
6937
7662
  * 自定义转码的规格参数。
6938
7663
  */
@@ -7423,33 +8148,17 @@ export interface DescribeLiveRecordTemplatesRequest {
7423
8148
  Name?: string;
7424
8149
  }
7425
8150
  /**
7426
- * DescribeWatermarkTemplates请求参数结构体
8151
+ * DescribeStreamPackageSourceLocations请求参数结构体
7427
8152
  */
7428
- export interface DescribeWatermarkTemplatesRequest {
8153
+ export interface DescribeStreamPackageSourceLocationsRequest {
7429
8154
  /**
7430
- * 水印模板唯一标识过滤条件,数组长度限制:100
8155
+ * 页数,取值范围为[1, 1000]
7431
8156
  */
7432
- Definitions?: Array<number | bigint>;
7433
- /**
7434
- * 水印类型过滤条件,可选值:
7435
- <li>image:图片水印;</li>
7436
- <li>text:文字水印。</li>
7437
- */
7438
- Type?: string;
7439
- /**
7440
- * 分页偏移量,默认值:0。
7441
- */
7442
- Offset?: number;
7443
- /**
7444
- * 返回记录条数
7445
- <li>默认值:10;</li>
7446
- <li>最大值:100。</li>
7447
- */
7448
- Limit?: number;
8157
+ PageNum?: number;
7449
8158
  /**
7450
- * 水印模板标识过滤条件,长度限制:64 个字符。
8159
+ * 每页大小,取值范围为[1, 1000]。
7451
8160
  */
7452
- Name?: string;
8161
+ PageSize?: number;
7453
8162
  }
7454
8163
  /**
7455
8164
  * 创建输出的配置信息。
@@ -7522,6 +8231,19 @@ export interface CreateOutputInfo {
7522
8231
  */
7523
8232
  StreamSelector?: StreamSelector;
7524
8233
  }
8234
+ /**
8235
+ * DescribeStreamPackageSourceLocation返回参数结构体
8236
+ */
8237
+ export interface DescribeStreamPackageSourceLocationResponse {
8238
+ /**
8239
+ * SourceLocation信息。
8240
+ */
8241
+ Info?: SourceLocationInfo;
8242
+ /**
8243
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8244
+ */
8245
+ RequestId?: string;
8246
+ }
7525
8247
  /**
7526
8248
  * 媒体处理输出对象信息。
7527
8249
  */
@@ -7596,37 +8318,13 @@ export interface MediaProcessTaskResult {
7596
8318
  AdaptiveDynamicStreamingTask?: MediaProcessTaskAdaptiveDynamicStreamingResult;
7597
8319
  }
7598
8320
  /**
7599
- * ModifyAIAnalysisTemplate请求参数结构体
8321
+ * DeleteStreamPackageLinearAssemblyChannel请求参数结构体
7600
8322
  */
7601
- export interface ModifyAIAnalysisTemplateRequest {
7602
- /**
7603
- * 视频内容分析模板唯一标识。
7604
- */
7605
- Definition: number;
7606
- /**
7607
- * 视频内容分析模板名称,长度限制:64 个字符。
7608
- */
7609
- Name?: string;
7610
- /**
7611
- * 视频内容分析模板描述信息,长度限制:256 个字符。
7612
- */
7613
- Comment?: string;
7614
- /**
7615
- * 智能分类任务控制参数。
7616
- */
7617
- ClassificationConfigure?: ClassificationConfigureInfoForUpdate;
7618
- /**
7619
- * 智能标签任务控制参数。
7620
- */
7621
- TagConfigure?: TagConfigureInfoForUpdate;
7622
- /**
7623
- * 智能封面任务控制参数。
7624
- */
7625
- CoverConfigure?: CoverConfigureInfoForUpdate;
8323
+ export interface DeleteStreamPackageLinearAssemblyChannelRequest {
7626
8324
  /**
7627
- * 智能按帧标签任务控制参数。
8325
+ * 频道id。
7628
8326
  */
7629
- FrameTagConfigure?: FrameTagConfigureInfoForUpdate;
8327
+ Id: string;
7630
8328
  }
7631
8329
  /**
7632
8330
  * 用户自定义审核任务控制参数
@@ -7663,6 +8361,127 @@ export interface DeleteQualityControlTemplateRequest {
7663
8361
  */
7664
8362
  Definition: number;
7665
8363
  }
8364
+ /**
8365
+ * 广告配置及广告类型维度下的SSAI用量详情
8366
+ */
8367
+ export interface UsageDetail {
8368
+ /**
8369
+ * <p>广告配置uniq_id</p>
8370
+ */
8371
+ UniqId?: string;
8372
+ /**
8373
+ * <p>广告配置id</p>
8374
+ */
8375
+ ChannelId?: string;
8376
+ /**
8377
+ * <p>广告配置名称</p>
8378
+ */
8379
+ ChannelName?: string;
8380
+ /**
8381
+ * <p>广告类型</p>
8382
+ */
8383
+ AdType?: string;
8384
+ /**
8385
+ * <p>广告请求成功数</p>
8386
+ */
8387
+ AdRequestSuccess?: number;
8388
+ /**
8389
+ * <p>广告请求失败数</p>
8390
+ */
8391
+ AdRequestFail?: number;
8392
+ /**
8393
+ * <p>广告曝光数</p>
8394
+ */
8395
+ Impression?: number;
8396
+ /**
8397
+ * <p>广告开始播放数</p>
8398
+ */
8399
+ Start?: number;
8400
+ /**
8401
+ * <p>广告播放到1/4处数</p>
8402
+ */
8403
+ FirstQuarter?: number;
8404
+ /**
8405
+ * <p>广告播放到1/2处数</p>
8406
+ */
8407
+ Midpoint?: number;
8408
+ /**
8409
+ * <p>广告播放到3/4处数</p>
8410
+ */
8411
+ ThirdQuarter?: number;
8412
+ /**
8413
+ * <p>广告播放完成数</p>
8414
+ */
8415
+ Complete?: number;
8416
+ /**
8417
+ * <p>中贴广告标记时间</p>
8418
+ */
8419
+ AdMarkerTime?: number;
8420
+ /**
8421
+ * <p>中贴个性化替换时间</p>
8422
+ */
8423
+ ReplacedTime?: number;
8424
+ /**
8425
+ * <p>中贴个性化广告填充率</p>
8426
+ */
8427
+ MidFillRate?: number;
8428
+ /**
8429
+ * <p>前贴广告请求数</p>
8430
+ */
8431
+ PreReqNum?: number;
8432
+ /**
8433
+ * <p>前贴广告替换数</p>
8434
+ */
8435
+ PreReplacedNum?: number;
8436
+ /**
8437
+ * <p>前贴广告替换率</p>
8438
+ */
8439
+ PreReplaceRate?: number;
8440
+ /**
8441
+ * <p>在清单中发现了广告标记次数</p>
8442
+ */
8443
+ ADMarkerFound?: number;
8444
+ /**
8445
+ * <p>向ADS请求广告次数</p>
8446
+ */
8447
+ MakeAdsRequest?: number;
8448
+ /**
8449
+ * <p>从ADS收到VAST返回次数</p>
8450
+ */
8451
+ VASTResponse?: number;
8452
+ /**
8453
+ * <p>成功填充了广告次数</p>
8454
+ */
8455
+ FilledAvail?: number;
8456
+ /**
8457
+ * <p>执行广告替换时遇到问题次数</p>
8458
+ */
8459
+ WarningNoAd?: number;
8460
+ /**
8461
+ * <p>ADS返回超时次数</p>
8462
+ */
8463
+ ErrorAdsTimeout?: number;
8464
+ /**
8465
+ * <p>ADS 返回了一个空的 VAST 响应次数</p>
8466
+ */
8467
+ EmptyVASTResponse?: number;
8468
+ /**
8469
+ * <p>ADS 返回了一个空的VMAP 响应次数</p>
8470
+ */
8471
+ EmptyVMAPResponse?: number;
8472
+ /**
8473
+ * <p>日期</p>
8474
+ */
8475
+ Date?: string;
8476
+ /**
8477
+ * <p>开始时间</p>
8478
+ */
8479
+ StartTime?: string;
8480
+ /**
8481
+ * <p>结束时间</p>
8482
+ */
8483
+ EndTime?: string;
8484
+ }
7666
8485
  /**
7667
8486
  * 色彩增强配置
7668
8487
  */
@@ -8021,81 +8840,47 @@ export interface AiRecognitionTaskFaceSegmentItem {
8021
8840
  AreaCoordSet?: Array<number | bigint>;
8022
8841
  }
8023
8842
  /**
8024
- * 图片缩放配置
8843
+ * DeleteStreamPackageSourceLocation返回参数结构体
8025
8844
  */
8026
- export interface ImageResizeConfig {
8845
+ export interface DeleteStreamPackageSourceLocationResponse {
8027
8846
  /**
8028
- * 能力配置开关,可选值:
8029
- <li>ON:开启</li>
8030
- <li>OFF:关闭</li>
8031
- 默认值:ON。
8032
- */
8033
- Switch?: string;
8034
- /**
8035
- * 输出图片模式,可选模式:
8036
- <li>percent: 指定缩放倍率,可以为小数</li>
8037
- <li>mfit: 缩放至指定宽高的较大矩形</li>
8038
- <li>lfit: 缩放至指定宽高的较小矩形</li>
8039
- <li>fill: 缩放至指定宽高的较大矩形,并居中裁剪指定宽高</li>
8040
- <li>pad: 缩放至指定宽高的较小矩形,并填充到指定宽高</li>
8041
- <li>fixed: 缩放至固定宽高,强制缩放</li>
8042
- 默认值:percent。
8043
- 注意:此字段可能返回 null,表示取不到有效值。
8847
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8044
8848
  */
8045
- Mode?: string;
8849
+ RequestId?: string;
8850
+ }
8851
+ /**
8852
+ * CreateStreamPackageSource请求参数结构体
8853
+ */
8854
+ export interface CreateStreamPackageSourceRequest {
8046
8855
  /**
8047
- * 缩放倍率,可以为小数,当Mode为percent时使用。
8048
-
8049
- 默认值:1.0。
8050
- 取值范围:[0.1,10.0]
8051
- 注意:此字段可能返回 null,表示取不到有效值。
8856
+ * 该source所属的location id,必填且唯一绑定一个location。
8052
8857
  */
8053
- Percent?: number;
8858
+ AttachedLocation: string;
8054
8859
  /**
8055
- * 目标图片宽度。
8056
-
8057
- 取值范围:[1,16384]。
8058
- 注意:此字段在Mode非percent时优先使用。
8059
- 注意:此字段可能返回 null,表示取不到有效值。
8860
+ * Source名称,在location下面全局唯一。
8060
8861
  */
8061
- Width?: number;
8862
+ Name: string;
8062
8863
  /**
8063
- * 目标图片高度。
8064
-
8065
- 取值范围:[1,16384]。
8066
- 注意:此字段在Mode非percent时优先使用。
8067
- 注意:此字段可能返回 null,表示取不到有效值。
8864
+ * 区分直播Live和点播VOD source类型,可选值:Live、VOD。
8068
8865
  */
8069
- Height?: number;
8866
+ Type: string;
8070
8867
  /**
8071
- * 目标图片长边。
8072
-
8073
- 取值范围:[1,16384]。
8074
- 注意:此字段在Mode非percent且未配置Width和Height时使用。
8075
- 注意:此字段可能返回 null,表示取不到有效值。
8868
+ * source具体配置。
8076
8869
  */
8077
- LongSide?: number;
8870
+ PackageConfs?: Array<SourcePackageConf>;
8078
8871
  /**
8079
- * 目标图片短边。
8080
-
8081
- 取值范围:[1,16384]。
8082
- 注意:此字段在Mode非percent且未配置Width和Height时使用。
8083
- 注意:此字段可能返回 null,表示取不到有效值。
8872
+ * sourcetag标签,ADS可以根据Source Tag信息,返回更精准的广告
8084
8873
  */
8085
- ShortSide?: number;
8874
+ SourceTags?: Array<SourceTag>;
8086
8875
  }
8087
8876
  /**
8088
- * CreateMediaEvaluation返回参数结构体
8877
+ * DescribeStreamPackageLinearAssemblyProgram请求参数结构体
8089
8878
  */
8090
- export interface CreateMediaEvaluationResponse {
8879
+ export interface DescribeStreamPackageLinearAssemblyProgramRequest {
8091
8880
  /**
8092
- * 任务 ID
8881
+ * program id
8093
8882
  */
8094
- TaskId?: string;
8095
- /**
8096
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8097
- */
8098
- RequestId?: string;
8883
+ Id: string;
8099
8884
  }
8100
8885
  /**
8101
8886
  * 智能标签结果类型
@@ -8127,6 +8912,23 @@ export interface AiAnalysisTaskTagResult {
8127
8912
  */
8128
8913
  Output?: AiAnalysisTaskTagOutput;
8129
8914
  }
8915
+ /**
8916
+ * DescribeStreamPackageLinearAssemblyChannelAlerts请求参数结构体
8917
+ */
8918
+ export interface DescribeStreamPackageLinearAssemblyChannelAlertsRequest {
8919
+ /**
8920
+ * 频道ID。
8921
+ */
8922
+ ChannelId: string;
8923
+ /**
8924
+ * 查询开始时间,Unix时间戳,支持最近七天的查询。
8925
+ */
8926
+ StartTime?: number;
8927
+ /**
8928
+ * 查询结束时间,Unix时间戳,支持最近七天的查询。
8929
+ */
8930
+ EndTime?: number;
8931
+ }
8130
8932
  /**
8131
8933
  * 智能擦除任务输入类型
8132
8934
  */
@@ -8201,6 +9003,15 @@ export interface BatchStopStreamLinkFlowRequest {
8201
9003
  */
8202
9004
  FlowIds?: Array<string>;
8203
9005
  }
9006
+ /**
9007
+ * DeleteStreamPackageLinearAssemblyProgramsByChannel返回参数结构体
9008
+ */
9009
+ export interface DeleteStreamPackageLinearAssemblyProgramsByChannelResponse {
9010
+ /**
9011
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9012
+ */
9013
+ RequestId?: string;
9014
+ }
8204
9015
  /**
8205
9016
  * RTMP转推的目标地址信息。
8206
9017
  */
@@ -8260,6 +9071,24 @@ export interface AiAnalysisTaskTagOutput {
8260
9071
  */
8261
9072
  TagSet: Array<MediaAiAnalysisTagItem>;
8262
9073
  }
9074
+ /**
9075
+ * 细节增强配置
9076
+ */
9077
+ export interface SharpEnhanceConfig {
9078
+ /**
9079
+ * 能力配置开关,可选值:
9080
+ <li>ON:开启;</li>
9081
+ <li>OFF:关闭。</li>
9082
+ 默认值:ON。
9083
+ */
9084
+ Switch?: string;
9085
+ /**
9086
+ * 强度,取值范围:0.0~1.0。
9087
+ 默认:0.0。
9088
+ 注意:此字段可能返回 null,表示取不到有效值。
9089
+ */
9090
+ Intensity?: number;
9091
+ }
8263
9092
  /**
8264
9093
  * CreateAsrHotwords返回参数结构体
8265
9094
  */
@@ -8449,25 +9278,13 @@ export interface CreateStreamLinkEventResponse {
8449
9278
  RequestId?: string;
8450
9279
  }
8451
9280
  /**
8452
- * 转自适应码流信息
9281
+ * DeleteStreamLinkEvent请求参数结构体
8453
9282
  */
8454
- export interface AdaptiveDynamicStreamingInfoItem {
8455
- /**
8456
- * 转自适应码流规格。
8457
- */
8458
- Definition?: number;
8459
- /**
8460
- * 打包格式,可能为 HLS和 MPEG-DASH 两种。
8461
- */
8462
- Package?: string;
8463
- /**
8464
- * 播放路径。
8465
- */
8466
- Path?: string;
9283
+ export interface DeleteStreamLinkEventRequest {
8467
9284
  /**
8468
- * 自适应码流文件的存储位置。
9285
+ * 媒体传输事件Id,删除前需要保证该Event关联的所有Flow都已经删除。
8469
9286
  */
8470
- Storage?: TaskOutputStorage;
9287
+ EventId: string;
8471
9288
  }
8472
9289
  /**
8473
9290
  * DescribeProcessImageTemplates返回参数结构体
@@ -8577,6 +9394,85 @@ export interface ProcessMediaRequest {
8577
9394
  */
8578
9395
  SkipMateData?: number;
8579
9396
  }
9397
+ /**
9398
+ * SSAI用量信息
9399
+ */
9400
+ export interface SSAIUsageInfo {
9401
+ /**
9402
+ * 广告请求成功次数
9403
+ */
9404
+ AdRequestSuccess?: number;
9405
+ /**
9406
+ * 广告请求失败次数
9407
+ */
9408
+ AdRequestFail?: number;
9409
+ /**
9410
+ * 曝光次数
9411
+ */
9412
+ Impression?: number;
9413
+ /**
9414
+ * 中贴个性化广告填充率
9415
+ */
9416
+ MidFillRate?: number;
9417
+ /**
9418
+ * 中贴广告标记时间
9419
+ */
9420
+ AdMarkerTime?: number;
9421
+ /**
9422
+ * 中贴个性化替换时间
9423
+ */
9424
+ ReplacedTime?: number;
9425
+ /**
9426
+ * 前贴广告替换率
9427
+ */
9428
+ PreReplaceRate?: number;
9429
+ /**
9430
+ * 前贴广告请求数
9431
+ */
9432
+ PreReqNum?: number;
9433
+ /**
9434
+ * 前贴广告替换数
9435
+ */
9436
+ PreReplacedNum?: number;
9437
+ /**
9438
+ * 各广告配置用量详情
9439
+ 注意:此字段可能返回 null,表示取不到有效值。
9440
+ */
9441
+ UsageDetails?: Array<UsageDetail>;
9442
+ }
9443
+ /**
9444
+ * ModifyStreamPackageLinearAssemblyProgram请求参数结构体
9445
+ */
9446
+ export interface ModifyStreamPackageLinearAssemblyProgramRequest {
9447
+ /**
9448
+ * Program Id。
9449
+ */
9450
+ Id: string;
9451
+ /**
9452
+ * 修改后的名称。
9453
+ */
9454
+ Name?: string;
9455
+ /**
9456
+ * 编排的目标source的类型,分直播和点播。Tier为Basic时只支持VOD,Tier为Standard时支持Live和VOD
9457
+ */
9458
+ SourceType?: string;
9459
+ /**
9460
+ * 关联的source location。
9461
+ */
9462
+ SourceLocationId?: string;
9463
+ /**
9464
+ * 关联的直播or点播,source名称,location下全局唯一。
9465
+ */
9466
+ SourceName?: string;
9467
+ /**
9468
+ * PlaybackConf。
9469
+ */
9470
+ PlaybackConf?: PlaybackInfoReq;
9471
+ /**
9472
+ * AdBreaks。
9473
+ */
9474
+ AdBreaks?: Array<AdBreakInfo>;
9475
+ }
8580
9476
  /**
8581
9477
  * ProcessImage返回参数结构体
8582
9478
  */
@@ -8600,6 +9496,27 @@ export interface DescribeRTSPPullSourceAddress {
8600
9496
  */
8601
9497
  Url: string;
8602
9498
  }
9499
+ /**
9500
+ * Type为DASH时manifest配置使用的字段。
9501
+ */
9502
+ export interface DashManifestInfo {
9503
+ /**
9504
+ * 每个清单的总持续时间(以秒为单位)。[30, 3600],类型:整数,默认值60。
9505
+ */
9506
+ Windows?: number;
9507
+ /**
9508
+ * 播放器在缓冲区中保持的最小缓存时间(以秒为单位)。[2, 60],类型:整数,默认值30。
9509
+ */
9510
+ MinBufferTime?: number;
9511
+ /**
9512
+ * 播放器在请求更新清单之前应等待的最短时间(以秒为单位)。[2, 60],类型:整数,默认值2。
9513
+ */
9514
+ MinUpdatePeriod?: number;
9515
+ /**
9516
+ * 播放器启播时距离最新直播时间点的时间,是一个回退量(以秒为单位)。[2, 60],类型:整数,默认值10。
9517
+ */
9518
+ SuggestedPresentationDelay?: number;
9519
+ }
8603
9520
  /**
8604
9521
  * 查询输出的RTSP拉流配置信息。
8605
9522
  */
@@ -8610,6 +9527,35 @@ export interface DescribeOutputRTSPPullSettings {
8610
9527
  */
8611
9528
  ServerUrls: Array<DescribeOutputRTSPPullServerUrl>;
8612
9529
  }
9530
+ /**
9531
+ * 线性组装Location告警信息
9532
+ */
9533
+ export interface SourceAlert {
9534
+ /**
9535
+ * Source ID。
9536
+ */
9537
+ SourceId?: string;
9538
+ /**
9539
+ * Source名称。
9540
+ */
9541
+ SourceName?: string;
9542
+ /**
9543
+ * 告警事件码。
9544
+ */
9545
+ Code?: number;
9546
+ /**
9547
+ * 告警分类。
9548
+ */
9549
+ Category?: string;
9550
+ /**
9551
+ * 告警消息。
9552
+ */
9553
+ Message?: string;
9554
+ /**
9555
+ * 更新时间。
9556
+ */
9557
+ LastModifiedTime?: number;
9558
+ }
8613
9559
  /**
8614
9560
  * CreateBlindWatermarkTemplate返回参数结构体
8615
9561
  */
@@ -8757,21 +9703,13 @@ export interface LiveStreamOcrFullTextRecognitionResult {
8757
9703
  AreaCoordSet?: Array<number | bigint>;
8758
9704
  }
8759
9705
  /**
8760
- * 媒体处理 VOD(点播专业版) 输出对象信息。
9706
+ * DeleteStreamPackageSSAIChannel返回参数结构体
8761
9707
  */
8762
- export interface VODOutputStorage {
9708
+ export interface DeleteStreamPackageSSAIChannelResponse {
8763
9709
  /**
8764
- * 媒体处理生成的文件输出的目标 *Bucket ID*
8765
- */
8766
- Bucket?: string;
8767
- /**
8768
- * 媒体处理生成的文件输出的目标 Bucket 的园区
8769
- */
8770
- Region?: string;
8771
- /**
8772
- * 点播专业版应用Id
9710
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8773
9711
  */
8774
- SubAppId?: number;
9712
+ RequestId?: string;
8775
9713
  }
8776
9714
  /**
8777
9715
  * 对视频按指定时间点截图任务结果类型
@@ -8811,6 +9749,15 @@ export interface MediaProcessTaskSnapshotByTimeOffsetResult {
8811
9749
  */
8812
9750
  FinishTime?: string;
8813
9751
  }
9752
+ /**
9753
+ * DeleteStreamPackageSource返回参数结构体
9754
+ */
9755
+ export interface DeleteStreamPackageSourceResponse {
9756
+ /**
9757
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9758
+ */
9759
+ RequestId?: string;
9760
+ }
8814
9761
  /**
8815
9762
  * 查询输出的HLS拉流配置信息。
8816
9763
  */
@@ -8930,6 +9877,27 @@ export interface DescribeSchedulesResponse {
8930
9877
  */
8931
9878
  RequestId?: string;
8932
9879
  }
9880
+ /**
9881
+ * ModifySubtitleEmbedTemplate请求参数结构体
9882
+ */
9883
+ export interface ModifySubtitleEmbedTemplateRequest {
9884
+ /**
9885
+ * <p>字幕压制模板唯一标识</p>
9886
+ */
9887
+ Definition: number;
9888
+ /**
9889
+ * <p>字幕压制名称<br>长度限制:64 个字符。</p>
9890
+ */
9891
+ Name?: string;
9892
+ /**
9893
+ * <p>字幕压制模板描述信息<br>长度限制:256 个字符。</p>
9894
+ */
9895
+ Comment?: string;
9896
+ /**
9897
+ * <p>字幕压制相关配置</p>
9898
+ */
9899
+ SubtitleEmbedConfig?: SubtitleEmbedConfig;
9900
+ }
8933
9901
  /**
8934
9902
  * 综合增强配置
8935
9903
  */
@@ -9087,17 +10055,21 @@ export interface AiRecognitionTaskAsrFullTextResultInput {
9087
10055
  Definition?: number;
9088
10056
  }
9089
10057
  /**
9090
- * DescribeStreamLinkFlowStatistics返回参数结构体
10058
+ * DescribeStreamLinkFlowRealtimeStatus请求参数结构体
9091
10059
  */
9092
- export interface DescribeStreamLinkFlowStatisticsResponse {
10060
+ export interface DescribeStreamLinkFlowRealtimeStatusRequest {
9093
10061
  /**
9094
- * 传输流的媒体数据列表。
10062
+ * 流ID。
9095
10063
  */
9096
- Infos?: Array<FlowStatisticsArray>;
10064
+ FlowId: string;
9097
10065
  /**
9098
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10066
+ * 输入id数组,如果输入输出数组都为空,则代表全量查询。
9099
10067
  */
9100
- RequestId?: string;
10068
+ InputIds?: Array<string>;
10069
+ /**
10070
+ * 输出id数组,如果输入输出数组都为空,则代表全量查询。
10071
+ */
10072
+ OutputIds?: Array<string>;
9101
10073
  }
9102
10074
  /**
9103
10075
  * 语音关键词识别输出。
@@ -9149,9 +10121,9 @@ export interface LiveStreamProcessErrorInfo {
9149
10121
  Message?: string;
9150
10122
  }
9151
10123
  /**
9152
- * ModifyAdaptiveDynamicStreamingTemplate返回参数结构体
10124
+ * DeleteStreamPackageLinearAssemblyChannels返回参数结构体
9153
10125
  */
9154
- export interface ModifyAdaptiveDynamicStreamingTemplateResponse {
10126
+ export interface DeleteStreamPackageLinearAssemblyChannelsResponse {
9155
10127
  /**
9156
10128
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9157
10129
  */
@@ -9344,6 +10316,31 @@ export interface ImageWatermarkTemplate {
9344
10316
  */
9345
10317
  RepeatType?: string;
9346
10318
  }
10319
+ /**
10320
+ * DescribeStreamPackageSSAIUsage请求参数结构体
10321
+ */
10322
+ export interface DescribeStreamPackageSSAIUsageRequest {
10323
+ /**
10324
+ * 起始时间
10325
+ */
10326
+ StartTime?: string;
10327
+ /**
10328
+ * 结束时间
10329
+ */
10330
+ EndTime?: string;
10331
+ /**
10332
+ * 需要查询的channel_id
10333
+ */
10334
+ ChannelIds?: Array<string>;
10335
+ /**
10336
+ * 需要查询的广告类型。可选Pre-roll/Mid-roll/VOD;若为空,默认查询所有类型
10337
+ */
10338
+ Types?: Array<string>;
10339
+ /**
10340
+ * 维度,可选值:summary对应false;detail 对应true
10341
+ */
10342
+ Dimension?: boolean;
10343
+ }
9347
10344
  /**
9348
10345
  * ModifyQualityControlTemplate返回参数结构体
9349
10346
  */
@@ -9438,6 +10435,43 @@ export interface FlowMediaVideo {
9438
10435
  */
9439
10436
  SessionId: string;
9440
10437
  }
10438
+ /**
10439
+ * SpliceInsertInfo。
10440
+ */
10441
+ export interface SpliceInsertInfo {
10442
+ /**
10443
+ * EventID。
10444
+ */
10445
+ EventID?: string;
10446
+ /**
10447
+ * AvailNum。
10448
+ */
10449
+ AvailNum?: string;
10450
+ /**
10451
+ * AvailExpected。
10452
+ */
10453
+ AvailExpected?: string;
10454
+ /**
10455
+ * ProgramID。
10456
+ */
10457
+ ProgramID?: string;
10458
+ }
10459
+ /**
10460
+ * type SourceTag struct {
10461
+ Key string `json:"Key"`
10462
+ Value string `json:"Value"`
10463
+ }
10464
+ */
10465
+ export interface SourceTag {
10466
+ /**
10467
+ * sourcetag的key,支持1-50位的大写字母、数字、下划线、中划线
10468
+ */
10469
+ Key?: string;
10470
+ /**
10471
+ * sourcetag的value,支持1-200位的字母、数字下划线、中划线、英文句号、百分号(%)
10472
+ */
10473
+ Value?: string;
10474
+ }
9441
10475
  /**
9442
10476
  * RecognizeMediaForZhiXue返回参数结构体
9443
10477
  */
@@ -9449,7 +10483,33 @@ export interface RecognizeMediaForZhiXueResponse {
9449
10483
  /**
9450
10484
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9451
10485
  */
9452
- RequestId?: string;
10486
+ RequestId?: string;
10487
+ }
10488
+ /**
10489
+ * 媒体质检任务结果类型
10490
+ */
10491
+ export interface ScheduleExecRuleTaskResult {
10492
+ /**
10493
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
10494
+ */
10495
+ Status?: string;
10496
+ /**
10497
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
10498
+ */
10499
+ ErrCodeExt?: string;
10500
+ /**
10501
+ * 错误信息。
10502
+ */
10503
+ Message?: string;
10504
+ /**
10505
+ * 条件判断任务的输入。
10506
+ */
10507
+ Input?: ExecRulesTask;
10508
+ /**
10509
+ * 条件判断任务的输出。
10510
+ 注意:此字段可能返回 null,表示取不到有效值。
10511
+ */
10512
+ Output?: ExecRuleTaskData;
9453
10513
  }
9454
10514
  /**
9455
10515
  * AI 样本管理,人物信息。
@@ -10239,6 +11299,15 @@ export interface HLSPullSourceAddress {
10239
11299
  */
10240
11300
  Url: string;
10241
11301
  }
11302
+ /**
11303
+ * DescribeStreamPackageSourceLocation请求参数结构体
11304
+ */
11305
+ export interface DescribeStreamPackageSourceLocationRequest {
11306
+ /**
11307
+ * SourceLocation Id。
11308
+ */
11309
+ Id: string;
11310
+ }
10242
11311
  /**
10243
11312
  * 视频评测任务的视频来源信息
10244
11313
  */
@@ -10333,6 +11402,27 @@ export interface ActivityPara {
10333
11402
  */
10334
11403
  SmartEraseTask?: SmartEraseTaskInput;
10335
11404
  }
11405
+ /**
11406
+ * DescribeStreamPackageSources请求参数结构体
11407
+ */
11408
+ export interface DescribeStreamPackageSourcesRequest {
11409
+ /**
11410
+ * 页数,取值范围为[1, 1000]。
11411
+ */
11412
+ PageNum?: number;
11413
+ /**
11414
+ * 每页大小,取值范围为[1, 1000]。
11415
+ */
11416
+ PageSize?: number;
11417
+ /**
11418
+ * Location Id,查询该location下面所有source。
11419
+ */
11420
+ LocationId?: string;
11421
+ /**
11422
+ * Source的类型,分直播Live和点播VOD。
11423
+ */
11424
+ Type?: string;
11425
+ }
10336
11426
  /**
10337
11427
  * ModifyAsrHotwords返回参数结构体
10338
11428
  */
@@ -10343,28 +11433,17 @@ export interface ModifyAsrHotwordsResponse {
10343
11433
  RequestId?: string;
10344
11434
  }
10345
11435
  /**
10346
- * 用户自定义语音审核任务控制参数
11436
+ * CreateStreamPackageLinearAssemblyChannel返回参数结构体
10347
11437
  */
10348
- export interface UserDefineAsrTextReviewTemplateInfoForUpdate {
10349
- /**
10350
- * 用户自定语音审核任务开关,可选值:
10351
- <li>ON:开启自定义语音审核任务;</li>
10352
- <li>OFF:关闭自定义语音审核任务。</li>
10353
- */
10354
- Switch?: string;
10355
- /**
10356
- * 用户自定义语音过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义语音关键词素材时需要添加对应标签。
10357
- 标签个数最多 10 个,每个标签长度最多 16 个字符。
10358
- */
10359
- LabelSet?: Array<string>;
11438
+ export interface CreateStreamPackageLinearAssemblyChannelResponse {
10360
11439
  /**
10361
- * 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
11440
+ * channel信息。
10362
11441
  */
10363
- BlockConfidence?: number;
11442
+ Info?: LinearAssemblyChannelInfo;
10364
11443
  /**
10365
- * 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100
11444
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
10366
11445
  */
10367
- ReviewConfidence?: number;
11446
+ RequestId?: string;
10368
11447
  }
10369
11448
  /**
10370
11449
  * ModifyImageSpriteTemplate返回参数结构体
@@ -10476,41 +11555,42 @@ export interface CreateWatermarkTemplateRequest {
10476
11555
  SvgTemplate?: SvgWatermarkInput;
10477
11556
  }
10478
11557
  /**
10479
- * 编排视频分析任务结果类型
11558
+ * 线性组装output信息。
10480
11559
  */
10481
- export interface ScheduleAnalysisTaskResult {
10482
- /**
10483
- * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
10484
- */
10485
- Status?: string;
11560
+ export interface OutputReq {
10486
11561
  /**
10487
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
11562
+ * 输出类型,区分HLS DASH。
10488
11563
  */
10489
- ErrCodeExt?: string;
11564
+ Type?: string;
10490
11565
  /**
10491
- * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
11566
+ * output group名称,可以和source的group名称对应关联起来。
10492
11567
  */
10493
- ErrCode?: number;
11568
+ GroupName?: string;
10494
11569
  /**
10495
- * 错误信息。
11570
+ * channel program调度后输出的文件名。
10496
11571
  */
10497
- Message?: string;
11572
+ ManifestName?: string;
10498
11573
  /**
10499
- * 分析任务的输入。
11574
+ * Type为HLS时manifest配置使用的字段。
10500
11575
  */
10501
- Input?: AiAnalysisTaskInput;
11576
+ ManifestConf?: ManifestInfo;
10502
11577
  /**
10503
- * 分析任务的输出。
11578
+ * Type为DASH时manifest配置使用的字段。
10504
11579
  */
10505
- Output?: Array<AiAnalysisResult>;
11580
+ DashManifestConf?: DashManifestInfo;
11581
+ }
11582
+ /**
11583
+ * 线性组装频道配置。
11584
+ */
11585
+ export interface ManifestInfo {
10506
11586
  /**
10507
- * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
11587
+ * 单位秒。
10508
11588
  */
10509
- BeginProcessTime?: string;
11589
+ Windows?: number;
10510
11590
  /**
10511
- * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)
11591
+ * 打到output广告标签的格式,可选Date Range和Enhanced SCTE-35
10512
11592
  */
10513
- FinishTime?: string;
11593
+ AdMarkupType?: string;
10514
11594
  }
10515
11595
  /**
10516
11596
  * 视频编辑/合成任务 轨道元素信息。
@@ -10854,6 +11934,35 @@ export interface CreateVideoSearchTaskResponse {
10854
11934
  */
10855
11935
  RequestId?: string;
10856
11936
  }
11937
+ /**
11938
+ * 线性组装output信息。
11939
+ */
11940
+ export interface OutputInfo {
11941
+ /**
11942
+ * HLS DASH。
11943
+ */
11944
+ Type?: string;
11945
+ /**
11946
+ * output group名称,可以和source的group名称对应关联起来。
11947
+ */
11948
+ GroupName?: string;
11949
+ /**
11950
+ * channel program调度后输出的文件名。
11951
+ */
11952
+ ManifestName?: string;
11953
+ /**
11954
+ * Type为HLS时manifest配置使用的字段。
11955
+ */
11956
+ ManifestConf?: ManifestInfo;
11957
+ /**
11958
+ * 播放地址。
11959
+ */
11960
+ PlaybackURL?: string;
11961
+ /**
11962
+ * Type为DASH时manifest配置使用的字段。
11963
+ */
11964
+ DashManifestConf?: DashManifestInfo;
11965
+ }
10857
11966
  /**
10858
11967
  * CreateVideoSearchTask请求参数结构体
10859
11968
  */
@@ -10914,6 +12023,50 @@ export interface FlowRealtimeStatusRTP {
10914
12023
  */
10915
12024
  Packets: number;
10916
12025
  }
12026
+ /**
12027
+ * 人脸识别任务控制参数
12028
+ */
12029
+ export interface FaceConfigureInfo {
12030
+ /**
12031
+ * 人脸识别任务开关,可选值:
12032
+ <li>ON:开启智能人脸识别任务;</li>
12033
+ <li>OFF:关闭智能人脸识别任务。</li>
12034
+ */
12035
+ Switch: string;
12036
+ /**
12037
+ * 人脸识别过滤分数,当识别结果达到该分数以上,返回识别结果。默认 95 分。取值范围:0 - 100。
12038
+ */
12039
+ Score?: number;
12040
+ /**
12041
+ * 默认人物过滤标签,指定需要返回的默认人物的标签。如果未填或者为空,则全部默认人物结果都返回。标签可选值:
12042
+ <li>entertainment:娱乐明星;</li>
12043
+ <li>sport:体育明星;</li>
12044
+ <li>politician:敏感人物。</li>
12045
+ */
12046
+ DefaultLibraryLabelSet?: Array<string>;
12047
+ /**
12048
+ * 用户自定义人物过滤标签,指定需要返回的用户自定义人物的标签。如果未填或者为空,则全部自定义人物结果都返回。
12049
+ 标签个数最多 100 个,每个标签长度最多 16 个字符。
12050
+ */
12051
+ UserDefineLibraryLabelSet?: Array<string>;
12052
+ /**
12053
+ * 人物库选择,可选值:
12054
+ <li>Default:使用默认人物库;</li>
12055
+ <li>UserDefine:使用用户自定义人物库。</li>
12056
+ <li>All:同时使用默认人物库和用户自定义人物库。</li>
12057
+ 默认值:All,使用系统默认人物库及用户自定义人物库。
12058
+ */
12059
+ FaceLibrary?: string;
12060
+ }
12061
+ /**
12062
+ * DeleteStreamPackageLinearAssemblyChannels请求参数结构体
12063
+ */
12064
+ export interface DeleteStreamPackageLinearAssemblyChannelsRequest {
12065
+ /**
12066
+ * 频道id列表。
12067
+ */
12068
+ Ids: Array<string>;
12069
+ }
10917
12070
  /**
10918
12071
  * 转动图任务类型。
10919
12072
  */
@@ -10947,6 +12100,39 @@ export interface AnimatedGraphicTaskInput {
10947
12100
  */
10948
12101
  OutputObjectPath?: string;
10949
12102
  }
12103
+ /**
12104
+ * 分段信息。
12105
+ */
12106
+ export interface LiveAiParagraphInfo {
12107
+ /**
12108
+ * 分段摘要
12109
+ */
12110
+ Summary?: string;
12111
+ /**
12112
+ * 分段标题
12113
+ */
12114
+ Title?: string;
12115
+ /**
12116
+ * 分段关键词
12117
+ */
12118
+ Keywords?: Array<string>;
12119
+ /**
12120
+ * 分段起始时间点,秒
12121
+ */
12122
+ StartTimeOffset?: number;
12123
+ /**
12124
+ * 分段结束时间点,秒
12125
+ */
12126
+ EndTimeOffset?: number;
12127
+ /**
12128
+ * 直播切片对应直播起始时间点,采用 ISO 日期格式。
12129
+ */
12130
+ BeginTime?: string;
12131
+ /**
12132
+ * 直播切片对应直播结束时间点,采用 ISO 日期格式。
12133
+ */
12134
+ EndTime?: string;
12135
+ }
10950
12136
  /**
10951
12137
  * 输出的出口的地址。
10952
12138
  */
@@ -11042,9 +12228,26 @@ export interface LiveRecordTaskInput {
11042
12228
  OutputObjectPath?: string;
11043
12229
  }
11044
12230
  /**
11045
- * DescribeStreamLinkActivateState请求参数结构体
12231
+ * 垫片配置。
11046
12232
  */
11047
- export type DescribeStreamLinkActivateStateRequest = null;
12233
+ export interface ClipRangeInfo {
12234
+ /**
12235
+ * vod类型有效,内容有效起始时间,可选Entire和SpecifyTimeRange。
12236
+ */
12237
+ Type?: string;
12238
+ /**
12239
+ * 偏移量,Type为SpecifyTimeRange时有效。
12240
+ */
12241
+ Offset?: number;
12242
+ /**
12243
+ * 开始偏移量,Type为SpecifyTimeRange时有效。
12244
+ */
12245
+ StartOffset?: number;
12246
+ /**
12247
+ * 结束偏移量,Type为SpecifyTimeRange时有效。
12248
+ */
12249
+ EndOffset?: number;
12250
+ }
11048
12251
  /**
11049
12252
  * AI 智能分析模板详情
11050
12253
  */
@@ -11110,6 +12313,19 @@ export interface AiRecognitionTaskObjectResultItem {
11110
12313
  */
11111
12314
  SegmentSet?: Array<AiRecognitionTaskObjectSeqmentItem>;
11112
12315
  }
12316
+ /**
12317
+ * 直播流分析结果
12318
+ */
12319
+ export interface LiveStreamAiAnalysisResultInfo {
12320
+ /**
12321
+ * 直播分析子任务结果,支持:
12322
+ <li>直播拆条</li>
12323
+ <li>直播高光集锦</li>
12324
+ <li>直播摘要</li>
12325
+ 注意:此字段可能返回 null,表示取不到有效值。
12326
+ */
12327
+ ResultSet?: Array<LiveStreamAiAnalysisResultItem>;
12328
+ }
11113
12329
  /**
11114
12330
  * 视频编辑/合成任务 信息。
11115
12331
 
@@ -11556,6 +12772,15 @@ export interface CreateProcessImageTemplateRequest {
11556
12772
  */
11557
12773
  StdExtInfo?: string;
11558
12774
  }
12775
+ /**
12776
+ * StopStreamLinkFlow请求参数结构体
12777
+ */
12778
+ export interface StopStreamLinkFlowRequest {
12779
+ /**
12780
+ * 流Id。
12781
+ */
12782
+ FlowId: string;
12783
+ }
11559
12784
  /**
11560
12785
  * DescribeStreamLinkFlowSRTStatistics返回参数结构体
11561
12786
  */
@@ -11710,6 +12935,19 @@ export interface AiAnalysisResult {
11710
12935
  */
11711
12936
  ReelTask?: AiAnalysisTaskReelResult;
11712
12937
  }
12938
+ /**
12939
+ * DescribeStreamLinkFlowStatistics返回参数结构体
12940
+ */
12941
+ export interface DescribeStreamLinkFlowStatisticsResponse {
12942
+ /**
12943
+ * 传输流的媒体数据列表。
12944
+ */
12945
+ Infos?: Array<FlowStatisticsArray>;
12946
+ /**
12947
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12948
+ */
12949
+ RequestId?: string;
12950
+ }
11713
12951
  /**
11714
12952
  * 媒体处理任务中的数字水印参数类型
11715
12953
  */
@@ -12057,6 +13295,50 @@ export interface ResetWorkflowRequest {
12057
13295
  */
12058
13296
  TaskNotifyConfig?: TaskNotifyConfig;
12059
13297
  }
13298
+ /**
13299
+ * 提取视频数字水印任务信息
13300
+ */
13301
+ export interface ExtractBlindWatermarkTask {
13302
+ /**
13303
+ * 媒体处理任务 ID。
13304
+ */
13305
+ TaskId?: string;
13306
+ /**
13307
+ * 任务流状态,取值:
13308
+ <li>WAITING:等待中;</li>
13309
+ <li>PROCESSING:处理中;</li>
13310
+ <li>FINISH:已完成。</li>
13311
+ */
13312
+ Status?: string;
13313
+ /**
13314
+ * 错误码,0 表示成功,其他值表示失败。
13315
+ */
13316
+ ErrCode?: number;
13317
+ /**
13318
+ * 错误信息。
13319
+ */
13320
+ Message?: string;
13321
+ /**
13322
+ * 媒体处理的目标文件信息。
13323
+ */
13324
+ InputInfo?: MediaInputInfo;
13325
+ /**
13326
+ * 数字水印类型,可选值:<li>blind-basic:基础版权数字水印;</li> <li>blind-ab:ab版权数字水印;</li>
13327
+ */
13328
+ Type?: string;
13329
+ /**
13330
+ * 标记是否检测到水印,如果该参数为true, Result字段将返回水印提取结果,如果该参数为false,Result字段不会返回。
13331
+ */
13332
+ IsDetected?: boolean;
13333
+ /**
13334
+ * 提取出的数字水印内容,当没有检测到水印时该字段不会返回。
13335
+ */
13336
+ Result?: string;
13337
+ /**
13338
+ * 提取数字水印配置。
13339
+ */
13340
+ ExtractBlindWatermarkConfig?: ExtractBlindWatermarkTaskConfig;
13341
+ }
12060
13342
  /**
12061
13343
  * DeleteSubtitleEmbedTemplate请求参数结构体
12062
13344
  */
@@ -12076,21 +13358,33 @@ export interface AiRecognitionTaskObjectResultInput {
12076
13358
  Definition?: number;
12077
13359
  }
12078
13360
  /**
12079
- * 描述 URL 的完整信息
13361
+ * program播放配置请求。
12080
13362
  */
12081
- export interface StreamUrlDetail {
13363
+ export interface PlaybackInfoReq {
13364
+ /**
13365
+ * program启动方式,直播只支持Absolute,点播还支持Relative。PlaybackMode类型为Linear的VOD支持Absolute和Relative。PlaybackMode类型为Loop的VOD只支持Relative
13366
+ */
13367
+ TransitionType?: string;
13368
+ /**
13369
+ * unix时间戳,absolute场景下program的开始执行时间。最多大于当前90天(7776000)。
13370
+ */
13371
+ StartTime?: number;
13372
+ /**
13373
+ * program持续时间,单位毫秒,直播有效。支持600000-86400000。默认600000。
13374
+ */
13375
+ Duration?: number;
12082
13376
  /**
12083
- * 会描述运营商信息等
13377
+ * 和所选program的插入顺序关系,分After和Before。
12084
13378
  */
12085
- Label?: string;
13379
+ RelativePosition?: string;
12086
13380
  /**
12087
- * URL
13381
+ * 所选的插入参考program id。
12088
13382
  */
12089
- Url?: string;
13383
+ RelativeProgramId?: string;
12090
13384
  /**
12091
- * Playback: 拉流播放地址; RelayDestination:转推目的地址;SourceCaptureUrl:回源拉流地址;IngestEndpoint:推流地址
13385
+ * 垫片配置。
12092
13386
  */
12093
- Type?: string;
13387
+ ClipRangeConf?: ClipRangeInfo;
12094
13388
  }
12095
13389
  /**
12096
13390
  * 内容审核涉敏任务结果类型
@@ -12482,6 +13776,65 @@ export interface LiveStreamAiRecognitionResultItem {
12482
13776
  */
12483
13777
  TagRecognitionResultSet?: Array<LiveStreamTagRecognitionResult>;
12484
13778
  }
13779
+ /**
13780
+ * 查询输出的SRT配置信息。
13781
+ */
13782
+ export interface DescribeOutputSRTSettings {
13783
+ /**
13784
+ * 转推的目标的地址信息列表,SRT模式为CALLER时使用。
13785
+ 注意:此字段可能返回 null,表示取不到有效值。
13786
+ */
13787
+ Destinations?: Array<SRTAddressDestination>;
13788
+ /**
13789
+ * 流Id。
13790
+ 注意:此字段可能返回 null,表示取不到有效值。
13791
+ */
13792
+ StreamId?: string;
13793
+ /**
13794
+ * 延迟。
13795
+ 注意:此字段可能返回 null,表示取不到有效值。
13796
+ */
13797
+ Latency?: number;
13798
+ /**
13799
+ * 接收延迟。
13800
+ 注意:此字段可能返回 null,表示取不到有效值。
13801
+ */
13802
+ RecvLatency?: number;
13803
+ /**
13804
+ * 对端延迟。
13805
+ 注意:此字段可能返回 null,表示取不到有效值。
13806
+ */
13807
+ PeerLatency?: number;
13808
+ /**
13809
+ * 对端空闲超时时间。
13810
+ 注意:此字段可能返回 null,表示取不到有效值。
13811
+ */
13812
+ PeerIdleTimeout?: number;
13813
+ /**
13814
+ * 加密密钥。
13815
+ 注意:此字段可能返回 null,表示取不到有效值。
13816
+ */
13817
+ Passphrase?: string;
13818
+ /**
13819
+ * 加密密钥长度。
13820
+ 注意:此字段可能返回 null,表示取不到有效值。
13821
+ */
13822
+ PbKeyLen?: number;
13823
+ /**
13824
+ * SRT模式。
13825
+ 注意:此字段可能返回 null,表示取不到有效值。
13826
+ */
13827
+ Mode?: string;
13828
+ /**
13829
+ * 服务器监听地址,SRT模式为LISTENER时使用。
13830
+ 注意:此字段可能返回 null,表示取不到有效值。
13831
+ */
13832
+ SourceAddresses?: Array<OutputSRTSourceAddressResp>;
13833
+ /**
13834
+ * FEC 配置
13835
+ */
13836
+ FEC?: SRTFECFullOptions;
13837
+ }
12485
13838
  /**
12486
13839
  * StopStreamLinkFlow返回参数结构体
12487
13840
  */
@@ -13108,41 +14461,22 @@ export interface AiReviewPoliticalAsrTaskInput {
13108
14461
  Definition: number;
13109
14462
  }
13110
14463
  /**
13111
- * 直播流分析结果
13112
- */
13113
- export interface LiveStreamAiAnalysisResultInfo {
13114
- /**
13115
- * 直播分析子任务结果,支持:
13116
- <li>直播拆条</li>
13117
- <li>直播高光集锦</li>
13118
- <li>直播摘要</li>
13119
- 注意:此字段可能返回 null,表示取不到有效值。
13120
- */
13121
- ResultSet?: Array<LiveStreamAiAnalysisResultItem>;
13122
- }
13123
- /**
13124
- * 切片特殊配置信息。
14464
+ * DescribeStreamPackageSSAIChannel返回参数结构体
13125
14465
  */
13126
- export interface SegmentSpecificInfo {
13127
- /**
13128
- * 启动分片时长开关,可选值:
13129
- on:打开
13130
- off:关闭
13131
- 默认off
13132
- 注意:此字段可能返回 null,表示取不到有效值。
13133
- */
13134
- Switch?: string;
14466
+ export interface DescribeStreamPackageSSAIChannelResponse {
13135
14467
  /**
13136
- * 启动时分片时长,单位:秒
13137
- 注意:此字段可能返回 null,表示取不到有效值。
14468
+ * 广告插入配置信息。
13138
14469
  */
13139
- FragmentTime?: number;
14470
+ Info?: SSAIChannelInfo;
13140
14471
  /**
13141
- * 生效分片数,表示前FragmentEndNum个分片以FragmentTime时长切片,取值>=1
13142
- 注意:此字段可能返回 null,表示取不到有效值。
14472
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13143
14473
  */
13144
- FragmentEndNum?: number;
14474
+ RequestId?: string;
13145
14475
  }
14476
+ /**
14477
+ * ActivateStreamPackage请求参数结构体
14478
+ */
14479
+ export type ActivateStreamPackageRequest = null;
13146
14480
  /**
13147
14481
  * 动作识别参数配置
13148
14482
  */
@@ -13163,6 +14497,34 @@ export interface AiAnalysisTaskVideoComprehensionInput {
13163
14497
  */
13164
14498
  Definition?: number;
13165
14499
  }
14500
+ /**
14501
+ * 延播平滑吐流配置。
14502
+ */
14503
+ export interface ResilientStreamConf {
14504
+ /**
14505
+ * 是否开启延播平滑吐流,true开启,false不开启,默认不开启。
14506
+ 注意:此字段可能返回 null,表示取不到有效值。
14507
+ */
14508
+ Enable?: boolean;
14509
+ /**
14510
+ * 延播时间,单位秒,目前支持的范围为10~300秒。
14511
+ 注意:此字段可能返回 null,表示取不到有效值。
14512
+ */
14513
+ BufferTime?: number;
14514
+ }
14515
+ /**
14516
+ * DescribeSSAIActivateState返回参数结构体
14517
+ */
14518
+ export interface DescribeSSAIActivateStateResponse {
14519
+ /**
14520
+ * SSAI开通状态,0表示正常开通,-1表示未开通
14521
+ */
14522
+ Status?: number;
14523
+ /**
14524
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14525
+ */
14526
+ RequestId?: string;
14527
+ }
13166
14528
  /**
13167
14529
  * 智能标签结果信息
13168
14530
  */
@@ -13281,6 +14643,31 @@ export interface TranslateConfigureInfo {
13281
14643
  */
13282
14644
  SubtitleFormat?: string;
13283
14645
  }
14646
+ /**
14647
+ * 线性组装Program聚合告警信息
14648
+ */
14649
+ export interface ProgramAlertCounts {
14650
+ /**
14651
+ * <p>Program ID。</p>
14652
+ */
14653
+ ProgramId?: string;
14654
+ /**
14655
+ * <p>Program名称。</p>
14656
+ */
14657
+ ProgramName?: string;
14658
+ /**
14659
+ * <p>告警分类。</p>
14660
+ */
14661
+ Category?: string;
14662
+ /**
14663
+ * <p>出现次数</p>
14664
+ */
14665
+ Count?: number;
14666
+ /**
14667
+ * <p>更新时间。</p>
14668
+ */
14669
+ LastModifiedTime?: number;
14670
+ }
13284
14671
  /**
13285
14672
  * DescribeStreamLinkFlowMediaStatistics返回参数结构体
13286
14673
  */
@@ -13595,6 +14982,15 @@ export interface SubtitleTemplate {
13595
14982
  */
13596
14983
  LineSpacingUnit?: number;
13597
14984
  }
14985
+ /**
14986
+ * StopStreamPackageLinearAssemblyChannel返回参数结构体
14987
+ */
14988
+ export interface StopStreamPackageLinearAssemblyChannelResponse {
14989
+ /**
14990
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14991
+ */
14992
+ RequestId?: string;
14993
+ }
13598
14994
  /**
13599
14995
  * 查询Flow的配置信息。
13600
14996
  */
@@ -13734,44 +15130,28 @@ export interface ExtractBlindWatermarkTaskConfig {
13734
15130
  SegmentDuration: number;
13735
15131
  }
13736
15132
  /**
13737
- * 识别音频单句结果
15133
+ * 智能擦除,指定擦除区域配置。
15134
+ 对指定时间段内的指定区域直接进行擦除。
15135
+ 当BeginMs和EndMs均取0时对整个视频内的指定区域直接进行擦除。
13738
15136
  */
13739
- export interface RecognizeAudioSentence {
13740
- /**
13741
- * 在音频中的起始时间,单位秒
13742
- */
13743
- Start?: number;
15137
+ export interface EraseTimeArea {
13744
15138
  /**
13745
- * 在音频中的截止时间,单位秒
15139
+ * 开始时间,单位:毫秒
13746
15140
  */
13747
- End?: number;
15141
+ BeginMs: number;
13748
15142
  /**
13749
- * 音频识别结果
15143
+ * 结束时间,单位:毫秒
13750
15144
  */
13751
- Text?: string;
15145
+ EndMs: number;
13752
15146
  /**
13753
- * 字词时间戳结果
15147
+ * 时间段内擦除区域列表
13754
15148
  */
13755
- WordsInfo?: Array<WordResult>;
15149
+ Areas: Array<EraseArea>;
13756
15150
  }
13757
15151
  /**
13758
- * 细节增强配置
15152
+ * DescribeSSAIActivateState请求参数结构体
13759
15153
  */
13760
- export interface SharpEnhanceConfig {
13761
- /**
13762
- * 能力配置开关,可选值:
13763
- <li>ON:开启;</li>
13764
- <li>OFF:关闭。</li>
13765
- 默认值:ON。
13766
- */
13767
- Switch?: string;
13768
- /**
13769
- * 强度,取值范围:0.0~1.0。
13770
- 默认:0.0。
13771
- 注意:此字段可能返回 null,表示取不到有效值。
13772
- */
13773
- Intensity?: number;
13774
- }
15154
+ export type DescribeSSAIActivateStateRequest = null;
13775
15155
  /**
13776
15156
  * 图片编码格式参数
13777
15157
  */
@@ -13978,13 +15358,37 @@ export interface SmartEraseTaskResult {
13978
15358
  FinishTime?: string;
13979
15359
  }
13980
15360
  /**
13981
- * 直播流 AI 审核结果
15361
+ * 线性组装信息查询
13982
15362
  */
13983
- export interface LiveStreamAiReviewResultInfo {
15363
+ export interface AssemblyUsageDetail {
13984
15364
  /**
13985
- * 内容审核结果列表。
15365
+ * <p>频道id</p>
13986
15366
  */
13987
- ResultSet: Array<LiveStreamAiReviewResultItem>;
15367
+ ChannelID?: string;
15368
+ /**
15369
+ * <p>日期</p>
15370
+ */
15371
+ Date?: string;
15372
+ /**
15373
+ * <p>查询开始时间</p>
15374
+ */
15375
+ StartTime?: string;
15376
+ /**
15377
+ * <p>查询结束时间</p>
15378
+ */
15379
+ EndTime?: string;
15380
+ /**
15381
+ * <p>持续时间</p>
15382
+ */
15383
+ Duration?: number;
15384
+ /**
15385
+ * <p>频道类型</p>
15386
+ */
15387
+ ChannelTier?: string;
15388
+ /**
15389
+ * <p>频道名称</p>
15390
+ */
15391
+ ChannelName?: string;
13988
15392
  }
13989
15393
  /**
13990
15394
  * DescribeSampleSnapshotTemplates请求参数结构体
@@ -14033,6 +15437,15 @@ export interface DisableWorkflowResponse {
14033
15437
  */
14034
15438
  RequestId?: string;
14035
15439
  }
15440
+ /**
15441
+ * DeleteStreamPackageLinearAssemblyPrograms返回参数结构体
15442
+ */
15443
+ export interface DeleteStreamPackageLinearAssemblyProgramsResponse {
15444
+ /**
15445
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15446
+ */
15447
+ RequestId?: string;
15448
+ }
14036
15449
  /**
14037
15450
  * 图片处理任务结果类型
14038
15451
  */
@@ -14209,17 +15622,13 @@ export interface AdaptiveStreamTemplate {
14209
15622
  AudioList?: Array<AudioTemplateInfo>;
14210
15623
  }
14211
15624
  /**
14212
- * ModifyStreamLinkOutputInfo请求参数结构体
15625
+ * DescribeStreamPackageSource请求参数结构体
14213
15626
  */
14214
- export interface ModifyStreamLinkOutputInfoRequest {
14215
- /**
14216
- * 流Id。
14217
- */
14218
- FlowId: string;
15627
+ export interface DescribeStreamPackageSourceRequest {
14219
15628
  /**
14220
- * 需要修改的Output配置。
15629
+ * Source Id。
14221
15630
  */
14222
- Output: ModifyOutputInfo;
15631
+ Id: string;
14223
15632
  }
14224
15633
  /**
14225
15634
  * DescribeStreamLinkEvents请求参数结构体
@@ -14657,6 +16066,15 @@ export interface CreateSampleSnapshotTemplateResponse {
14657
16066
  */
14658
16067
  RequestId?: string;
14659
16068
  }
16069
+ /**
16070
+ * ParseLiveStreamProcessNotification请求参数结构体
16071
+ */
16072
+ export interface ParseLiveStreamProcessNotificationRequest {
16073
+ /**
16074
+ * 从 CMQ 获取到的直播流事件通知内容。
16075
+ */
16076
+ Content: string;
16077
+ }
14660
16078
  /**
14661
16079
  * 超分配置
14662
16080
  */
@@ -14820,51 +16238,47 @@ export interface CreateSubtitleEmbedTemplateResponse {
14820
16238
  RequestId?: string;
14821
16239
  }
14822
16240
  /**
14823
- * ResetWorkflow返回参数结构体
16241
+ * CreateStreamPackageSourceLocation返回参数结构体
14824
16242
  */
14825
- export interface ResetWorkflowResponse {
16243
+ export interface CreateStreamPackageSourceLocationResponse {
16244
+ /**
16245
+ * SourceLocation信息。
16246
+ */
16247
+ Info?: SourceLocationInfo;
14826
16248
  /**
14827
16249
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14828
16250
  */
14829
16251
  RequestId?: string;
14830
16252
  }
14831
16253
  /**
14832
- * DescribeStreamLinkFlows请求参数结构体
16254
+ * DeleteSmartSubtitleTemplate请求参数结构体
14833
16255
  */
14834
- export interface DescribeStreamLinkFlowsRequest {
14835
- /**
14836
- * 当前页数,默认1。
14837
- */
14838
- PageNum?: number;
16256
+ export interface DeleteSmartSubtitleTemplateRequest {
14839
16257
  /**
14840
- * 每页大小,默认10。
16258
+ * 智能字幕模板唯一标识。
14841
16259
  */
14842
- PageSize?: number;
16260
+ Definition: number;
14843
16261
  }
14844
16262
  /**
14845
- * HLS配置参数
16263
+ * DescribeStreamPackageLinearAssemblyProgramSchedules请求参数结构体
14846
16264
  */
14847
- export interface HLSConfigureInfo {
16265
+ export interface DescribeStreamPackageLinearAssemblyProgramSchedulesRequest {
14848
16266
  /**
14849
- * 单个 TS 文件时长,单位:秒,取值范围 5-30 秒。
14850
-
14851
- 不填默认为 30 秒。
14852
- 注意:此字段可能返回 null,表示取不到有效值。
16267
+ * 查询某个Channel下面的所有Program。
14853
16268
  */
14854
- ItemDuration?: number;
14855
- /**
14856
- * 录制周期,单位:秒,取值范围 10 分钟到 12 小时。
14857
-
14858
- 不填默认为 10分钟(3600 秒)。
14859
- 注意:此字段可能返回 null,表示取不到有效值。
16269
+ ChannelId: string;
16270
+ /**
16271
+ * 窗口时长信息,单位秒。最大7776000s
14860
16272
  */
14861
- Interval?: number;
16273
+ TimeWindow?: number;
14862
16274
  /**
14863
- * 续录等待时间,单位:秒。取值范围为60秒-1800秒。
14864
- 不填默认为0(不启用续录)。
14865
- 注意:此字段可能返回 null,表示取不到有效值。
16275
+ * 页数,取值范围为[1, 10000]。
14866
16276
  */
14867
- ContinueTimeout?: number;
16277
+ PageNum?: number;
16278
+ /**
16279
+ * 每页大小,取值范围为[1, 1000]。
16280
+ */
16281
+ PageSize?: number;
14868
16282
  }
14869
16283
  /**
14870
16284
  * CreateAIAnalysisTemplate返回参数结构体
@@ -15119,6 +16533,19 @@ export interface TEHDConfigForUpdate {
15119
16533
  */
15120
16534
  MaxVideoBitrate?: number;
15121
16535
  }
16536
+ /**
16537
+ * DescribeStreamPackageSource返回参数结构体
16538
+ */
16539
+ export interface DescribeStreamPackageSourceResponse {
16540
+ /**
16541
+ * Source信息。
16542
+ */
16543
+ Info?: SourceInfo;
16544
+ /**
16545
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
16546
+ */
16547
+ RequestId?: string;
16548
+ }
15122
16549
  /**
15123
16550
  * WithdrawsWatermark请求参数结构体
15124
16551
  */
@@ -15267,6 +16694,19 @@ export interface ArtifactRepairConfig {
15267
16694
  */
15268
16695
  Type?: string;
15269
16696
  }
16697
+ /**
16698
+ * CreateStreamPackageSSAIChannel返回参数结构体
16699
+ */
16700
+ export interface CreateStreamPackageSSAIChannelResponse {
16701
+ /**
16702
+ * 创建的广告插入配置信息。
16703
+ */
16704
+ Info?: SSAIChannelInfo;
16705
+ /**
16706
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
16707
+ */
16708
+ RequestId?: string;
16709
+ }
15270
16710
  /**
15271
16711
  * 同步配音输出参数设置
15272
16712
  */
@@ -15453,6 +16893,80 @@ export interface ModifyAIRecognitionTemplateResponse {
15453
16893
  */
15454
16894
  RequestId?: string;
15455
16895
  }
16896
+ /**
16897
+ * SourceLocation配置信息。
16898
+ */
16899
+ export interface SourceLocationInfo {
16900
+ /**
16901
+ * <p>ID,唯一标识。</p>
16902
+ */
16903
+ Id?: string;
16904
+ /**
16905
+ * <p>SourceLocation名称。</p>
16906
+ */
16907
+ Name?: string;
16908
+ /**
16909
+ * <p>地域。</p>
16910
+ */
16911
+ Region?: string;
16912
+ /**
16913
+ * <p>BaseUrl信息。</p>
16914
+ */
16915
+ BaseUrl?: string;
16916
+ /**
16917
+ * <p>是否开启补片。</p>
16918
+ */
16919
+ SegmentDeliverEnable?: boolean;
16920
+ /**
16921
+ * <p>补片配置。</p>
16922
+ */
16923
+ SegmentDeliverConf?: SegmentDeliverInfo;
16924
+ /**
16925
+ * <p>绑定的直播source id列表。</p>
16926
+ */
16927
+ AttachedLiveSources?: Array<string>;
16928
+ /**
16929
+ * <p>绑定的点播source id列表。</p>
16930
+ */
16931
+ AttachedVodSources?: Array<string>;
16932
+ /**
16933
+ * <p>source location创建时间,Unix时间戳。</p>
16934
+ */
16935
+ CreateTime?: number;
16936
+ /**
16937
+ * <p>source location最近一次修改时间,Unix时间戳。</p>
16938
+ */
16939
+ UpdateTime?: number;
16940
+ /**
16941
+ * <p>是否开启package分发分片,默认开启。</p>
16942
+ */
16943
+ SegmentDeliverUsePackageEnable?: boolean;
16944
+ }
16945
+ /**
16946
+ * DescribeStreamPackageLinearAssemblyUsage请求参数结构体
16947
+ */
16948
+ export interface DescribeStreamPackageLinearAssemblyUsageRequest {
16949
+ /**
16950
+ * 查询开始时间
16951
+ */
16952
+ StartTime?: string;
16953
+ /**
16954
+ * 查询结束时间
16955
+ */
16956
+ EndTime?: string;
16957
+ /**
16958
+ * 维度,可选值:summary对应false;detail 对应true
16959
+ */
16960
+ Dimension?: boolean;
16961
+ /**
16962
+ * 要查询的频道ID列表
16963
+ */
16964
+ ChannelIds?: Array<string>;
16965
+ /**
16966
+ * 要查询的频道类型,可选Basic/Standard;若为空,默认查询所有类型
16967
+ */
16968
+ ChannelTiers?: Array<string>;
16969
+ }
15456
16970
  /**
15457
16971
  * 画面涉敏任务控制参数
15458
16972
  */
@@ -15871,13 +17385,25 @@ export interface AiSampleWordInfo {
15871
17385
  Tags?: Array<string>;
15872
17386
  }
15873
17387
  /**
15874
- * DeleteStreamLinkEvent请求参数结构体
17388
+ * 转自适应码流信息
15875
17389
  */
15876
- export interface DeleteStreamLinkEventRequest {
17390
+ export interface AdaptiveDynamicStreamingInfoItem {
15877
17391
  /**
15878
- * 媒体传输事件Id,删除前需要保证该Event关联的所有Flow都已经删除。
17392
+ * 转自适应码流规格。
15879
17393
  */
15880
- EventId: string;
17394
+ Definition?: number;
17395
+ /**
17396
+ * 打包格式,可能为 HLS和 MPEG-DASH 两种。
17397
+ */
17398
+ Package?: string;
17399
+ /**
17400
+ * 播放路径。
17401
+ */
17402
+ Path?: string;
17403
+ /**
17404
+ * 自适应码流文件的存储位置。
17405
+ */
17406
+ Storage?: TaskOutputStorage;
15881
17407
  }
15882
17408
  /**
15883
17409
  * CreateStreamLinkOutputInfo请求参数结构体
@@ -16005,25 +17531,29 @@ export interface ScheduleReviewTaskResult {
16005
17531
  FinishTime?: string;
16006
17532
  }
16007
17533
  /**
16008
- * ModifySubtitleEmbedTemplate请求参数结构体
17534
+ * ModifyStreamPackageSource请求参数结构体
16009
17535
  */
16010
- export interface ModifySubtitleEmbedTemplateRequest {
17536
+ export interface ModifyStreamPackageSourceRequest {
16011
17537
  /**
16012
- * <p>字幕压制模板唯一标识</p>
17538
+ * Source Id。
16013
17539
  */
16014
- Definition: number;
17540
+ Id: string;
16015
17541
  /**
16016
- * <p>字幕压制名称<br>长度限制:64 个字符。</p>
17542
+ * 修改后的名称。
16017
17543
  */
16018
17544
  Name?: string;
16019
17545
  /**
16020
- * <p>字幕压制模板描述信息<br>长度限制:256 个字符。</p>
17546
+ * 区分直播Live和点播VOD source类型。
16021
17547
  */
16022
- Comment?: string;
17548
+ Type?: string;
16023
17549
  /**
16024
- * <p>字幕压制相关配置</p>
17550
+ * source配置。
16025
17551
  */
16026
- SubtitleEmbedConfig?: SubtitleEmbedConfig;
17552
+ PackageConfs?: Array<SourcePackageConf>;
17553
+ /**
17554
+ * ADS可以根据Source Tag信息,返回更精准的广告。
17555
+ */
17556
+ SourceTags?: Array<SourceTag>;
16027
17557
  }
16028
17558
  /**
16029
17559
  * DescribeStreamLinkEventAttachedFlows返回参数结构体
@@ -16517,6 +18047,23 @@ export interface ModifyStreamLinkInputResponse {
16517
18047
  */
16518
18048
  RequestId?: string;
16519
18049
  }
18050
+ /**
18051
+ * 媒体处理 VOD(点播专业版) 输出对象信息。
18052
+ */
18053
+ export interface VODOutputStorage {
18054
+ /**
18055
+ * 媒体处理生成的文件输出的目标 *Bucket ID*
18056
+ */
18057
+ Bucket?: string;
18058
+ /**
18059
+ * 媒体处理生成的文件输出的目标 Bucket 的园区
18060
+ */
18061
+ Region?: string;
18062
+ /**
18063
+ * 点播专业版应用Id
18064
+ */
18065
+ SubAppId?: number;
18066
+ }
16520
18067
  /**
16521
18068
  * 片头片尾参数
16522
18069
  */
@@ -16679,6 +18226,39 @@ export interface AiAnalysisTaskDubbingResult {
16679
18226
  */
16680
18227
  Output?: AiAnalysisTaskDubbingOutput;
16681
18228
  }
18229
+ /**
18230
+ * program播放配置。
18231
+ */
18232
+ export interface PlaybackInfo {
18233
+ /**
18234
+ * <p>program持续时间,单位毫秒,直播有效。</p>
18235
+ */
18236
+ Duration?: number;
18237
+ /**
18238
+ * <p>program启动方式,直播只支持Absolute,点播还支持Relative。</p>
18239
+ */
18240
+ TransitionType?: string;
18241
+ /**
18242
+ * <p>unix时间戳,Absolute场景下program的开始执行时间。</p>
18243
+ */
18244
+ StartTime?: number;
18245
+ /**
18246
+ * <p>和所选program的插入顺序关系,分After和Before。</p>
18247
+ */
18248
+ RelativePosition?: string;
18249
+ /**
18250
+ * <p>所选的插入参考program id。</p>
18251
+ */
18252
+ RelativeProgramId?: string;
18253
+ /**
18254
+ * <p>垫片配置。</p>
18255
+ */
18256
+ ClipRangeConf?: ClipRangeInfo;
18257
+ /**
18258
+ * <p>RelativeProgramName。</p>
18259
+ */
18260
+ RelativeProgramName?: string;
18261
+ }
16682
18262
  /**
16683
18263
  * DeleteImageSpriteTemplate请求参数结构体
16684
18264
  */
@@ -16790,6 +18370,23 @@ export interface DescribeInputRTMPSettings {
16790
18370
  */
16791
18371
  StreamKey: string;
16792
18372
  }
18373
+ /**
18374
+ * 描述 URL 的完整信息
18375
+ */
18376
+ export interface StreamUrlDetail {
18377
+ /**
18378
+ * 会描述运营商信息等
18379
+ */
18380
+ Label?: string;
18381
+ /**
18382
+ * URL
18383
+ */
18384
+ Url?: string;
18385
+ /**
18386
+ * Playback: 拉流播放地址; RelayDestination:转推目的地址;SourceCaptureUrl:回源拉流地址;IngestEndpoint:推流地址
18387
+ */
18388
+ Type?: string;
18389
+ }
16793
18390
  /**
16794
18391
  * DeleteProcessImageTemplate返回参数结构体
16795
18392
  */
@@ -16840,6 +18437,43 @@ export interface SubtitleLayoutConfig {
16840
18437
  */
16841
18438
  Alignment?: string;
16842
18439
  }
18440
+ /**
18441
+ * 自定义水印规格参数。
18442
+ */
18443
+ export interface RawWatermarkParameter {
18444
+ /**
18445
+ * 水印类型,可选值:
18446
+ <li>image:图片水印。</li>
18447
+ */
18448
+ Type: string;
18449
+ /**
18450
+ * 原点位置,可选值:
18451
+ <li>TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角。</li>
18452
+ <li>TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
18453
+ <li>BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
18454
+ <li>BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。</li>
18455
+ 默认值:TopLeft。
18456
+ */
18457
+ CoordinateOrigin?: string;
18458
+ /**
18459
+ * 水印原点距离视频图像坐标原点的水平位置。支持 %、px 两种格式:
18460
+ <li>当字符串以 % 结尾,表示水印 XPos 为视频宽度指定百分比,如 10% 表示 XPos 为视频宽度的 10%;</li>
18461
+ <li>当字符串以 px 结尾,表示水印 XPos 为指定像素,如 100px 表示 XPos 为 100 像素。</li>
18462
+ 默认值:0px。
18463
+ */
18464
+ XPos?: string;
18465
+ /**
18466
+ * 水印原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式:
18467
+ <li>当字符串以 % 结尾,表示水印 YPos 为视频高度指定百分比,如 10% 表示 YPos 为视频高度的 10%;</li>
18468
+ <li>当字符串以 px 结尾,表示水印 YPos 为指定像素,如 100px 表示 YPos 为 100 像素。</li>
18469
+ 默认值:0px。
18470
+ */
18471
+ YPos?: string;
18472
+ /**
18473
+ * 图片水印模板,当 Type 为 image,该字段必填。当 Type 为 text,该字段无效。
18474
+ */
18475
+ ImageTemplate?: RawImageWatermarkInput;
18476
+ }
16843
18477
  /**
16844
18478
  * 传输流的SRT质量数据。
16845
18479
  */
@@ -16888,7 +18522,71 @@ export interface AiRecognitionTaskOcrFullTextResultInput {
16888
18522
  /**
16889
18523
  * 文本全文识别模板 ID。
16890
18524
  */
16891
- Definition?: number;
18525
+ Definition?: number;
18526
+ }
18527
+ /**
18528
+ * 图片缩放配置
18529
+ */
18530
+ export interface ImageResizeConfig {
18531
+ /**
18532
+ * 能力配置开关,可选值:
18533
+ <li>ON:开启</li>
18534
+ <li>OFF:关闭</li>
18535
+ 默认值:ON。
18536
+ */
18537
+ Switch?: string;
18538
+ /**
18539
+ * 输出图片模式,可选模式:
18540
+ <li>percent: 指定缩放倍率,可以为小数</li>
18541
+ <li>mfit: 缩放至指定宽高的较大矩形</li>
18542
+ <li>lfit: 缩放至指定宽高的较小矩形</li>
18543
+ <li>fill: 缩放至指定宽高的较大矩形,并居中裁剪指定宽高</li>
18544
+ <li>pad: 缩放至指定宽高的较小矩形,并填充到指定宽高</li>
18545
+ <li>fixed: 缩放至固定宽高,强制缩放</li>
18546
+ 默认值:percent。
18547
+ 注意:此字段可能返回 null,表示取不到有效值。
18548
+ */
18549
+ Mode?: string;
18550
+ /**
18551
+ * 缩放倍率,可以为小数,当Mode为percent时使用。
18552
+
18553
+ 默认值:1.0。
18554
+ 取值范围:[0.1,10.0]
18555
+ 注意:此字段可能返回 null,表示取不到有效值。
18556
+ */
18557
+ Percent?: number;
18558
+ /**
18559
+ * 目标图片宽度。
18560
+
18561
+ 取值范围:[1,16384]。
18562
+ 注意:此字段在Mode非percent时优先使用。
18563
+ 注意:此字段可能返回 null,表示取不到有效值。
18564
+ */
18565
+ Width?: number;
18566
+ /**
18567
+ * 目标图片高度。
18568
+
18569
+ 取值范围:[1,16384]。
18570
+ 注意:此字段在Mode非percent时优先使用。
18571
+ 注意:此字段可能返回 null,表示取不到有效值。
18572
+ */
18573
+ Height?: number;
18574
+ /**
18575
+ * 目标图片长边。
18576
+
18577
+ 取值范围:[1,16384]。
18578
+ 注意:此字段在Mode非percent且未配置Width和Height时使用。
18579
+ 注意:此字段可能返回 null,表示取不到有效值。
18580
+ */
18581
+ LongSide?: number;
18582
+ /**
18583
+ * 目标图片短边。
18584
+
18585
+ 取值范围:[1,16384]。
18586
+ 注意:此字段在Mode非percent且未配置Width和Height时使用。
18587
+ 注意:此字段可能返回 null,表示取不到有效值。
18588
+ */
18589
+ ShortSide?: number;
16892
18590
  }
16893
18591
  /**
16894
18592
  * 字幕压制模块文字描边配置
@@ -16915,6 +18613,36 @@ export interface SubtitleOutlineConfig {
16915
18613
  */
16916
18614
  OutlineAlpha?: number;
16917
18615
  }
18616
+ /**
18617
+ * DescribeStreamPackageLinearAssemblyPrograms返回参数结构体
18618
+ */
18619
+ export interface DescribeStreamPackageLinearAssemblyProgramsResponse {
18620
+ /**
18621
+ * Program列表。
18622
+ 注意:此字段可能返回 null,表示取不到有效值。
18623
+ */
18624
+ Infos?: Array<LinearAssemblyProgramInfo>;
18625
+ /**
18626
+ * 页数。
18627
+ */
18628
+ PageNum?: number;
18629
+ /**
18630
+ * 每页大小。
18631
+ */
18632
+ PageSize?: number;
18633
+ /**
18634
+ * 总数量。
18635
+ */
18636
+ TotalNum?: number;
18637
+ /**
18638
+ * 总页数。
18639
+ */
18640
+ TotalPage?: number;
18641
+ /**
18642
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18643
+ */
18644
+ RequestId?: string;
18645
+ }
16918
18646
  /**
16919
18647
  * DeleteStreamLinkEvent返回参数结构体
16920
18648
  */
@@ -16924,6 +18652,23 @@ export interface DeleteStreamLinkEventResponse {
16924
18652
  */
16925
18653
  RequestId?: string;
16926
18654
  }
18655
+ /**
18656
+ * DescribeStreamPackageSourceAlerts请求参数结构体
18657
+ */
18658
+ export interface DescribeStreamPackageSourceAlertsRequest {
18659
+ /**
18660
+ * Source ID。
18661
+ */
18662
+ SourceId: string;
18663
+ /**
18664
+ * 查询开始时间,Unix时间戳,支持最近七天的查询。
18665
+ */
18666
+ StartTime?: number;
18667
+ /**
18668
+ * 查询结束时间,Unix时间戳,支持最近七天的查询。
18669
+ */
18670
+ EndTime?: number;
18671
+ }
16927
18672
  /**
16928
18673
  * DescribeTasks返回参数结构体
16929
18674
  */
@@ -17019,92 +18764,71 @@ export interface ModifyImageSpriteTemplateRequest {
17019
18764
  Format?: string;
17020
18765
  }
17021
18766
  /**
17022
- * 查询输出的SRT配置信息。
18767
+ * CreateStreamPackageSource返回参数结构体
17023
18768
  */
17024
- export interface DescribeOutputSRTSettings {
17025
- /**
17026
- * 转推的目标的地址信息列表,SRT模式为CALLER时使用。
17027
- 注意:此字段可能返回 null,表示取不到有效值。
17028
- */
17029
- Destinations?: Array<SRTAddressDestination>;
18769
+ export interface CreateStreamPackageSourceResponse {
17030
18770
  /**
17031
- * 流Id。
17032
- 注意:此字段可能返回 null,表示取不到有效值。
18771
+ * Source信息。
17033
18772
  */
17034
- StreamId?: string;
18773
+ Info?: SourceInfo;
17035
18774
  /**
17036
- * 延迟。
17037
- 注意:此字段可能返回 null,表示取不到有效值。
18775
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17038
18776
  */
17039
- Latency?: number;
18777
+ RequestId?: string;
18778
+ }
18779
+ /**
18780
+ * 人脸识别输入。
18781
+ */
18782
+ export interface AiRecognitionTaskFaceResultInput {
17040
18783
  /**
17041
- * 接收延迟。
17042
- 注意:此字段可能返回 null,表示取不到有效值。
18784
+ * 人脸识别模板 ID。
17043
18785
  */
17044
- RecvLatency?: number;
18786
+ Definition?: number;
18787
+ }
18788
+ /**
18789
+ * EditMedia请求参数结构体
18790
+ */
18791
+ export interface EditMediaRequest {
17045
18792
  /**
17046
- * 对端延迟。
17047
- 注意:此字段可能返回 null,表示取不到有效值。
18793
+ * <p>输入的视频文件信息。</p>
17048
18794
  */
17049
- PeerLatency?: number;
18795
+ FileInfos: Array<EditMediaFileInfo>;
17050
18796
  /**
17051
- * 对端空闲超时时间。
17052
- 注意:此字段可能返回 null,表示取不到有效值。
18797
+ * <p>媒体处理输出文件的目标存储。</p>
17053
18798
  */
17054
- PeerIdleTimeout?: number;
18799
+ OutputStorage: TaskOutputStorage;
17055
18800
  /**
17056
- * 加密密钥。
17057
- 注意:此字段可能返回 null,表示取不到有效值。
18801
+ * <p>媒体处理输出文件的目标路径。</p><p>注意:对于复杂合成任务,路径中的文件名只可为数字、字母、-、_ 的组合,最长 64 个字符。</p>
17058
18802
  */
17059
- Passphrase?: string;
18803
+ OutputObjectPath: string;
17060
18804
  /**
17061
- * 加密密钥长度。
17062
- 注意:此字段可能返回 null,表示取不到有效值。
18805
+ * <p>【剪辑】任务生成的文件配置。</p>
17063
18806
  */
17064
- PbKeyLen?: number;
18807
+ OutputConfig?: EditMediaOutputConfig;
17065
18808
  /**
17066
- * SRT模式。
17067
- 注意:此字段可能返回 null,表示取不到有效值。
18809
+ * <p>【合成】任务配置。</p><p>注意:当其不为空时,认为是合成任务,否则按剪辑任务处理。</p>
17068
18810
  */
17069
- Mode?: string;
18811
+ ComposeConfig?: ComposeMediaConfig;
17070
18812
  /**
17071
- * 服务器监听地址,SRT模式为LISTENER时使用。
17072
- 注意:此字段可能返回 null,表示取不到有效值。
18813
+ * <p>任务的事件通知信息,不填代表不获取事件通知。</p>
17073
18814
  */
17074
- SourceAddresses?: Array<OutputSRTSourceAddressResp>;
18815
+ TaskNotifyConfig?: TaskNotifyConfig;
17075
18816
  /**
17076
- * FEC 配置
18817
+ * <p>任务优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。</p>
17077
18818
  */
17078
- FEC?: SRTFECFullOptions;
17079
- }
17080
- /**
17081
- * 人脸识别输入。
17082
- */
17083
- export interface AiRecognitionTaskFaceResultInput {
18819
+ TasksPriority?: number;
17084
18820
  /**
17085
- * 人脸识别模板 ID。
18821
+ * <p>用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。</p>
17086
18822
  */
17087
- Definition?: number;
17088
- }
17089
- /**
17090
- * 音量均衡配置
17091
- */
17092
- export interface VolumeBalanceConfig {
18823
+ SessionId?: string;
17093
18824
  /**
17094
- * 能力配置开关,可选值:
17095
- <li>ON:开启;</li>
17096
- <li>OFF:关闭。</li>
17097
- 默认值:ON。
18825
+ * <p>来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。</p>
17098
18826
  */
17099
- Switch?: string;
18827
+ SessionContext?: string;
17100
18828
  /**
17101
- * 类型,可选值:
17102
- <li>loudNorm:响度标准化</li>
17103
- <li>gainControl:减小突变</li>
17104
- 默认值:loudNorm。
17105
- 注意:此字段可能返回 null,表示取不到有效值。
18829
+ * <p>资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。</p>
17106
18830
  */
17107
- Type?: string;
18831
+ ResourceId?: string;
17108
18832
  }
17109
18833
  /**
17110
18834
  * 涉敏信息
@@ -17552,6 +19276,47 @@ export interface ModifySubtitleEmbedTemplateResponse {
17552
19276
  */
17553
19277
  RequestId?: string;
17554
19278
  }
19279
+ /**
19280
+ * 音色信息
19281
+ */
19282
+ export interface VoiceInfo {
19283
+ /**
19284
+ * <p>音色ID</p>
19285
+ */
19286
+ VoiceId?: string;
19287
+ /**
19288
+ * <p>音色名</p>
19289
+ */
19290
+ Name?: string;
19291
+ /**
19292
+ * <p>音色描述信息</p>
19293
+ */
19294
+ Description?: string;
19295
+ /**
19296
+ * <p>音色类别</p><p>枚举值:</p><ul><li>system: 系统音色</li></ul>
19297
+ */
19298
+ Category?: string;
19299
+ /**
19300
+ * <p>性别</p><p>枚举值:</p><ul><li>male: 男</li><li>famale: 女</li></ul>
19301
+ */
19302
+ Gender?: string;
19303
+ /**
19304
+ * <p>支持语种列表</p><p>如:en</p>
19305
+ */
19306
+ Languages?: Array<string>;
19307
+ /**
19308
+ * <p>试听音频URL</p>
19309
+ */
19310
+ AudioUrl?: string;
19311
+ /**
19312
+ * <p>标签列表</p><p>如:温柔</p>
19313
+ */
19314
+ Labels?: Array<string>;
19315
+ /**
19316
+ * <p>推荐场景</p><p>如:教育</p>
19317
+ */
19318
+ Scenes?: Array<string>;
19319
+ }
17555
19320
  /**
17556
19321
  * DescribeSnapshotByTimeOffsetTemplates返回参数结构体
17557
19322
  */
@@ -17829,6 +19594,39 @@ export interface AiRecognitionTaskAsrWordsResultInput {
17829
19594
  */
17830
19595
  Definition?: number;
17831
19596
  }
19597
+ /**
19598
+ * CreateStreamPackageLinearAssemblyChannel请求参数结构体
19599
+ */
19600
+ export interface CreateStreamPackageLinearAssemblyChannelRequest {
19601
+ /**
19602
+ * Channel名称。
19603
+ */
19604
+ Name: string;
19605
+ /**
19606
+ * 定义channel的特性,Standard支持直播和点播源,Basic只支持点播源编排,可选值:Standard、Basic。
19607
+ */
19608
+ Tier?: string;
19609
+ /**
19610
+ * 频道中的source切换的模式,分Linear线性和Loop循环,Basic只支持Linear,Standard两种都支持。
19611
+ */
19612
+ PlaybackMode?: string;
19613
+ /**
19614
+ * 时移开启开关,只有Tier为Standard时有效。
19615
+ */
19616
+ TimeShiftEnable?: boolean;
19617
+ /**
19618
+ * 时移配置,时移开关开启时有效。
19619
+ */
19620
+ TimeShiftConf?: TimeShiftInfo;
19621
+ /**
19622
+ * 垫片配置,只有PlaybackMode为Linear时有效。
19623
+ */
19624
+ SlateConf?: SlateInfo;
19625
+ /**
19626
+ * 输出配置。
19627
+ */
19628
+ Outputs?: Array<OutputReq>;
19629
+ }
17832
19630
  /**
17833
19631
  * CreateAIAnalysisTemplate请求参数结构体
17834
19632
  */
@@ -17867,6 +19665,54 @@ export interface AiReviewTerrorismTaskInput {
17867
19665
  */
17868
19666
  Definition: number;
17869
19667
  }
19668
+ /**
19669
+ * 流状态实时查询接口的流状态信息
19670
+ */
19671
+ export interface FlowRealtimeStatusItem {
19672
+ /**
19673
+ * 类型,Input|Output。
19674
+ */
19675
+ Type: string;
19676
+ /**
19677
+ * 输入Id,如果Type为Input,此字段不为空。
19678
+ */
19679
+ InputId: string;
19680
+ /**
19681
+ * 输出Id,如果Type为Output,此字段不为空。
19682
+ */
19683
+ OutputId: string;
19684
+ /**
19685
+ * 流Id。
19686
+ */
19687
+ FlowId: string;
19688
+ /**
19689
+ * 协议, SRT | RTMP。
19690
+ */
19691
+ Protocol: string;
19692
+ /**
19693
+ * 共同状态信息。
19694
+ */
19695
+ CommonStatus: FlowRealtimeStatusCommon;
19696
+ /**
19697
+ * 如果是SRT协议则有此字段。
19698
+ 注意:此字段可能返回 null,表示取不到有效值。
19699
+ */
19700
+ SRTStatus: FlowRealtimeStatusSRT;
19701
+ /**
19702
+ * 如果是RTMP协议则有此字段。
19703
+ 注意:此字段可能返回 null,表示取不到有效值。
19704
+ */
19705
+ RTMPStatus: FlowRealtimeStatusRTMP;
19706
+ /**
19707
+ * 服务器IP。
19708
+ */
19709
+ ConnectServerIP: string;
19710
+ /**
19711
+ * 如果是RTP协议则有此字段。
19712
+ 注意:此字段可能返回 null,表示取不到有效值。
19713
+ */
19714
+ RTPStatus: FlowRealtimeStatusRTP;
19715
+ }
17870
19716
  /**
17871
19717
  * DescribeWorkflows请求参数结构体
17872
19718
  */
@@ -19297,6 +21143,43 @@ export interface TerrorismImgReviewTemplateInfo {
19297
21143
  */
19298
21144
  ReviewConfidence?: number;
19299
21145
  }
21146
+ /**
21147
+ * 线性组装program告警信息详情。
21148
+ */
21149
+ export interface ProgramAlertInfos {
21150
+ /**
21151
+ * <p>频道ID。</p>
21152
+ */
21153
+ ChannelId?: string;
21154
+ /**
21155
+ * <p>频道名称。</p>
21156
+ */
21157
+ ChannelName?: string;
21158
+ /**
21159
+ * <p>ProgramName。</p>
21160
+ */
21161
+ ProgramId?: string;
21162
+ /**
21163
+ * <p>ProgramName。</p>
21164
+ */
21165
+ ProgramName?: string;
21166
+ /**
21167
+ * <p>告警事件码。</p>
21168
+ */
21169
+ Code?: number;
21170
+ /**
21171
+ * <p>告警分类。</p>
21172
+ */
21173
+ Category?: string;
21174
+ /**
21175
+ * <p>告警消息。</p>
21176
+ */
21177
+ Message?: string;
21178
+ /**
21179
+ * <p>更新时间。</p>
21180
+ */
21181
+ LastModifiedTime?: number;
21182
+ }
19300
21183
  /**
19301
21184
  * 热词库查询返回结果集
19302
21185
  */
@@ -19350,14 +21233,27 @@ export interface AsrHotwordsSet {
19350
21233
  */
19351
21234
  export interface AiAnalysisTaskHeadTailInput {
19352
21235
  /**
19353
- * 片头片尾识别模板 ID。
21236
+ * 片头片尾识别模板 ID。
21237
+ */
21238
+ Definition?: number;
21239
+ }
21240
+ /**
21241
+ * DeleteSubtitleEmbedTemplate返回参数结构体
21242
+ */
21243
+ export interface DeleteSubtitleEmbedTemplateResponse {
21244
+ /**
21245
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
19354
21246
  */
19355
- Definition?: number;
21247
+ RequestId?: string;
19356
21248
  }
19357
21249
  /**
19358
- * DeleteSubtitleEmbedTemplate返回参数结构体
21250
+ * DescribeStreamPackageSSAIUsage返回参数结构体
19359
21251
  */
19360
- export interface DeleteSubtitleEmbedTemplateResponse {
21252
+ export interface DescribeStreamPackageSSAIUsageResponse {
21253
+ /**
21254
+ * SSAI用量信息
21255
+ */
21256
+ Info?: SSAIUsageInfo;
19361
21257
  /**
19362
21258
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
19363
21259
  */
@@ -19512,13 +21408,9 @@ export interface DescribeUsageDataRequest {
19512
21408
  ProcessRegions?: Array<string>;
19513
21409
  }
19514
21410
  /**
19515
- * DescribeStreamLinkSecurityGroups返回参数结构体
21411
+ * DeleteStreamPackageLinearAssemblyChannel返回参数结构体
19516
21412
  */
19517
- export interface DescribeStreamLinkSecurityGroupsResponse {
19518
- /**
19519
- * 安全组信息列表。
19520
- */
19521
- Infos?: Array<SecurityGroupInfo>;
21413
+ export interface DeleteStreamPackageLinearAssemblyChannelResponse {
19522
21414
  /**
19523
21415
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
19524
21416
  */
@@ -19672,6 +21564,26 @@ export interface DiffusionEnhanceConfig {
19672
21564
  */
19673
21565
  Type?: string;
19674
21566
  }
21567
+ /**
21568
+ * 音量均衡配置
21569
+ */
21570
+ export interface VolumeBalanceConfig {
21571
+ /**
21572
+ * 能力配置开关,可选值:
21573
+ <li>ON:开启;</li>
21574
+ <li>OFF:关闭。</li>
21575
+ 默认值:ON。
21576
+ */
21577
+ Switch?: string;
21578
+ /**
21579
+ * 类型,可选值:
21580
+ <li>loudNorm:响度标准化</li>
21581
+ <li>gainControl:减小突变</li>
21582
+ 默认值:loudNorm。
21583
+ 注意:此字段可能返回 null,表示取不到有效值。
21584
+ */
21585
+ Type?: string;
21586
+ }
19675
21587
  /**
19676
21588
  * DescribeWatermarkTemplates返回参数结构体
19677
21589
  */
@@ -19728,6 +21640,80 @@ export interface DescribeStreamLinkFlowLogsRequest {
19728
21640
  */
19729
21641
  PageNum?: number;
19730
21642
  }
21643
+ /**
21644
+ * TimeSignalInfo。
21645
+ */
21646
+ export interface TimeSignalInfo {
21647
+ /**
21648
+ * EventID。
21649
+ */
21650
+ EventID?: string;
21651
+ /**
21652
+ * UPIDType。
21653
+ */
21654
+ UPIDType?: string;
21655
+ /**
21656
+ * UPID。
21657
+ */
21658
+ UPID?: string;
21659
+ /**
21660
+ * TypeID。
21661
+ */
21662
+ TypeID?: string;
21663
+ /**
21664
+ * Num。
21665
+ */
21666
+ Num?: string;
21667
+ /**
21668
+ * Expected。
21669
+ */
21670
+ Expected?: string;
21671
+ /**
21672
+ * SubsegmentNum。
21673
+ */
21674
+ SubsegmentNum?: string;
21675
+ /**
21676
+ * SubsegmentsExpected。
21677
+ */
21678
+ SubsegmentsExpected?: string;
21679
+ }
21680
+ /**
21681
+ * ModifyStreamPackageLinearAssemblyChannel请求参数结构体
21682
+ */
21683
+ export interface ModifyStreamPackageLinearAssemblyChannelRequest {
21684
+ /**
21685
+ * Channel Id。
21686
+ */
21687
+ Id: string;
21688
+ /**
21689
+ * 修改后的名称。
21690
+ */
21691
+ Name?: string;
21692
+ /**
21693
+ * 定义channel的特性,Standard支持直播和点播源,Basic只支持点播源编排。
21694
+ */
21695
+ Tier?: string;
21696
+ /**
21697
+ * 频道中的source切换的模式,分Linear线性和Loop循环,直播只支持Linear。
21698
+ */
21699
+ PlaybackMode?: string;
21700
+ /**
21701
+ * 时移开启开关。
21702
+ */
21703
+ TimeShiftEnable?: boolean;
21704
+ /**
21705
+ * 时移配置。
21706
+ */
21707
+ TimeShiftConf?: TimeShiftInfo;
21708
+ /**
21709
+ * 垫片配置。
21710
+ */
21711
+ SlateConf?: SlateInfo;
21712
+ /**
21713
+ * 输出配置。
21714
+ */
21715
+ Outputs?: Array<OutputInfo>;
21716
+ }
19731
21717
  /**
19732
21718
  * DeleteQualityControlTemplate返回参数结构体
19733
21719
  */
@@ -19798,6 +21784,27 @@ export interface FrameTagConfigureInfo {
19798
21784
  */
19799
21785
  Switch: string;
19800
21786
  }
21787
+ /**
21788
+ * 识别音频单句结果
21789
+ */
21790
+ export interface RecognizeAudioSentence {
21791
+ /**
21792
+ * 在音频中的起始时间,单位秒
21793
+ */
21794
+ Start?: number;
21795
+ /**
21796
+ * 在音频中的截止时间,单位秒
21797
+ */
21798
+ End?: number;
21799
+ /**
21800
+ * 音频识别结果
21801
+ */
21802
+ Text?: string;
21803
+ /**
21804
+ * 字词时间戳结果
21805
+ */
21806
+ WordsInfo?: Array<WordResult>;
21807
+ }
19801
21808
  /**
19802
21809
  * DeleteWorkflow返回参数结构体
19803
21810
  */
@@ -19864,6 +21871,28 @@ export interface AiAnalysisTaskHeadTailOutput {
19864
21871
  */
19865
21872
  TailTimeOffset?: number;
19866
21873
  }
21874
+ /**
21875
+ * DescribeVoices返回参数结构体
21876
+ */
21877
+ export interface DescribeVoicesResponse {
21878
+ /**
21879
+ * <p>错误码,成功时返回0</p>
21880
+ */
21881
+ ErrorCode?: number;
21882
+ /**
21883
+ * <p>错误信息,成功时返回success</p>
21884
+ */
21885
+ Msg?: string;
21886
+ /**
21887
+ * <p>可用音色列表</p>
21888
+ 注意:此字段可能返回 null,表示取不到有效值。
21889
+ */
21890
+ Voices?: Array<VoiceInfo>;
21891
+ /**
21892
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
21893
+ */
21894
+ RequestId?: string;
21895
+ }
19867
21896
  /**
19868
21897
  * 提取盲水印配置
19869
21898
  */
@@ -19960,6 +21989,36 @@ export interface LiveStreamObjectRecognitionResult {
19960
21989
  */
19961
21990
  Url?: string;
19962
21991
  }
21992
+ /**
21993
+ * DescribeStreamPackageSourceLocations返回参数结构体
21994
+ */
21995
+ export interface DescribeStreamPackageSourceLocationsResponse {
21996
+ /**
21997
+ * SourceLocation列表。
21998
+ 注意:此字段可能返回 null,表示取不到有效值。
21999
+ */
22000
+ Infos?: Array<SourceLocationInfo>;
22001
+ /**
22002
+ * 页数。
22003
+ */
22004
+ PageNum?: number;
22005
+ /**
22006
+ * 每页大小。
22007
+ */
22008
+ PageSize?: number;
22009
+ /**
22010
+ * 总数量。
22011
+ */
22012
+ TotalNum?: number;
22013
+ /**
22014
+ * 总页数。
22015
+ */
22016
+ TotalPage?: number;
22017
+ /**
22018
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
22019
+ */
22020
+ RequestId?: string;
22021
+ }
19963
22022
  /**
19964
22023
  * DescribeImageTaskDetail返回参数结构体
19965
22024
  */
@@ -20027,6 +22086,36 @@ export interface DescribePersonSamplesResponse {
20027
22086
  */
20028
22087
  RequestId?: string;
20029
22088
  }
22089
+ /**
22090
+ * 源文件信息。
22091
+ */
22092
+ export interface SourcePackageConf {
22093
+ /**
22094
+ * group名称,当channel为Linear模式并且选择了vod source的时候,该group 名称和channel output的输出组名称对应。
22095
+ */
22096
+ GroupName?: string;
22097
+ /**
22098
+ * 类型,区分HLS和DASH,可选值:HLS、DASH。
22099
+ */
22100
+ Type?: string;
22101
+ /**
22102
+ * 访问路径。
22103
+ */
22104
+ Path?: string;
22105
+ }
22106
+ /**
22107
+ * DescribeStreamLinkFlows请求参数结构体
22108
+ */
22109
+ export interface DescribeStreamLinkFlowsRequest {
22110
+ /**
22111
+ * 当前页数,默认1。
22112
+ */
22113
+ PageNum?: number;
22114
+ /**
22115
+ * 每页大小,默认10。
22116
+ */
22117
+ PageSize?: number;
22118
+ }
20030
22119
  /**
20031
22120
  * ModifySchedule返回参数结构体
20032
22121
  */
@@ -20214,21 +22303,13 @@ export interface AiRecognitionTaskObjectResult {
20214
22303
  Output?: AiRecognitionTaskObjectResultOutput;
20215
22304
  }
20216
22305
  /**
20217
- * DescribeStreamLinkFlowRealtimeStatus请求参数结构体
22306
+ * ActivateSSAI返回参数结构体
20218
22307
  */
20219
- export interface DescribeStreamLinkFlowRealtimeStatusRequest {
20220
- /**
20221
- * 流ID。
20222
- */
20223
- FlowId: string;
22308
+ export interface ActivateSSAIResponse {
20224
22309
  /**
20225
- * 输入id数组,如果输入输出数组都为空,则代表全量查询。
20226
- */
20227
- InputIds?: Array<string>;
20228
- /**
20229
- * 输出id数组,如果输入输出数组都为空,则代表全量查询。
22310
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20230
22311
  */
20231
- OutputIds?: Array<string>;
22312
+ RequestId?: string;
20232
22313
  }
20233
22314
  /**
20234
22315
  * DescribeAIAnalysisTemplates返回参数结构体
@@ -20277,13 +22358,17 @@ export interface AigcVideoExtraParam {
20277
22358
  EnableBgm?: boolean;
20278
22359
  }
20279
22360
  /**
20280
- * ParseLiveStreamProcessNotification请求参数结构体
22361
+ * DescribeStreamPackageLinearAssemblyChannelAlerts返回参数结构体
20281
22362
  */
20282
- export interface ParseLiveStreamProcessNotificationRequest {
22363
+ export interface DescribeStreamPackageLinearAssemblyChannelAlertsResponse {
20283
22364
  /**
20284
- * 从 CMQ 获取到的直播流事件通知内容。
22365
+ * 频道告警信息。
20285
22366
  */
20286
- Content: string;
22367
+ Infos?: ChannelAlertResp;
22368
+ /**
22369
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
22370
+ */
22371
+ RequestId?: string;
20287
22372
  }
20288
22373
  /**
20289
22374
  * 语音关键词识别结果。
@@ -20541,6 +22626,15 @@ export interface AiReviewTaskPornAsrResult {
20541
22626
  */
20542
22627
  Output?: AiReviewPornAsrTaskOutput;
20543
22628
  }
22629
+ /**
22630
+ * ModifyStreamPackageLinearAssemblyChannel返回参数结构体
22631
+ */
22632
+ export interface ModifyStreamPackageLinearAssemblyChannelResponse {
22633
+ /**
22634
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
22635
+ */
22636
+ RequestId?: string;
22637
+ }
20544
22638
  /**
20545
22639
  * ModifyBlindWatermarkTemplate请求参数结构体
20546
22640
  */
@@ -20645,87 +22739,36 @@ export interface SmartSubtitleTaskTransTextSegmentItem {
20645
22739
  */
20646
22740
  Wordlist?: Array<WordResult>;
20647
22741
  /**
20648
- * <p>说话人ID(如启用说话人识别)</p>
20649
- */
20650
- SpeakerId?: string;
20651
- }
20652
- /**
20653
- * 图片处理编排中使用的输入参数。
20654
- */
20655
- export interface AddOnImageInput {
20656
- /**
20657
- * 图片路径。
20658
- */
20659
- Image?: MediaInputInfo;
20660
- }
20661
- /**
20662
- * 人脸识别任务控制参数
20663
- */
20664
- export interface FaceConfigureInfo {
20665
- /**
20666
- * 人脸识别任务开关,可选值:
20667
- <li>ON:开启智能人脸识别任务;</li>
20668
- <li>OFF:关闭智能人脸识别任务。</li>
20669
- */
20670
- Switch: string;
20671
- /**
20672
- * 人脸识别过滤分数,当识别结果达到该分数以上,返回识别结果。默认 95 分。取值范围:0 - 100。
20673
- */
20674
- Score?: number;
20675
- /**
20676
- * 默认人物过滤标签,指定需要返回的默认人物的标签。如果未填或者为空,则全部默认人物结果都返回。标签可选值:
20677
- <li>entertainment:娱乐明星;</li>
20678
- <li>sport:体育明星;</li>
20679
- <li>politician:敏感人物。</li>
20680
- */
20681
- DefaultLibraryLabelSet?: Array<string>;
20682
- /**
20683
- * 用户自定义人物过滤标签,指定需要返回的用户自定义人物的标签。如果未填或者为空,则全部自定义人物结果都返回。
20684
- 标签个数最多 100 个,每个标签长度最多 16 个字符。
20685
- */
20686
- UserDefineLibraryLabelSet?: Array<string>;
20687
- /**
20688
- * 人物库选择,可选值:
20689
- <li>Default:使用默认人物库;</li>
20690
- <li>UserDefine:使用用户自定义人物库。</li>
20691
- <li>All:同时使用默认人物库和用户自定义人物库。</li>
20692
- 默认值:All,使用系统默认人物库及用户自定义人物库。
20693
- */
20694
- FaceLibrary?: string;
20695
- }
20696
- /**
20697
- * 分段信息。
20698
- */
20699
- export interface LiveAiParagraphInfo {
20700
- /**
20701
- * 分段摘要
20702
- */
20703
- Summary?: string;
20704
- /**
20705
- * 分段标题
20706
- */
20707
- Title?: string;
20708
- /**
20709
- * 分段关键词
20710
- */
20711
- Keywords?: Array<string>;
20712
- /**
20713
- * 分段起始时间点,秒
22742
+ * <p>说话人ID(如启用说话人识别)</p>
20714
22743
  */
20715
- StartTimeOffset?: number;
22744
+ SpeakerId?: string;
22745
+ }
22746
+ /**
22747
+ * 图片处理编排中使用的输入参数。
22748
+ */
22749
+ export interface AddOnImageInput {
20716
22750
  /**
20717
- * 分段结束时间点,秒
22751
+ * 图片路径。
20718
22752
  */
20719
- EndTimeOffset?: number;
22753
+ Image?: MediaInputInfo;
22754
+ }
22755
+ /**
22756
+ * DescribeVoices请求参数结构体
22757
+ */
22758
+ export interface DescribeVoicesRequest {
20720
22759
  /**
20721
- * 直播切片对应直播起始时间点,采用 ISO 日期格式。
22760
+ * <p>音色类别</p><p>枚举值:</p><ul><li>system: 系统音色</li></ul>
20722
22761
  */
20723
- BeginTime?: string;
22762
+ VoiceType?: string;
20724
22763
  /**
20725
- * 直播切片对应直播结束时间点,采用 ISO 日期格式。
22764
+ * <p>扩展参数,json字符串</p><p>其他筛选条件voiceName String 音色名,模糊匹配labels Array of String 标签,匹配包含这些标签的音色</p>
20726
22765
  */
20727
- EndTime?: string;
22766
+ ExtParam?: string;
20728
22767
  }
22768
+ /**
22769
+ * ActivateSSAI请求参数结构体
22770
+ */
22771
+ export type ActivateSSAIRequest = null;
20729
22772
  /**
20730
22773
  * 智能人脸识别输出。
20731
22774
  */
@@ -20762,6 +22805,19 @@ export interface PornImgReviewTemplateInfoForUpdate {
20762
22805
  */
20763
22806
  ReviewConfidence?: number;
20764
22807
  }
22808
+ /**
22809
+ * DescribeStreamPackageSSAIChannels请求参数结构体
22810
+ */
22811
+ export interface DescribeStreamPackageSSAIChannelsRequest {
22812
+ /**
22813
+ * 页码,默认1。
22814
+ */
22815
+ PageNum?: number;
22816
+ /**
22817
+ * 每页大小,默认10。
22818
+ */
22819
+ PageSize?: number;
22820
+ }
20765
22821
  /**
20766
22822
  * DescribeAdaptiveDynamicStreamingTemplates请求参数结构体
20767
22823
  */
@@ -20838,6 +22894,28 @@ export interface PornImgReviewTemplateInfo {
20838
22894
  */
20839
22895
  ReviewConfidence?: number;
20840
22896
  }
22897
+ /**
22898
+ * DeleteStreamPackageSourceLocation请求参数结构体
22899
+ */
22900
+ export interface DeleteStreamPackageSourceLocationRequest {
22901
+ /**
22902
+ * SourceLocation Id。
22903
+ */
22904
+ Id: string;
22905
+ }
22906
+ /**
22907
+ * DescribeStreamPackageLinearAssemblyProgram返回参数结构体
22908
+ */
22909
+ export interface DescribeStreamPackageLinearAssemblyProgramResponse {
22910
+ /**
22911
+ * Program信息。
22912
+ */
22913
+ Info?: LinearAssemblyProgramInfo;
22914
+ /**
22915
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
22916
+ */
22917
+ RequestId?: string;
22918
+ }
20841
22919
  /**
20842
22920
  * Ocr 文字敏感信息
20843
22921
  */
@@ -21288,23 +23366,30 @@ export interface CreateSubtitleEmbedTemplateRequest {
21288
23366
  SubtitleEmbedConfig?: SubtitleEmbedConfig;
21289
23367
  }
21290
23368
  /**
21291
- * 智能擦除,指定擦除区域配置。
21292
- 对指定时间段内的指定区域直接进行擦除。
21293
- 当BeginMs和EndMs均取0时对整个视频内的指定区域直接进行擦除。
23369
+ * DescribeStreamPackageSourceAlerts返回参数结构体
21294
23370
  */
21295
- export interface EraseTimeArea {
23371
+ export interface DescribeStreamPackageSourceAlertsResponse {
21296
23372
  /**
21297
- * 开始时间,单位:毫秒
23373
+ * Source告警信息。
21298
23374
  */
21299
- BeginMs: number;
23375
+ Infos?: Array<SourceAlert>;
21300
23376
  /**
21301
- * 结束时间,单位:毫秒
23377
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
21302
23378
  */
21303
- EndMs: number;
23379
+ RequestId?: string;
23380
+ }
23381
+ /**
23382
+ * DescribeStreamPackageLinearAssemblyChannel返回参数结构体
23383
+ */
23384
+ export interface DescribeStreamPackageLinearAssemblyChannelResponse {
21304
23385
  /**
21305
- * 时间段内擦除区域列表
23386
+ * Channel信息。
21306
23387
  */
21307
- Areas: Array<EraseArea>;
23388
+ Info?: LinearAssemblyChannelInfo;
23389
+ /**
23390
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23391
+ */
23392
+ RequestId?: string;
21308
23393
  }
21309
23394
  /**
21310
23395
  * 视频检索的检索输入
@@ -21406,6 +23491,48 @@ export interface SampleSnapshotTaskInput {
21406
23491
  */
21407
23492
  ObjectNumberFormat?: NumberFormat;
21408
23493
  }
23494
+ /**
23495
+ * 直播流 AI 审核结果
23496
+ */
23497
+ export interface LiveStreamAiReviewResultInfo {
23498
+ /**
23499
+ * 内容审核结果列表。
23500
+ */
23501
+ ResultSet: Array<LiveStreamAiReviewResultItem>;
23502
+ }
23503
+ /**
23504
+ * 该channel下面Program的调度信息。
23505
+ */
23506
+ export interface ProgramScheduleInfo {
23507
+ /**
23508
+ * <p>program名称。</p>
23509
+ */
23510
+ ProgramName?: string;
23511
+ /**
23512
+ * <p>program id。</p>
23513
+ */
23514
+ ProgramId?: string;
23515
+ /**
23516
+ * <p>source类型。</p>
23517
+ */
23518
+ SourceType?: string;
23519
+ /**
23520
+ * <p>source id。</p>
23521
+ */
23522
+ SourceId?: string;
23523
+ /**
23524
+ * <p>source location的id。</p>
23525
+ */
23526
+ SourceLocationId?: string;
23527
+ /**
23528
+ * <p>开始时间戳。</p>
23529
+ */
23530
+ StartTime?: number;
23531
+ /**
23532
+ * <p>持续时长。</p>
23533
+ */
23534
+ Duration?: string;
23535
+ }
21409
23536
  /**
21410
23537
  * 音轨信息
21411
23538
  */
@@ -21476,6 +23603,23 @@ export interface QualityControlTemplate {
21476
23603
  */
21477
23604
  Strategy?: QualityControlStrategy;
21478
23605
  }
23606
+ /**
23607
+ * 线性组装用量查询响应
23608
+ */
23609
+ export interface AssemblyUsageInfo {
23610
+ /**
23611
+ * 频道线性组装用量明细
23612
+ */
23613
+ AssemblyUsageDetails?: Array<AssemblyUsageDetail>;
23614
+ /**
23615
+ * Basic频道类型总时长
23616
+ */
23617
+ SumBasicChannelDuration?: number;
23618
+ /**
23619
+ * Standard频道类型总时长
23620
+ */
23621
+ SumStandardChannelDuration?: number;
23622
+ }
21479
23623
  /**
21480
23624
  * 涉敏任务控制参数
21481
23625
  */
@@ -21489,6 +23633,19 @@ export interface TerrorismConfigureInfo {
21489
23633
  */
21490
23634
  OcrReviewInfo?: TerrorismOcrReviewTemplateInfo;
21491
23635
  }
23636
+ /**
23637
+ * CreateStreamPackageLinearAssemblyProgram返回参数结构体
23638
+ */
23639
+ export interface CreateStreamPackageLinearAssemblyProgramResponse {
23640
+ /**
23641
+ * channel信息。
23642
+ */
23643
+ Info?: LinearAssemblyProgramInfo;
23644
+ /**
23645
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23646
+ */
23647
+ RequestId?: string;
23648
+ }
21492
23649
  /**
21493
23650
  * 语音涉敏任务控制参数
21494
23651
  */
@@ -21795,37 +23952,13 @@ export interface DescribeHLSPullSourceAddress {
21795
23952
  Url: string;
21796
23953
  }
21797
23954
  /**
21798
- * 雪碧图信息
23955
+ * DeleteStreamPackageLinearAssemblyProgram返回参数结构体
21799
23956
  */
21800
- export interface MediaImageSpriteItem {
21801
- /**
21802
- * 雪碧图规格,参见[雪碧图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.9B.AA.E7.A2.A7.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
21803
- */
21804
- Definition?: number;
21805
- /**
21806
- * 雪碧图小图的高度。
21807
- */
21808
- Height?: number;
21809
- /**
21810
- * 雪碧图小图的宽度。
21811
- */
21812
- Width?: number;
23957
+ export interface DeleteStreamPackageLinearAssemblyProgramResponse {
21813
23958
  /**
21814
- * 每一张雪碧图大图里小图的数量。
21815
- */
21816
- TotalCount?: number;
21817
- /**
21818
- * 每一张雪碧图大图的路径。
21819
- */
21820
- ImagePathSet?: Array<string>;
21821
- /**
21822
- * 雪碧图子图位置与时间关系的 WebVtt 文件路径。WebVtt 文件表明了各个雪碧图小图对应的时间点,以及在雪碧大图里的坐标位置,一般被播放器用于实现预览。
21823
- */
21824
- WebVttPath?: string;
21825
- /**
21826
- * 雪碧图文件的存储位置。
23959
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
21827
23960
  */
21828
- Storage?: TaskOutputStorage;
23961
+ RequestId?: string;
21829
23962
  }
21830
23963
  /**
21831
23964
  * 音频增强配置
@@ -22120,6 +24253,15 @@ export interface CreateSmartSubtitleTemplateResponse {
22120
24253
  */
22121
24254
  RequestId?: string;
22122
24255
  }
24256
+ /**
24257
+ * 线性组装频道时移配置信息。
24258
+ */
24259
+ export interface TimeShiftInfo {
24260
+ /**
24261
+ * 回看窗口,单位秒。
24262
+ */
24263
+ TimeWindows?: number;
24264
+ }
22123
24265
  /**
22124
24266
  * 直播流 AI 分析结果
22125
24267
  */
@@ -22182,6 +24324,27 @@ export interface AiRecognitionTaskTransTextResult {
22182
24324
  */
22183
24325
  Progress?: number;
22184
24326
  }
24327
+ /**
24328
+ * 智能字幕结果
24329
+ */
24330
+ export interface SubtitleResult {
24331
+ /**
24332
+ * <p>字幕文件语言</p>
24333
+ */
24334
+ Language?: string;
24335
+ /**
24336
+ * <p>处理是否成功</p>
24337
+ */
24338
+ Status?: string;
24339
+ /**
24340
+ * <p>字幕文件路径。</p>
24341
+ */
24342
+ Path?: string;
24343
+ /**
24344
+ * <p>字幕压制视频路径。</p>
24345
+ */
24346
+ SubtitleEmbedPath?: string;
24347
+ }
22185
24348
  /**
22186
24349
  * DescribeGroupAttachFlowsById返回参数结构体
22187
24350
  */
@@ -22195,6 +24358,19 @@ export interface DescribeGroupAttachFlowsByIdResponse {
22195
24358
  */
22196
24359
  RequestId?: string;
22197
24360
  }
24361
+ /**
24362
+ * DescribeStreamPackageLinearAssemblyUsage返回参数结构体
24363
+ */
24364
+ export interface DescribeStreamPackageLinearAssemblyUsageResponse {
24365
+ /**
24366
+ * 线性组装用量详情
24367
+ */
24368
+ Info?: AssemblyUsageInfo;
24369
+ /**
24370
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
24371
+ */
24372
+ RequestId?: string;
24373
+ }
22198
24374
  /**
22199
24375
  * BatchStopStreamLinkFlow返回参数结构体
22200
24376
  */
@@ -22204,6 +24380,63 @@ export interface BatchStopStreamLinkFlowResponse {
22204
24380
  */
22205
24381
  RequestId?: string;
22206
24382
  }
24383
+ /**
24384
+ * 线性组装频道信息。
24385
+ */
24386
+ export interface LinearAssemblyChannelInfo {
24387
+ /**
24388
+ * <p>线性组装频道名称。</p>
24389
+ */
24390
+ Name?: string;
24391
+ /**
24392
+ * <p>定义channel的特性,Standard支持直播和点播源,Basic只支持点播源编排。</p>
24393
+ */
24394
+ Tier?: string;
24395
+ /**
24396
+ * <p>频道中的source切换的模式,分Linear线性和Loop循环,直播只支持Linear。</p>
24397
+ */
24398
+ PlaybackMode?: string;
24399
+ /**
24400
+ * <p>时移配置,vod有效。</p>
24401
+ */
24402
+ TimeShiftConf?: TimeShiftInfo;
24403
+ /**
24404
+ * <p>垫片配置。</p>
24405
+ */
24406
+ SlateConf?: SlateInfo;
24407
+ /**
24408
+ * <p>output信息。</p>
24409
+ */
24410
+ Outputs?: Array<OutputInfo>;
24411
+ /**
24412
+ * <p>该channel绑定的program列表。</p>
24413
+ */
24414
+ AttachedPrograms?: Array<string>;
24415
+ /**
24416
+ * <p>program信息。</p>
24417
+ */
24418
+ ProgramSchedules?: Array<ProgramScheduleInfo>;
24419
+ /**
24420
+ * <p>Id。</p>
24421
+ */
24422
+ Id?: string;
24423
+ /**
24424
+ * <p>Region。</p>
24425
+ */
24426
+ Region?: string;
24427
+ /**
24428
+ * <p>State。</p>
24429
+ */
24430
+ State?: string;
24431
+ /**
24432
+ * <p>时移开启开关。</p>
24433
+ */
24434
+ TimeShiftEnable?: boolean;
24435
+ /**
24436
+ * <p>channel创建时间,unix秒时间戳。</p>
24437
+ */
24438
+ CreateTime?: number;
24439
+ }
22207
24440
  /**
22208
24441
  * 编辑视频任务的输出
22209
24442
  */
@@ -22388,6 +24621,31 @@ export interface SmartEraseTemplateItem {
22388
24621
  */
22389
24622
  AliasName?: string;
22390
24623
  }
24624
+ /**
24625
+ * CreateStreamPackageSourceLocation请求参数结构体
24626
+ */
24627
+ export interface CreateStreamPackageSourceLocationRequest {
24628
+ /**
24629
+ * SourceLocation名称。
24630
+ */
24631
+ Name: string;
24632
+ /**
24633
+ * 基准URL。
24634
+ */
24635
+ BaseUrl: string;
24636
+ /**
24637
+ * 是否开启补片。
24638
+ */
24639
+ SegmentDeliverEnable?: boolean;
24640
+ /**
24641
+ * 补片配置。
24642
+ */
24643
+ SegmentDeliverConf?: SegmentDeliverInfo;
24644
+ /**
24645
+ * 是否开启package分发分片,默认开启。
24646
+ */
24647
+ SegmentDeliverUsePackageEnable?: boolean;
24648
+ }
22391
24649
  /**
22392
24650
  * DeleteWatermarkTemplate返回参数结构体
22393
24651
  */
@@ -22398,19 +24656,43 @@ export interface DeleteWatermarkTemplateResponse {
22398
24656
  RequestId?: string;
22399
24657
  }
22400
24658
  /**
22401
- * 延播平滑吐流配置。
24659
+ * DescribeStreamPackageLinearAssemblyChannels返回参数结构体
22402
24660
  */
22403
- export interface ResilientStreamConf {
24661
+ export interface DescribeStreamPackageLinearAssemblyChannelsResponse {
22404
24662
  /**
22405
- * 是否开启延播平滑吐流,true开启,false不开启,默认不开启。
24663
+ * Channel列表。
22406
24664
  注意:此字段可能返回 null,表示取不到有效值。
22407
24665
  */
22408
- Enable?: boolean;
24666
+ Infos?: Array<LinearAssemblyChannelInfo>;
22409
24667
  /**
22410
- * 延播时间,单位秒,目前支持的范围为10~300秒。
22411
- 注意:此字段可能返回 null,表示取不到有效值。
24668
+ * 页数。
22412
24669
  */
22413
- BufferTime?: number;
24670
+ PageNum?: number;
24671
+ /**
24672
+ * 每页大小。
24673
+ */
24674
+ PageSize?: number;
24675
+ /**
24676
+ * 总数量。
24677
+ */
24678
+ TotalNum?: number;
24679
+ /**
24680
+ * 总页数。
24681
+ */
24682
+ TotalPage?: number;
24683
+ /**
24684
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
24685
+ */
24686
+ RequestId?: string;
24687
+ }
24688
+ /**
24689
+ * StopStreamPackageLinearAssemblyChannel请求参数结构体
24690
+ */
24691
+ export interface StopStreamPackageLinearAssemblyChannelRequest {
24692
+ /**
24693
+ * Channel ID。
24694
+ */
24695
+ Id: string;
22414
24696
  }
22415
24697
  /**
22416
24698
  * 查询输出的RTSP拉流URL信息。