tencentcloud-sdk-nodejs-mps 4.0.475 → 4.0.477

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.
@@ -93,6 +93,21 @@ export interface ModifyWatermarkTemplateRequest {
93
93
  SvgTemplate?: SvgWatermarkInputForUpdate
94
94
  }
95
95
 
96
+ /**
97
+ * 查询输入的RTP配置信息。
98
+ */
99
+ export interface DescribeInputRTPSettings {
100
+ /**
101
+ * 是否FEC。
102
+ */
103
+ FEC: string
104
+
105
+ /**
106
+ * 空闲超时时间。
107
+ */
108
+ IdleTimeout: number
109
+ }
110
+
96
111
  /**
97
112
  * 语音全文识别片段。
98
113
  */
@@ -119,31 +134,13 @@ export interface AiRecognitionTaskAsrFullTextSegmentItem {
119
134
  }
120
135
 
121
136
  /**
122
- * 用户自定义文本审核任务控制参数。
137
+ * DeleteStreamLinkFlow请求参数结构体
123
138
  */
124
- export interface UserDefineOcrTextReviewTemplateInfoForUpdate {
125
- /**
126
- * 用户自定文本审核任务开关,可选值:
127
- <li>ON:开启自定义文本审核任务;</li>
128
- <li>OFF:关闭自定义文本审核任务。</li>
129
- */
130
- Switch?: string
131
-
132
- /**
133
- * 用户自定义文本过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义文本关键词素材时需要添加对应标签。
134
- 标签个数最多 10 个,每个标签长度最多 16 个字符。
135
- */
136
- LabelSet?: string
137
-
139
+ export interface DeleteStreamLinkFlowRequest {
138
140
  /**
139
- * 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100
140
- */
141
- BlockConfidence?: number
142
-
143
- /**
144
- * 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
141
+ * 传输流Id
145
142
  */
146
- ReviewConfidence?: number
143
+ FlowId: string
147
144
  }
148
145
 
149
146
  /**
@@ -406,6 +403,71 @@ export interface ProcessLiveStreamResponse {
406
403
  RequestId?: string
407
404
  }
408
405
 
406
+ /**
407
+ * 创建媒体传输流的输出的SRT配置。
408
+ */
409
+ export interface CreateOutputSRTSettings {
410
+ /**
411
+ * 转推的目标地址,当Mode为CALLER时必填,且只能填1组。
412
+ */
413
+ Destinations: Array<CreateOutputSRTSettingsDestinations>
414
+
415
+ /**
416
+ * 转推SRT的流Id,可选大小写字母、数字和特殊字符(.#!:&,=_-),长度为0~512。
417
+ */
418
+ StreamId?: string
419
+
420
+ /**
421
+ * 转推SRT的总延迟,默认0,单位ms,范围为[0, 3000]。
422
+ */
423
+ Latency?: number
424
+
425
+ /**
426
+ * 转推SRT的接收延迟,默认120,单位ms,范围为[0, 3000]。
427
+ */
428
+ RecvLatency?: number
429
+
430
+ /**
431
+ * 转推SRT的对端延迟,默认0,单位ms,范围为[0, 3000]。
432
+ */
433
+ PeerLatency?: number
434
+
435
+ /**
436
+ * 转推SRT的对端空闲超时时间,默认5000,单位ms,范围为[1000, 10000]。
437
+ */
438
+ PeerIdleTimeout?: number
439
+
440
+ /**
441
+ * 转推SRT的加密密钥,默认为空,表示不加密。只可填ascii码值,长度为[10, 79]。
442
+ */
443
+ Passphrase?: string
444
+
445
+ /**
446
+ * 转推SRT的密钥长度,默认为0,可选[0|16|24|32]。
447
+ */
448
+ PbKeyLen?: number
449
+
450
+ /**
451
+ * SRT模式,可选[LISTENER|CALLER],默认为CALLER。
452
+ */
453
+ Mode?: string
454
+ }
455
+
456
+ /**
457
+ * ModifyStreamLinkOutputInfo返回参数结构体
458
+ */
459
+ export interface ModifyStreamLinkOutputInfoResponse {
460
+ /**
461
+ * 修改后的Output配置。
462
+ */
463
+ Info: DescribeOutput
464
+
465
+ /**
466
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
467
+ */
468
+ RequestId?: string
469
+ }
470
+
409
471
  /**
410
472
  * DescribeAnimatedGraphicsTemplates请求参数结构体
411
473
  */
@@ -631,6 +693,41 @@ export interface ManageTaskResponse {
631
693
  RequestId?: string
632
694
  }
633
695
 
696
+ /**
697
+ * 传输流的媒体数据。
698
+ */
699
+ export interface FlowMediaInfo {
700
+ /**
701
+ * 时间戳,单位是秒。
702
+ */
703
+ Timestamp: number
704
+
705
+ /**
706
+ * 总带宽。
707
+ */
708
+ Network: number
709
+
710
+ /**
711
+ * 传输流的视频数据。
712
+ */
713
+ Video: Array<FlowMediaVideo>
714
+
715
+ /**
716
+ * 传输流的音频数据。
717
+ */
718
+ Audio: Array<FlowMediaAudio>
719
+
720
+ /**
721
+ * 标志同一次推流。
722
+ */
723
+ SessionId: string
724
+
725
+ /**
726
+ * 客户端IP。
727
+ */
728
+ ClientIp: string
729
+ }
730
+
634
731
  /**
635
732
  * DeleteWorkflow请求参数结构体
636
733
  */
@@ -642,54 +739,150 @@ export interface DeleteWorkflowRequest {
642
739
  }
643
740
 
644
741
  /**
645
- * 智能封面结果信息
742
+ * 查询输入的RTMP配置信息。
646
743
  */
647
- export interface AiAnalysisTaskCoverOutput {
744
+ export interface DescribeRTMPPullSourceAddress {
648
745
  /**
649
- * 智能封面列表。
746
+ * RTMP源站的TcUrl地址。
747
+ 注意:此字段可能返回 null,表示取不到有效值。
748
+ */
749
+ TcUrl: string
750
+
751
+ /**
752
+ * RTMP源站的StreamKey。
753
+ RTMP源站地址拼接规则为:$TcUrl/$StreamKey。
754
+ */
755
+ StreamKey: string
756
+ }
757
+
758
+ /**
759
+ * 查询输出的RTMP拉流配置信息。
760
+ */
761
+ export interface DescribeOutputRTMPPullSettings {
762
+ /**
763
+ * 拉流地址列表。
764
+ 注意:此字段可能返回 null,表示取不到有效值。
765
+ */
766
+ ServerUrls: Array<DescribeOutputRTMPPullServerUrl>
767
+ }
768
+
769
+ /**
770
+ * 用户自定义文本审核任务控制参数。
771
+ */
772
+ export interface UserDefineOcrTextReviewTemplateInfoForUpdate {
773
+ /**
774
+ * 用户自定文本审核任务开关,可选值:
775
+ <li>ON:开启自定义文本审核任务;</li>
776
+ <li>OFF:关闭自定义文本审核任务。</li>
777
+ */
778
+ Switch?: string
779
+
780
+ /**
781
+ * 用户自定义文本过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义文本关键词素材时需要添加对应标签。
782
+ 标签个数最多 10 个,每个标签长度最多 16 个字符。
783
+ */
784
+ LabelSet?: string
785
+
786
+ /**
787
+ * 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
650
788
  */
651
- CoverSet: Array<MediaAiAnalysisCoverItem>
789
+ BlockConfidence?: number
652
790
 
653
791
  /**
654
- * 智能封面的存储位置。
792
+ * 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
655
793
  */
656
- OutputStorage: TaskOutputStorage
794
+ ReviewConfidence?: number
657
795
  }
658
796
 
659
797
  /**
660
- * 智能封面结果类型
798
+ * 修改Output配置。
661
799
  */
662
- export interface AiAnalysisTaskCoverResult {
800
+ export interface ModifyOutputInfo {
663
801
  /**
664
- * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
802
+ * 需要修改的Output的Id。
665
803
  */
666
- Status: string
804
+ OutputId: string
667
805
 
668
806
  /**
669
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](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) 列表。
807
+ * 输出的名称。
670
808
  */
671
- ErrCodeExt: string
809
+ OutputName: string
672
810
 
673
811
  /**
674
- * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
812
+ * 输出的描述。
675
813
  */
676
- ErrCode: number
814
+ Description: string
677
815
 
678
816
  /**
679
- * 错误信息。
817
+ * 输出的转推协议,支持SRT|RTP|RTMP。
680
818
  */
681
- Message: string
819
+ Protocol: string
682
820
 
683
821
  /**
684
- * 智能封面任务输入。
822
+ * 转推SRT的配置。
685
823
  */
686
- Input: AiAnalysisTaskCoverInput
824
+ SRTSettings?: CreateOutputSRTSettings
687
825
 
688
826
  /**
689
- * 智能封面任务输出。
690
- 注意:此字段可能返回 null,表示取不到有效值。
827
+ * 转推RTP的配置。
828
+ */
829
+ RTPSettings?: CreateOutputInfoRTPSettings
830
+
831
+ /**
832
+ * 转推RTMP的配置。
833
+ */
834
+ RTMPSettings?: CreateOutputRTMPSettings
835
+
836
+ /**
837
+ * IP白名单列表,格式为CIDR,如0.0.0.0/0。
838
+ 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
691
839
  */
692
- Output: AiAnalysisTaskCoverOutput
840
+ AllowIpList?: Array<string>
841
+ }
842
+
843
+ /**
844
+ * 点播文件指定时间点截图信息
845
+ */
846
+ export interface MediaSnapshotByTimeOffsetItem {
847
+ /**
848
+ * 指定时间点截图规格,参见[指定时间点截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E6.97.B6.E9.97.B4.E7.82.B9.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
849
+ */
850
+ Definition: number
851
+
852
+ /**
853
+ * 同一规格的截图信息集合,每个元素代表一张截图。
854
+ */
855
+ PicInfoSet: Array<MediaSnapshotByTimePicInfoItem>
856
+
857
+ /**
858
+ * 指定时间点截图文件的存储位置。
859
+ */
860
+ Storage: TaskOutputStorage
861
+ }
862
+
863
+ /**
864
+ * 输出文件名的`{number}`变量的规则。
865
+ */
866
+ export interface NumberFormat {
867
+ /**
868
+ * `{number}`变量的起始值,默认为0。
869
+ */
870
+ InitialValue?: number
871
+
872
+ /**
873
+ * `{number}`变量的增长步长,默认为1。
874
+ */
875
+ Increment?: number
876
+
877
+ /**
878
+ * `{number}`变量的最小长度,不足时补占位符。默认为1。
879
+ */
880
+ MinLength?: number
881
+
882
+ /**
883
+ * `{number}`变量的长度不足时,补充的占位符。默认为"0"。
884
+ */
885
+ PlaceHolder?: string
693
886
  }
694
887
 
695
888
  /**
@@ -1177,6 +1370,16 @@ export interface ContentReviewTemplateItem {
1177
1370
  Type: string
1178
1371
  }
1179
1372
 
1373
+ /**
1374
+ * ModifyStreamLinkFlow返回参数结构体
1375
+ */
1376
+ export interface ModifyStreamLinkFlowResponse {
1377
+ /**
1378
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1379
+ */
1380
+ RequestId?: string
1381
+ }
1382
+
1180
1383
  /**
1181
1384
  * DeleteAIRecognitionTemplate返回参数结构体
1182
1385
  */
@@ -1259,73 +1462,48 @@ export interface VideoEnhanceConfig {
1259
1462
  }
1260
1463
 
1261
1464
  /**
1262
- * 媒体处理任务中的马赛克参数类型
1465
+ * DeleteContentReviewTemplate请求参数结构体
1263
1466
  */
1264
- export interface MosaicInput {
1467
+ export interface DeleteContentReviewTemplateRequest {
1265
1468
  /**
1266
- * 原点位置,目前仅支持:
1267
- <li>TopLeft:表示坐标原点位于视频图像左上角,马赛克原点为图片或文字的左上角。</li>
1268
- 默认值:TopLeft。
1269
- */
1270
- CoordinateOrigin?: string
1469
+ * 内容审核模板唯一标识。
1470
+ */
1471
+ Definition: number
1472
+ }
1271
1473
 
1474
+ /**
1475
+ * StartStreamLinkFlow返回参数结构体
1476
+ */
1477
+ export interface StartStreamLinkFlowResponse {
1272
1478
  /**
1273
- * 马赛克原点距离视频图像坐标原点的水平位置。支持 %、px 两种格式:
1274
- <li>当字符串以 % 结尾,表示马赛克 XPos 为视频宽度指定百分比,如 10% 表示 XPos 为视频宽度的 10%;</li>
1275
- <li>当字符串以 px 结尾,表示马赛克 XPos 为指定像素,如 100px 表示 XPos 为 100 像素。</li>
1276
- 默认值:0px。
1277
- */
1278
- XPos?: string
1479
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1480
+ */
1481
+ RequestId?: string
1482
+ }
1279
1483
 
1484
+ /**
1485
+ * 内容审核敏感任务输入参数类型
1486
+ */
1487
+ export interface AiReviewPoliticalTaskInput {
1280
1488
  /**
1281
- * 马赛克原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式:
1282
- <li>当字符串以 % 结尾,表示马赛克 YPos 为视频高度指定百分比,如 10% 表示 YPos 为视频高度的 10%;</li>
1283
- <li>当字符串以 px 结尾,表示马赛克 YPos 为指定像素,如 100px 表示 YPos 为 100 像素。</li>
1284
- 默认值:0px。
1285
- */
1286
- YPos?: string
1489
+ * 模板 ID。
1490
+ */
1491
+ Definition: number
1492
+ }
1287
1493
 
1494
+ /**
1495
+ * 创建媒体传输流的输出的RTP的目标地址。
1496
+ */
1497
+ export interface CreateOutputRTPSettingsDestinations {
1288
1498
  /**
1289
- * 马赛克的宽度。支持 %、px 两种格式:
1290
- <li>当字符串以 % 结尾,表示马赛克 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;</li>
1291
- <li>当字符串以 px 结尾,表示马赛克 Width 单位为像素,如 100px 表示 Width 为 100 像素。</li>
1292
- 默认值:10%。
1293
- */
1294
- Width?: string
1295
-
1296
- /**
1297
- * 马赛克的高度。支持 %、px 两种格式:
1298
- <li>当字符串以 % 结尾,表示马赛克 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;</li>
1299
- <li>当字符串以 px 结尾,表示马赛克 Height 单位为像素,如 100px 表示 Height 为 100 像素。</li>
1300
- 默认值:10%。
1301
- */
1302
- Height?: string
1303
-
1304
- /**
1305
- * 马赛克的起始时间偏移,单位:秒。不填或填0,表示马赛克从画面出现时开始显现。
1306
- <li>不填或填0,表示马赛克从画面开始就出现;</li>
1307
- <li>当数值大于0时(假设为 n),表示马赛克从画面开始的第 n 秒出现;</li>
1308
- <li>当数值小于0时(假设为 -n),表示马赛克从离画面结束 n 秒前开始出现。</li>
1309
- */
1310
- StartTimeOffset?: number
1311
-
1312
- /**
1313
- * 马赛克的结束时间偏移,单位:秒。
1314
- <li>不填或填0,表示马赛克持续到画面结束;</li>
1315
- <li>当数值大于0时(假设为 n),表示马赛克持续到第 n 秒时消失;</li>
1316
- <li>当数值小于0时(假设为 -n),表示马赛克持续到离画面结束 n 秒前消失。</li>
1317
- */
1318
- EndTimeOffset?: number
1319
- }
1499
+ * 转推的目标IP。
1500
+ */
1501
+ Ip: string
1320
1502
 
1321
- /**
1322
- * 内容审核敏感任务输入参数类型
1323
- */
1324
- export interface AiReviewPoliticalTaskInput {
1325
1503
  /**
1326
- * 模板 ID。
1504
+ * 转推的目标端口。
1327
1505
  */
1328
- Definition: number
1506
+ Port: number
1329
1507
  }
1330
1508
 
1331
1509
  /**
@@ -1355,6 +1533,16 @@ export interface MediaAiAnalysisClassificationItem {
1355
1533
  Confidence: number
1356
1534
  }
1357
1535
 
1536
+ /**
1537
+ * ModifyWordSample返回参数结构体
1538
+ */
1539
+ export interface ModifyWordSampleResponse {
1540
+ /**
1541
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1542
+ */
1543
+ RequestId?: string
1544
+ }
1545
+
1358
1546
  /**
1359
1547
  * 音频流配置参数
1360
1548
  */
@@ -1443,6 +1631,41 @@ export interface DeletePersonSampleRequest {
1443
1631
  PersonId: string
1444
1632
  }
1445
1633
 
1634
+ /**
1635
+ * DescribeStreamLinkFlows返回参数结构体
1636
+ */
1637
+ export interface DescribeStreamLinkFlowsResponse {
1638
+ /**
1639
+ * 流的配置信息列表。
1640
+ */
1641
+ Infos: Array<DescribeFlow>
1642
+
1643
+ /**
1644
+ * 当前页数。
1645
+ */
1646
+ PageNum: number
1647
+
1648
+ /**
1649
+ * 每页大小。
1650
+ */
1651
+ PageSize: number
1652
+
1653
+ /**
1654
+ * 总数量。
1655
+ */
1656
+ TotalNum: number
1657
+
1658
+ /**
1659
+ * 总页数。
1660
+ */
1661
+ TotalPage: number
1662
+
1663
+ /**
1664
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1665
+ */
1666
+ RequestId?: string
1667
+ }
1668
+
1446
1669
  /**
1447
1670
  * 采样截图信息
1448
1671
  */
@@ -1482,6 +1705,96 @@ export interface MediaSampleSnapshotItem {
1482
1705
  WaterMarkDefinition: Array<number>
1483
1706
  }
1484
1707
 
1708
+ /**
1709
+ * 内容审核结果
1710
+ */
1711
+ export interface AiContentReviewResult {
1712
+ /**
1713
+ * 任务的类型,可以取的值有:
1714
+ <li>Porn:图片鉴黄</li>
1715
+ <li>Terrorism:图片敏感</li>
1716
+ <li>Political:图片敏感</li>
1717
+ <li>Porn.Asr:Asr 文字鉴黄</li>
1718
+ <li>Porn.Ocr:Ocr 文字鉴黄</li>
1719
+ <li>Political.Asr:Asr 文字敏感</li>
1720
+ <li>Political.Ocr:Ocr 文字敏感</li>
1721
+ <li>Terrorism.Ocr:Ocr 文字敏感</li>
1722
+ <li>Prohibited.Asr:Asr 文字鉴违禁</li>
1723
+ <li>Prohibited.Ocr:Ocr 文字鉴违禁</li>
1724
+ */
1725
+ Type: string
1726
+
1727
+ /**
1728
+ * 采样频率,即对视频每秒截取进行审核的帧数。
1729
+ */
1730
+ SampleRate: number
1731
+
1732
+ /**
1733
+ * 审核的视频时长,单位:秒。
1734
+ */
1735
+ Duration: number
1736
+
1737
+ /**
1738
+ * 视频内容审核智能画面鉴黄任务的查询结果,当任务类型为 Porn 时有效。
1739
+ 注意:此字段可能返回 null,表示取不到有效值。
1740
+ */
1741
+ PornTask: AiReviewTaskPornResult
1742
+
1743
+ /**
1744
+ * 视频内容审核智能画面敏感任务的查询结果,当任务类型为 Terrorism 时有效。
1745
+ 注意:此字段可能返回 null,表示取不到有效值。
1746
+ */
1747
+ TerrorismTask: AiReviewTaskTerrorismResult
1748
+
1749
+ /**
1750
+ * 视频内容审核智能画面敏感任务的查询结果,当任务类型为 Political 时有效。
1751
+ 注意:此字段可能返回 null,表示取不到有效值。
1752
+ */
1753
+ PoliticalTask: AiReviewTaskPoliticalResult
1754
+
1755
+ /**
1756
+ * 视频内容审核 Asr 文字鉴黄任务的查询结果,当任务类型为 Porn.Asr 时有效。
1757
+ 注意:此字段可能返回 null,表示取不到有效值。
1758
+ */
1759
+ PornAsrTask: AiReviewTaskPornAsrResult
1760
+
1761
+ /**
1762
+ * 视频内容审核 Ocr 文字鉴黄任务的查询结果,当任务类型为 Porn.Ocr 时有效。
1763
+ 注意:此字段可能返回 null,表示取不到有效值。
1764
+ */
1765
+ PornOcrTask: AiReviewTaskPornOcrResult
1766
+
1767
+ /**
1768
+ * 视频内容审核 Asr 文字敏感任务的查询结果,当任务类型为 Political.Asr 时有效。
1769
+ 注意:此字段可能返回 null,表示取不到有效值。
1770
+ */
1771
+ PoliticalAsrTask: AiReviewTaskPoliticalAsrResult
1772
+
1773
+ /**
1774
+ * 视频内容审核 Ocr 文字敏感任务的查询结果,当任务类型为 Political.Ocr 时有效。
1775
+ 注意:此字段可能返回 null,表示取不到有效值。
1776
+ */
1777
+ PoliticalOcrTask: AiReviewTaskPoliticalOcrResult
1778
+
1779
+ /**
1780
+ * 视频内容审核 Ocr 文字敏感任务的查询结果,当任务类型为 Terrorism.Ocr 时有效。
1781
+ 注意:此字段可能返回 null,表示取不到有效值。
1782
+ */
1783
+ TerrorismOcrTask: AiReviewTaskTerrorismOcrResult
1784
+
1785
+ /**
1786
+ * 视频内容审核 Asr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Asr 时有效。
1787
+ 注意:此字段可能返回 null,表示取不到有效值。
1788
+ */
1789
+ ProhibitedAsrTask: AiReviewTaskProhibitedAsrResult
1790
+
1791
+ /**
1792
+ * 视频内容审核 Ocr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Ocr 时有效。
1793
+ 注意:此字段可能返回 null,表示取不到有效值。
1794
+ */
1795
+ ProhibitedOcrTask: AiReviewTaskProhibitedOcrResult
1796
+ }
1797
+
1485
1798
  /**
1486
1799
  * ParseLiveStreamProcessNotification返回参数结构体
1487
1800
  */
@@ -1772,6 +2085,16 @@ export interface CreateAdaptiveDynamicStreamingTemplateRequest {
1772
2085
  Comment?: string
1773
2086
  }
1774
2087
 
2088
+ /**
2089
+ * 创建的输入RTMP拉流的配置信息。
2090
+ */
2091
+ export interface CreateInputRTMPPullSettings {
2092
+ /**
2093
+ * RTMP源站的源站地址,有且只能有一个。
2094
+ */
2095
+ SourceAddresses: Array<RTMPPullSourceAddress>
2096
+ }
2097
+
1775
2098
  /**
1776
2099
  * 画面涉敏任务控制参数。
1777
2100
  */
@@ -1809,13 +2132,77 @@ export interface TerrorismImgReviewTemplateInfoForUpdate {
1809
2132
  }
1810
2133
 
1811
2134
  /**
1812
- * 文本全文识别输出。
2135
+ * ModifyTranscodeTemplate请求参数结构体
1813
2136
  */
1814
- export interface AiRecognitionTaskOcrFullTextResultOutput {
2137
+ export interface ModifyTranscodeTemplateRequest {
1815
2138
  /**
1816
- * 文本全文识别结果集。
2139
+ * 转码模板唯一标识。
1817
2140
  */
1818
- SegmentSet: Array<AiRecognitionTaskOcrFullTextSegmentItem>
2141
+ Definition: number
2142
+
2143
+ /**
2144
+ * 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
2145
+ */
2146
+ Container?: string
2147
+
2148
+ /**
2149
+ * 转码模板名称,长度限制:64 个字符。
2150
+ */
2151
+ Name?: string
2152
+
2153
+ /**
2154
+ * 模板描述信息,长度限制:256 个字符。
2155
+ */
2156
+ Comment?: string
2157
+
2158
+ /**
2159
+ * 是否去除视频数据,可选值:
2160
+ <li>0:保留</li>
2161
+ <li>1:去除</li>
2162
+ */
2163
+ RemoveVideo?: number
2164
+
2165
+ /**
2166
+ * 是否去除音频数据,可选值:
2167
+ <li>0:保留</li>
2168
+ <li>1:去除</li>
2169
+ */
2170
+ RemoveAudio?: number
2171
+
2172
+ /**
2173
+ * 视频流配置参数。
2174
+ */
2175
+ VideoTemplate?: VideoTemplateInfoForUpdate
2176
+
2177
+ /**
2178
+ * 音频流配置参数。
2179
+ */
2180
+ AudioTemplate?: AudioTemplateInfoForUpdate
2181
+
2182
+ /**
2183
+ * 极速高清转码参数。
2184
+ */
2185
+ TEHDConfig?: TEHDConfigForUpdate
2186
+
2187
+ /**
2188
+ * 音视频增强参数。
2189
+ */
2190
+ EnhanceConfig?: EnhanceConfig
2191
+ }
2192
+
2193
+ /**
2194
+ * ModifyStreamLinkFlow请求参数结构体
2195
+ */
2196
+ export interface ModifyStreamLinkFlowRequest {
2197
+ /**
2198
+ * 流Id。
2199
+ */
2200
+ FlowId: string
2201
+
2202
+ /**
2203
+ * 需要修改的流名称。
2204
+ */
2205
+ FlowName: string
1819
2206
  }
1820
2207
 
1821
2208
  /**
@@ -1992,6 +2379,48 @@ export interface CreatePersonSampleRequest {
1992
2379
  Tags?: Array<string>
1993
2380
  }
1994
2381
 
2382
+ /**
2383
+ * DescribeStreamLinkFlowSRTStatistics请求参数结构体
2384
+ */
2385
+ export interface DescribeStreamLinkFlowSRTStatisticsRequest {
2386
+ /**
2387
+ * 传输流ID。
2388
+ */
2389
+ FlowId: string
2390
+
2391
+ /**
2392
+ * 输入或输出类型,可选[input|output]。
2393
+ */
2394
+ Type: string
2395
+
2396
+ /**
2397
+ * 输入或输出Id。
2398
+ */
2399
+ InputOutputId: string
2400
+
2401
+ /**
2402
+ * 主通道或备通道,可选[0|1]。
2403
+ */
2404
+ Pipeline: string
2405
+
2406
+ /**
2407
+ * 统计的开始时间,默认为前一小时,最多支持查询近7天。
2408
+ UTC时间,如'2020-01-01T12:00:00Z'。
2409
+ */
2410
+ StartTime: string
2411
+
2412
+ /**
2413
+ * 统计的结束时间,默认为StartTime后一小时,最多支持查询24小时的数据。
2414
+ UTC时间,如'2020-01-01T12:00:00Z'。
2415
+ */
2416
+ EndTime: string
2417
+
2418
+ /**
2419
+ * 查询间隔,可选[5s|1min|5min|15min]。
2420
+ */
2421
+ Period: string
2422
+ }
2423
+
1995
2424
  /**
1996
2425
  * 智能封面信息
1997
2426
  */
@@ -2062,18 +2491,18 @@ export interface DescribeWordSamplesResponse {
2062
2491
  }
2063
2492
 
2064
2493
  /**
2065
- * AI 样本管理,人脸信息。
2494
+ * 流的统计数据列表。
2066
2495
  */
2067
- export interface AiSampleFaceInfo {
2496
+ export interface FlowStatisticsArray {
2068
2497
  /**
2069
- * 人脸图片 ID。
2498
+ * 时间戳。
2070
2499
  */
2071
- FaceId: string
2500
+ Timestamp: number
2072
2501
 
2073
2502
  /**
2074
- * 人脸图片地址。
2503
+ * 每个会话的统计数据。
2075
2504
  */
2076
- Url: string
2505
+ FlowStatistics: Array<FlowStatistics>
2077
2506
  }
2078
2507
 
2079
2508
  /**
@@ -2087,28 +2516,91 @@ export interface DeleteAIRecognitionTemplateRequest {
2087
2516
  }
2088
2517
 
2089
2518
  /**
2090
- * 输出文件名的`{number}`变量的规则。
2519
+ * 查询输入的SRT配置信息。
2091
2520
  */
2092
- export interface NumberFormat {
2521
+ export interface DescribeInputSRTSettings {
2093
2522
  /**
2094
- * `{number}`变量的起始值,默认为0。
2523
+ * SRT模式。
2524
+ 注意:此字段可能返回 null,表示取不到有效值。
2525
+ */
2526
+ Mode: string
2527
+
2528
+ /**
2529
+ * 流Id。
2095
2530
  */
2096
- InitialValue?: number
2531
+ StreamId: string
2097
2532
 
2098
2533
  /**
2099
- * `{number}`变量的增长步长,默认为1。
2534
+ * 延迟。
2100
2535
  */
2101
- Increment?: number
2536
+ Latency: number
2102
2537
 
2103
2538
  /**
2104
- * `{number}`变量的最小长度,不足时补占位符。默认为1。
2539
+ * 接收延迟。
2105
2540
  */
2106
- MinLength?: number
2541
+ RecvLatency: number
2107
2542
 
2108
2543
  /**
2109
- * `{number}`变量的长度不足时,补充的占位符。默认为"0"。
2544
+ * 对端延迟。
2110
2545
  */
2111
- PlaceHolder?: string
2546
+ PeerLatency: number
2547
+
2548
+ /**
2549
+ * 对端空闲超时时间。
2550
+ */
2551
+ PeerIdleTimeout: number
2552
+
2553
+ /**
2554
+ * 解密密钥。
2555
+ */
2556
+ Passphrase: string
2557
+
2558
+ /**
2559
+ * 密钥长度。
2560
+ */
2561
+ PbKeyLen: number
2562
+
2563
+ /**
2564
+ * SRT对端地址。
2565
+ 注意:此字段可能返回 null,表示取不到有效值。
2566
+ */
2567
+ SourceAddresses: Array<SRTSourceAddressResp>
2568
+ }
2569
+
2570
+ /**
2571
+ * 智能封面结果类型
2572
+ */
2573
+ export interface AiAnalysisTaskCoverResult {
2574
+ /**
2575
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
2576
+ */
2577
+ Status: string
2578
+
2579
+ /**
2580
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](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) 列表。
2581
+ */
2582
+ ErrCodeExt: string
2583
+
2584
+ /**
2585
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
2586
+ */
2587
+ ErrCode: number
2588
+
2589
+ /**
2590
+ * 错误信息。
2591
+ */
2592
+ Message: string
2593
+
2594
+ /**
2595
+ * 智能封面任务输入。
2596
+ */
2597
+ Input: AiAnalysisTaskCoverInput
2598
+
2599
+ /**
2600
+ * 智能封面任务输出。
2601
+ 注意:此字段可能返回 null,表示取不到有效值。
2602
+ */
2603
+ Output: AiAnalysisTaskCoverOutput
2112
2604
  }
2113
2605
 
2114
2606
  /**
@@ -2121,6 +2613,21 @@ export interface EnableWorkflowRequest {
2121
2613
  WorkflowId: number
2122
2614
  }
2123
2615
 
2616
+ /**
2617
+ * CreateStreamLinkFlow返回参数结构体
2618
+ */
2619
+ export interface CreateStreamLinkFlowResponse {
2620
+ /**
2621
+ * 创建的Flow信息。
2622
+ */
2623
+ Info: DescribeFlow
2624
+
2625
+ /**
2626
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2627
+ */
2628
+ RequestId?: string
2629
+ }
2630
+
2124
2631
  /**
2125
2632
  * 智能分类结果信息
2126
2633
  */
@@ -2132,62 +2639,86 @@ export interface AiAnalysisTaskClassificationOutput {
2132
2639
  }
2133
2640
 
2134
2641
  /**
2135
- * ModifyTranscodeTemplate请求参数结构体
2642
+ * 转推的目标地址信息。
2136
2643
  */
2137
- export interface ModifyTranscodeTemplateRequest {
2644
+ export interface SRTAddressDestination {
2138
2645
  /**
2139
- * 转码模板唯一标识。
2646
+ * 目标地址的IP。
2140
2647
  */
2141
- Definition: number
2648
+ Ip: string
2142
2649
 
2143
2650
  /**
2144
- * 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
2651
+ * 目标地址的端口。
2145
2652
  */
2146
- Container?: string
2653
+ Port: number
2654
+ }
2147
2655
 
2656
+ /**
2657
+ * 流状态实时查询接口的流状态信息
2658
+ */
2659
+ export interface FlowRealtimeStatusItem {
2148
2660
  /**
2149
- * 转码模板名称,长度限制:64 个字符。
2661
+ * 类型,Input|Output。
2150
2662
  */
2151
- Name?: string
2663
+ Type: string
2152
2664
 
2153
2665
  /**
2154
- * 模板描述信息,长度限制:256 个字符。
2666
+ * 输入Id,如果Type为Input,此字段不为空。
2155
2667
  */
2156
- Comment?: string
2668
+ InputId: string
2157
2669
 
2158
2670
  /**
2159
- * 是否去除视频数据,可选值:
2160
- <li>0:保留</li>
2161
- <li>1:去除</li>
2162
- */
2163
- RemoveVideo?: number
2671
+ * 输出Id,如果Type为Output,此字段不为空。
2672
+ */
2673
+ OutputId: string
2164
2674
 
2165
2675
  /**
2166
- * 是否去除音频数据,可选值:
2167
- <li>0:保留</li>
2168
- <li>1:去除</li>
2169
- */
2170
- RemoveAudio?: number
2676
+ * 流Id。
2677
+ */
2678
+ FlowId: string
2171
2679
 
2172
2680
  /**
2173
- * 视频流配置参数。
2681
+ * 协议, SRT | RTMP。
2174
2682
  */
2175
- VideoTemplate?: VideoTemplateInfoForUpdate
2683
+ Protocol: string
2176
2684
 
2177
2685
  /**
2178
- * 音频流配置参数。
2686
+ * 共同状态信息。
2179
2687
  */
2180
- AudioTemplate?: AudioTemplateInfoForUpdate
2688
+ CommonStatus: FlowRealtimeStatusCommon
2181
2689
 
2182
2690
  /**
2183
- * 极速高清转码参数。
2691
+ * 如果是SRT协议则有此字段。
2692
+ 注意:此字段可能返回 null,表示取不到有效值。
2693
+ */
2694
+ SRTStatus: FlowRealtimeStatusSRT
2695
+
2696
+ /**
2697
+ * 如果是RTMP协议则有此字段。
2698
+ 注意:此字段可能返回 null,表示取不到有效值。
2699
+ */
2700
+ RTMPStatus: FlowRealtimeStatusRTMP
2701
+
2702
+ /**
2703
+ * 服务器IP。
2184
2704
  */
2185
- TEHDConfig?: TEHDConfigForUpdate
2705
+ ConnectServerIP: string
2186
2706
 
2187
2707
  /**
2188
- * 音视频增强参数。
2708
+ * 如果是RTP协议则有此字段。
2709
+ 注意:此字段可能返回 null,表示取不到有效值。
2710
+ */
2711
+ RTPStatus: FlowRealtimeStatusRTP
2712
+ }
2713
+
2714
+ /**
2715
+ * 文本全文识别输出。
2716
+ */
2717
+ export interface AiRecognitionTaskOcrFullTextResultOutput {
2718
+ /**
2719
+ * 文本全文识别结果集。
2189
2720
  */
2190
- EnhanceConfig?: EnhanceConfig
2721
+ SegmentSet: Array<AiRecognitionTaskOcrFullTextSegmentItem>
2191
2722
  }
2192
2723
 
2193
2724
  /**
@@ -2239,13 +2770,63 @@ export interface AiRecognitionTaskOcrWordsResultOutput {
2239
2770
  }
2240
2771
 
2241
2772
  /**
2242
- * 智能按帧标签结果信息
2773
+ * AI 样本管理,人脸信息。
2243
2774
  */
2244
- export interface AiAnalysisTaskFrameTagOutput {
2775
+ export interface AiSampleFaceInfo {
2245
2776
  /**
2246
- * 视频按帧标签列表。
2777
+ * 人脸图片 ID。
2247
2778
  */
2248
- SegmentSet: Array<MediaAiAnalysisFrameTagSegmentItem>
2779
+ FaceId: string
2780
+
2781
+ /**
2782
+ * 人脸图片地址。
2783
+ */
2784
+ Url: string
2785
+ }
2786
+
2787
+ /**
2788
+ * 创建的输入RTSP拉流的配置信息。
2789
+ */
2790
+ export interface CreateInputRTSPPullSettings {
2791
+ /**
2792
+ * RTSP源站的源站地址,有且只能有一个。
2793
+ */
2794
+ SourceAddresses: Array<RTSPPullSourceAddress>
2795
+ }
2796
+
2797
+ /**
2798
+ * CreateStreamLinkFlow请求参数结构体
2799
+ */
2800
+ export interface CreateStreamLinkFlowRequest {
2801
+ /**
2802
+ * 流名称。
2803
+ */
2804
+ FlowName: string
2805
+
2806
+ /**
2807
+ * 最大带宽,单位bps,可选[10000000, 20000000, 50000000]。
2808
+ */
2809
+ MaxBandwidth: number
2810
+
2811
+ /**
2812
+ * 流的输入组。
2813
+ */
2814
+ InputGroup: Array<CreateInput>
2815
+ }
2816
+
2817
+ /**
2818
+ * 创建媒体传输流的输出SRT的目标地址。
2819
+ */
2820
+ export interface CreateOutputSRTSettingsDestinations {
2821
+ /**
2822
+ * 输出的IP。
2823
+ */
2824
+ Ip: string
2825
+
2826
+ /**
2827
+ * 输出的端口。
2828
+ */
2829
+ Port: number
2249
2830
  }
2250
2831
 
2251
2832
  /**
@@ -2527,6 +3108,21 @@ export interface PoliticalOcrReviewTemplateInfoForUpdate {
2527
3108
  ReviewConfidence?: number
2528
3109
  }
2529
3110
 
3111
+ /**
3112
+ * 创建媒体传输流的输出的RTMP的目标地址。
3113
+ */
3114
+ export interface CreateOutputRtmpSettingsDestinations {
3115
+ /**
3116
+ * 转推的URL,格式如:rtmp://domain/live。
3117
+ */
3118
+ Url: string
3119
+
3120
+ /**
3121
+ * 转推的StreamKey,格式如:stream?key=value。
3122
+ */
3123
+ StreamKey: string
3124
+ }
3125
+
2530
3126
  /**
2531
3127
  * 语音鉴黄任务控制参数。
2532
3128
  */
@@ -2622,6 +3218,16 @@ export interface AiRecognitionTaskAsrFullTextResultInput {
2622
3218
  Definition: number
2623
3219
  }
2624
3220
 
3221
+ /**
3222
+ * 查询输入的RTMP配置信息。
3223
+ */
3224
+ export interface DescribeInputRTMPPullSettings {
3225
+ /**
3226
+ * RTMP源站地址信息。
3227
+ */
3228
+ SourceAddresses: Array<DescribeRTMPPullSourceAddress>
3229
+ }
3230
+
2625
3231
  /**
2626
3232
  * 媒体处理任务类型
2627
3233
  */
@@ -2657,6 +3263,21 @@ export interface MediaProcessTaskInput {
2657
3263
  AdaptiveDynamicStreamingTaskSet?: Array<AdaptiveDynamicStreamingTaskInput>
2658
3264
  }
2659
3265
 
3266
+ /**
3267
+ * 创建的输入RTMP拉流源站配置信息。
3268
+ */
3269
+ export interface RTMPPullSourceAddress {
3270
+ /**
3271
+ * RTMP源站的TcUrl地址。
3272
+ */
3273
+ TcUrl: string
3274
+
3275
+ /**
3276
+ * RTMP源站的StreamKey信息。
3277
+ */
3278
+ StreamKey: string
3279
+ }
3280
+
2660
3281
  /**
2661
3282
  * 媒体处理 COS 输出对象信息。
2662
3283
  */
@@ -2745,25 +3366,71 @@ export interface DeleteAdaptiveDynamicStreamingTemplateResponse {
2745
3366
  }
2746
3367
 
2747
3368
  /**
2748
- * 去伪影(毛刺)配置
3369
+ * CreateAnimatedGraphicsTemplate请求参数结构体
2749
3370
  */
2750
- export interface ArtifactRepairConfig {
3371
+ export interface CreateAnimatedGraphicsTemplateRequest {
2751
3372
  /**
2752
- * 能力配置开关,可选值:
2753
- <li>ON:开启;</li>
2754
- <li>OFF:关闭。</li>
2755
- 默认值:ON。
3373
+ * 帧率,取值范围:[1, 30],单位:Hz。
3374
+ */
3375
+ Fps: number
3376
+
3377
+ /**
3378
+ * 动图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
3379
+ <li>当 Width、Height 均为 0,则分辨率同源;</li>
3380
+ <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
3381
+ <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
3382
+ <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
3383
+ 默认值:0。
2756
3384
  */
2757
- Switch?: string
3385
+ Width?: number
2758
3386
 
2759
3387
  /**
2760
- * 类型,可选值:
2761
- <li>weak</li>
2762
- <li>strong</li>
2763
- 默认值:weak。
2764
- 注意:此字段可能返回 null,表示取不到有效值。
3388
+ * 动图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
3389
+ <li>当 Width、Height 均为 0,则分辨率同源;</li>
3390
+ <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
3391
+ <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
3392
+ <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
3393
+ 默认值:0。
2765
3394
  */
2766
- Type?: string
3395
+ Height?: number
3396
+
3397
+ /**
3398
+ * 分辨率自适应,可选值:
3399
+ <li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
3400
+ <li>close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。</li>
3401
+ 默认值:open。
3402
+ */
3403
+ ResolutionAdaptive?: string
3404
+
3405
+ /**
3406
+ * 动图格式,取值为 gif 和 webp。默认为 gif。
3407
+ */
3408
+ Format?: string
3409
+
3410
+ /**
3411
+ * 图片质量,取值范围:[1, 100],默认值为 75。
3412
+ */
3413
+ Quality?: number
3414
+
3415
+ /**
3416
+ * 转动图模板名称,长度限制:64 个字符。
3417
+ */
3418
+ Name?: string
3419
+
3420
+ /**
3421
+ * 模板描述信息,长度限制:256 个字符。
3422
+ */
3423
+ Comment?: string
3424
+ }
3425
+
3426
+ /**
3427
+ * ParseNotification请求参数结构体
3428
+ */
3429
+ export interface ParseNotificationRequest {
3430
+ /**
3431
+ * 从 CMQ 获取到的事件通知内容。
3432
+ */
3433
+ Content: string
2767
3434
  }
2768
3435
 
2769
3436
  /**
@@ -2811,6 +3478,48 @@ export interface PoliticalAsrReviewTemplateInfoForUpdate {
2811
3478
  ReviewConfidence?: number
2812
3479
  }
2813
3480
 
3481
+ /**
3482
+ * DescribeStreamLinkFlowStatistics请求参数结构体
3483
+ */
3484
+ export interface DescribeStreamLinkFlowStatisticsRequest {
3485
+ /**
3486
+ * 传输流ID。
3487
+ */
3488
+ FlowId: string
3489
+
3490
+ /**
3491
+ * 输入或输出类型,可选[input|output]。
3492
+ */
3493
+ Type: string
3494
+
3495
+ /**
3496
+ * 输入或输出Id。
3497
+ */
3498
+ InputOutputId: string
3499
+
3500
+ /**
3501
+ * 主通道或备通道,可选[0|1]。
3502
+ */
3503
+ Pipeline: string
3504
+
3505
+ /**
3506
+ * 查询间隔,可选[5s|1min|5min|15min]。
3507
+ */
3508
+ Period: string
3509
+
3510
+ /**
3511
+ * 统计的开始时间,默认为前一小时,最多支持查询近7天。
3512
+ UTC时间,如'2020-01-01T12:00:00Z'。
3513
+ */
3514
+ StartTime: string
3515
+
3516
+ /**
3517
+ * 统计的结束时间,默认为StartTime后一小时,最多支持查询24小时的数据。
3518
+ UTC时间,如'2020-01-01T12:00:00Z'。
3519
+ */
3520
+ EndTime: string
3521
+ }
3522
+
2814
3523
  /**
2815
3524
  * AI 样本管理,人脸数据操作。
2816
3525
  */
@@ -3036,6 +3745,26 @@ export interface EditMediaOutputConfig {
3036
3745
  Type?: string
3037
3746
  }
3038
3747
 
3748
+ /**
3749
+ * 鉴黄任务控制参数。
3750
+ */
3751
+ export interface PornConfigureInfoForUpdate {
3752
+ /**
3753
+ * 画面鉴黄控制参数。
3754
+ */
3755
+ ImgReviewInfo?: PornImgReviewTemplateInfoForUpdate
3756
+
3757
+ /**
3758
+ * 语音鉴黄控制参数。
3759
+ */
3760
+ AsrReviewInfo?: PornAsrReviewTemplateInfoForUpdate
3761
+
3762
+ /**
3763
+ * 文本鉴黄控制参数。
3764
+ */
3765
+ OcrReviewInfo?: PornOcrReviewTemplateInfoForUpdate
3766
+ }
3767
+
3039
3768
  /**
3040
3769
  * Asr 文字涉黄信息
3041
3770
  */
@@ -3114,6 +3843,21 @@ export interface EditMediaRequest {
3114
3843
  SessionContext?: string
3115
3844
  }
3116
3845
 
3846
+ /**
3847
+ * CreateStreamLinkOutputInfo返回参数结构体
3848
+ */
3849
+ export interface CreateStreamLinkOutputInfoResponse {
3850
+ /**
3851
+ * 创建后的Output信息。
3852
+ */
3853
+ Info: DescribeOutput
3854
+
3855
+ /**
3856
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3857
+ */
3858
+ RequestId?: string
3859
+ }
3860
+
3117
3861
  /**
3118
3862
  * 对视频截雪碧图任务结果类型
3119
3863
  */
@@ -3150,6 +3894,21 @@ export interface MediaProcessTaskImageSpriteResult {
3150
3894
  Output: MediaImageSpriteItem
3151
3895
  }
3152
3896
 
3897
+ /**
3898
+ * 转推的RTP目标地址信息。
3899
+ */
3900
+ export interface RTPAddressDestination {
3901
+ /**
3902
+ * 转推的目标地址的IP。
3903
+ */
3904
+ Ip: string
3905
+
3906
+ /**
3907
+ * 转推的目标地址的端口。
3908
+ */
3909
+ Port: number
3910
+ }
3911
+
3153
3912
  /**
3154
3913
  * DescribeAdaptiveDynamicStreamingTemplates返回参数结构体
3155
3914
  */
@@ -3220,13 +3979,13 @@ PicUrlExpireTime 时间点后图片将被删除)。
3220
3979
  }
3221
3980
 
3222
3981
  /**
3223
- * 媒体处理 URL 对象信息。
3982
+ * StopStreamLinkFlow请求参数结构体
3224
3983
  */
3225
- export interface UrlInputInfo {
3984
+ export interface StopStreamLinkFlowRequest {
3226
3985
  /**
3227
- * 视频的 URL
3986
+ * 流Id
3228
3987
  */
3229
- Url: string
3988
+ FlowId: string
3230
3989
  }
3231
3990
 
3232
3991
  /**
@@ -3380,6 +4139,16 @@ export interface DeleteWordSamplesRequest {
3380
4139
  Keywords: Array<string>
3381
4140
  }
3382
4141
 
4142
+ /**
4143
+ * 查询输入的RTSP配置信息。
4144
+ */
4145
+ export interface DescribeInputRTSPPullSettings {
4146
+ /**
4147
+ * RTSP源站地址信息。
4148
+ */
4149
+ SourceAddresses: Array<DescribeRTSPPullSourceAddress>
4150
+ }
4151
+
3383
4152
  /**
3384
4153
  * 自定义转码的规格参数。
3385
4154
  */
@@ -3632,28 +4401,74 @@ export interface ModifyContentReviewTemplateResponse {
3632
4401
  */
3633
4402
  export interface DescribeWatermarkTemplatesRequest {
3634
4403
  /**
3635
- * 水印模板唯一标识过滤条件,数组长度限制:100。
4404
+ * 水印模板唯一标识过滤条件,数组长度限制:100。
4405
+ */
4406
+ Definitions?: Array<number>
4407
+
4408
+ /**
4409
+ * 水印类型过滤条件,可选值:
4410
+ <li>image:图片水印;</li>
4411
+ <li>text:文字水印。</li>
4412
+ */
4413
+ Type?: string
4414
+
4415
+ /**
4416
+ * 分页偏移量,默认值:0。
4417
+ */
4418
+ Offset?: number
4419
+
4420
+ /**
4421
+ * 返回记录条数
4422
+ <li>默认值:10;</li>
4423
+ <li>最大值:100。</li>
4424
+ */
4425
+ Limit?: number
4426
+ }
4427
+
4428
+ /**
4429
+ * 创建输出的配置信息。
4430
+ */
4431
+ export interface CreateOutputInfo {
4432
+ /**
4433
+ * 输出的名称。
4434
+ */
4435
+ OutputName: string
4436
+
4437
+ /**
4438
+ * 输出描述。
4439
+ */
4440
+ Description: string
4441
+
4442
+ /**
4443
+ * 输出协议,可选[SRT|RTP|RTMP|RTMP_PULL]。
4444
+ */
4445
+ Protocol: string
4446
+
4447
+ /**
4448
+ * 输出地区。
3636
4449
  */
3637
- Definitions?: Array<number>
4450
+ OutputRegion: string
3638
4451
 
3639
4452
  /**
3640
- * 水印类型过滤条件,可选值:
3641
- <li>image:图片水印;</li>
3642
- <li>text:文字水印。</li>
3643
- */
3644
- Type?: string
4453
+ * 输出的SRT的配置。
4454
+ */
4455
+ SRTSettings?: CreateOutputSRTSettings
3645
4456
 
3646
4457
  /**
3647
- * 分页偏移量,默认值:0。
4458
+ * 输出的RTMP的配置。
3648
4459
  */
3649
- Offset?: number
4460
+ RTMPSettings?: CreateOutputRTMPSettings
3650
4461
 
3651
4462
  /**
3652
- * 返回记录条数
3653
- <li>默认值:10;</li>
3654
- <li>最大值:100。</li>
4463
+ * 输出的RTP的配置。
4464
+ */
4465
+ RTPSettings?: CreateOutputInfoRTPSettings
4466
+
4467
+ /**
4468
+ * IP白名单列表,格式为CIDR,如0.0.0.0/0。
4469
+ 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
3655
4470
  */
3656
- Limit?: number
4471
+ AllowIpList?: Array<string>
3657
4472
  }
3658
4473
 
3659
4474
  /**
@@ -3672,6 +4487,61 @@ export interface TaskOutputStorage {
3672
4487
  CosOutputStorage?: CosOutputStorage
3673
4488
  }
3674
4489
 
4490
+ /**
4491
+ * 传输流日志信息。
4492
+ */
4493
+ export interface FlowLogInfo {
4494
+ /**
4495
+ * 时间戳,单位为秒。
4496
+ */
4497
+ Timestamp: number
4498
+
4499
+ /**
4500
+ * 输入输出类型(input/output)。
4501
+ */
4502
+ Type: string
4503
+
4504
+ /**
4505
+ * 输入或输出Id。
4506
+ */
4507
+ InputOutputId: string
4508
+
4509
+ /**
4510
+ * 协议。
4511
+ */
4512
+ Protocol: string
4513
+
4514
+ /**
4515
+ * 事件代码。
4516
+ */
4517
+ EventCode: string
4518
+
4519
+ /**
4520
+ * 事件信息。
4521
+ */
4522
+ EventMessage: string
4523
+
4524
+ /**
4525
+ * 对端IP。
4526
+ */
4527
+ RemoteIp: string
4528
+
4529
+ /**
4530
+ * 对端端口。
4531
+ */
4532
+ RemotePort: string
4533
+
4534
+ /**
4535
+ * 主备通道,0为主通道,1为备通道。
4536
+ */
4537
+ Pipeline: string
4538
+
4539
+ /**
4540
+ * 输入或输出的名称。
4541
+ */
4542
+ InputOutputName: string
4543
+ }
4544
+
3675
4545
  /**
3676
4546
  * 用户自定义审核任务控制参数
3677
4547
  */
@@ -3716,33 +4586,56 @@ export interface ColorEnhanceConfig {
3716
4586
  }
3717
4587
 
3718
4588
  /**
3719
- * 内容审核 Ocr 文字鉴黄任务输入参数类型
4589
+ * 查询输出的RTP配置信息。
3720
4590
  */
3721
- export interface AiReviewPornOcrTaskInput {
4591
+ export interface DescribeOutputRTPSettings {
3722
4592
  /**
3723
- * 鉴黄模板 ID。
3724
- */
3725
- Definition: number
4593
+ * 转推RTP的目标地址信息列表。
4594
+ 注意:此字段可能返回 null,表示取不到有效值。
4595
+ */
4596
+ Destinations: Array<RTPAddressDestination>
4597
+
4598
+ /**
4599
+ * 是否FEC。
4600
+ 注意:此字段可能返回 null,表示取不到有效值。
4601
+ */
4602
+ FEC: string
4603
+
4604
+ /**
4605
+ * 空闲超时时间。
4606
+ 注意:此字段可能返回 null,表示取不到有效值。
4607
+ */
4608
+ IdleTimeout: number
3726
4609
  }
3727
4610
 
3728
4611
  /**
3729
- * 点播文件指定时间点截图信息
4612
+ * DeleteStreamLinkOutput返回参数结构体
3730
4613
  */
3731
- export interface MediaSnapshotByTimeOffsetItem {
4614
+ export interface DeleteStreamLinkOutputResponse {
3732
4615
  /**
3733
- * 指定时间点截图规格,参见[指定时间点截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E6.97.B6.E9.97.B4.E7.82.B9.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)
4616
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
3734
4617
  */
3735
- Definition: number
4618
+ RequestId?: string
4619
+ }
3736
4620
 
4621
+ /**
4622
+ * 内容审核 Ocr 文字鉴黄任务输入参数类型
4623
+ */
4624
+ export interface AiReviewPornOcrTaskInput {
3737
4625
  /**
3738
- * 同一规格的截图信息集合,每个元素代表一张截图。
4626
+ * 鉴黄模板 ID。
3739
4627
  */
3740
- PicInfoSet: Array<MediaSnapshotByTimePicInfoItem>
4628
+ Definition: number
4629
+ }
3741
4630
 
4631
+ /**
4632
+ * 智能按帧标签结果信息
4633
+ */
4634
+ export interface AiAnalysisTaskFrameTagOutput {
3742
4635
  /**
3743
- * 指定时间点截图文件的存储位置。
4636
+ * 视频按帧标签列表。
3744
4637
  */
3745
- Storage: TaskOutputStorage
4638
+ SegmentSet: Array<MediaAiAnalysisFrameTagSegmentItem>
3746
4639
  }
3747
4640
 
3748
4641
  /**
@@ -3952,6 +4845,21 @@ export interface AiAnalysisTaskTagResult {
3952
4845
  Output: AiAnalysisTaskTagOutput
3953
4846
  }
3954
4847
 
4848
+ /**
4849
+ * RTMP转推的目标地址信息。
4850
+ */
4851
+ export interface RTMPAddressDestination {
4852
+ /**
4853
+ * 转推RTMP的目标Url,格式如'rtmp://domain/live'。
4854
+ */
4855
+ Url: string
4856
+
4857
+ /**
4858
+ * 转推RTMP的目标StreamKey,格式如'steamid?key=value'。
4859
+ */
4860
+ StreamKey: string
4861
+ }
4862
+
3955
4863
  /**
3956
4864
  * 智能标签结果信息
3957
4865
  */
@@ -3962,6 +4870,21 @@ export interface AiAnalysisTaskTagOutput {
3962
4870
  TagSet: Array<MediaAiAnalysisTagItem>
3963
4871
  }
3964
4872
 
4873
+ /**
4874
+ * SRT输入源地址。
4875
+ */
4876
+ export interface SRTSourceAddressReq {
4877
+ /**
4878
+ * 对端IP。
4879
+ */
4880
+ Ip: string
4881
+
4882
+ /**
4883
+ * 对端端口。
4884
+ */
4885
+ Port: number
4886
+ }
4887
+
3965
4888
  /**
3966
4889
  * ProcessMedia请求参数结构体
3967
4890
  */
@@ -4033,6 +4956,28 @@ export interface ProcessMediaRequest {
4033
4956
  ScheduleId?: number
4034
4957
  }
4035
4958
 
4959
+ /**
4960
+ * 查询输入的RTSP配置信息。
4961
+ */
4962
+ export interface DescribeRTSPPullSourceAddress {
4963
+ /**
4964
+ * RTSP源站的Url地址。
4965
+ 注意:此字段可能返回 null,表示取不到有效值。
4966
+ */
4967
+ Url: string
4968
+ }
4969
+
4970
+ /**
4971
+ * 查询输出的RTSP拉流配置信息。
4972
+ */
4973
+ export interface DescribeOutputRTSPPullSettings {
4974
+ /**
4975
+ * RTSP拉流地址列表。
4976
+ 注意:此字段可能返回 null,表示取不到有效值。
4977
+ */
4978
+ ServerUrls: Array<DescribeOutputRTSPPullServerUrl>
4979
+ }
4980
+
4036
4981
  /**
4037
4982
  * 文本全文识别结果。
4038
4983
  */
@@ -4138,6 +5083,21 @@ export interface ImageQualityEnhanceConfig {
4138
5083
  Type?: string
4139
5084
  }
4140
5085
 
5086
+ /**
5087
+ * DescribeStreamLinkRegions返回参数结构体
5088
+ */
5089
+ export interface DescribeStreamLinkRegionsResponse {
5090
+ /**
5091
+ * 媒体传输地区信息。
5092
+ */
5093
+ Info: StreamLinkRegionInfo
5094
+
5095
+ /**
5096
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5097
+ */
5098
+ RequestId?: string
5099
+ }
5100
+
4141
5101
  /**
4142
5102
  * AI 样本管理,关键词输出信息。
4143
5103
  */
@@ -4168,6 +5128,21 @@ export interface AiSampleWord {
4168
5128
  UpdateTime: string
4169
5129
  }
4170
5130
 
5131
+ /**
5132
+ * DescribeStreamLinkFlowStatistics返回参数结构体
5133
+ */
5134
+ export interface DescribeStreamLinkFlowStatisticsResponse {
5135
+ /**
5136
+ * 传输流的媒体数据列表。
5137
+ */
5138
+ Infos: Array<FlowStatisticsArray>
5139
+
5140
+ /**
5141
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5142
+ */
5143
+ RequestId?: string
5144
+ }
5145
+
4171
5146
  /**
4172
5147
  * 语音关键词识别输出。
4173
5148
  */
@@ -4414,6 +5389,21 @@ export interface AsrWordsConfigureInfo {
4414
5389
  LabelSet?: Array<string>
4415
5390
  }
4416
5391
 
5392
+ /**
5393
+ * ModifyStreamLinkOutputInfo请求参数结构体
5394
+ */
5395
+ export interface ModifyStreamLinkOutputInfoRequest {
5396
+ /**
5397
+ * 流Id。
5398
+ */
5399
+ FlowId: string
5400
+
5401
+ /**
5402
+ * 需要修改的Output配置。
5403
+ */
5404
+ Output: ModifyOutputInfo
5405
+ }
5406
+
4417
5407
  /**
4418
5408
  * 直播 AI Asr 单词识别结果
4419
5409
  */
@@ -4439,6 +5429,27 @@ export interface LiveStreamAsrWordsRecognitionResult {
4439
5429
  Confidence: number
4440
5430
  }
4441
5431
 
5432
+ /**
5433
+ * 智能按帧标签结果信息
5434
+ */
5435
+ export interface MediaAiAnalysisFrameTagItem {
5436
+ /**
5437
+ * 按帧标签名称。
5438
+ */
5439
+ Tag: string
5440
+
5441
+ /**
5442
+ * 按帧标签名称的分类列表,CategorySet.N 表示第 N+1级分类。
5443
+ 比如 Tag 为“塔楼”时,CategorySet 包含两个元素:CategorySet.0 为“场景”,CategorySet.1为 “建筑”,表示按帧标签为“塔楼”,且第1级分类是“场景”,第2级分类是“建筑”。
5444
+ */
5445
+ CategorySet: Array<string>
5446
+
5447
+ /**
5448
+ * 按帧标签的可信度,取值范围是 0 到 100。
5449
+ */
5450
+ Confidence: number
5451
+ }
5452
+
4442
5453
  /**
4443
5454
  * RecognizeMediaForZhiXue返回参数结构体
4444
5455
  */
@@ -4459,44 +5470,154 @@ export interface RecognizeMediaForZhiXueResponse {
4459
5470
  */
4460
5471
  export interface AiSamplePerson {
4461
5472
  /**
4462
- * 人物 ID。
5473
+ * 人物 ID。
5474
+ */
5475
+ PersonId: string
5476
+
5477
+ /**
5478
+ * 人物名称。
5479
+ */
5480
+ Name: string
5481
+
5482
+ /**
5483
+ * 人物描述。
5484
+ */
5485
+ Description: string
5486
+
5487
+ /**
5488
+ * 人脸信息。
5489
+ */
5490
+ FaceInfoSet: Array<AiSampleFaceInfo>
5491
+
5492
+ /**
5493
+ * 人物标签。
5494
+ */
5495
+ TagSet: Array<string>
5496
+
5497
+ /**
5498
+ * 应用场景。
5499
+ */
5500
+ UsageSet: Array<string>
5501
+
5502
+ /**
5503
+ * 创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
5504
+ */
5505
+ CreateTime: string
5506
+
5507
+ /**
5508
+ * 最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
5509
+ */
5510
+ UpdateTime: string
5511
+ }
5512
+
5513
+ /**
5514
+ * 流的统计数据。
5515
+ */
5516
+ export interface FlowStatistics {
5517
+ /**
5518
+ * 会话Id。
5519
+ */
5520
+ SessionId: string
5521
+
5522
+ /**
5523
+ * 对端IP。
5524
+ */
5525
+ ClientIp: string
5526
+
5527
+ /**
5528
+ * 总带宽。
5529
+ */
5530
+ Network: number
5531
+
5532
+ /**
5533
+ * 视频数据。
5534
+ */
5535
+ Video: Array<FlowVideo>
5536
+
5537
+ /**
5538
+ * 音频数据。
5539
+ */
5540
+ Audio: Array<FlowAudio>
5541
+ }
5542
+
5543
+ /**
5544
+ * 创建的输入SRT的配置信息。
5545
+ */
5546
+ export interface CreateInputSRTSettings {
5547
+ /**
5548
+ * SRT模式,可选[LISTENER|CALLER],默认为LISTENER。
5549
+ */
5550
+ Mode?: string
5551
+
5552
+ /**
5553
+ * 流Id,可选大小写字母、数字和特殊字符(.#!:&,=_-),长度为0~512。
5554
+ */
5555
+ StreamId?: string
5556
+
5557
+ /**
5558
+ * 延迟,默认0,单位ms,范围为[0, 3000]。
5559
+ */
5560
+ Latency?: number
5561
+
5562
+ /**
5563
+ * 接收延迟,默认120,单位ms,范围为[0, 3000]。
5564
+ */
5565
+ RecvLatency?: number
5566
+
5567
+ /**
5568
+ * 对端延迟,默认0,单位ms,范围为[0, 3000]。
5569
+ */
5570
+ PeerLatency?: number
5571
+
5572
+ /**
5573
+ * 对端超时时间,默认5000,单位ms,范围为[1000, 10000]。
5574
+ */
5575
+ PeerIdleTimeout?: number
5576
+
5577
+ /**
5578
+ * 解密密钥,默认为空,表示不加密。只可填ascii码值,长度为[10, 79]。
4463
5579
  */
4464
- PersonId: string
5580
+ Passphrase?: string
4465
5581
 
4466
5582
  /**
4467
- * 人物名称。
5583
+ * 密钥长度,默认为0,可选[0|16|24|32]。
4468
5584
  */
4469
- Name: string
5585
+ PbKeyLen?: number
4470
5586
 
4471
5587
  /**
4472
- * 人物描述。
5588
+ * SRT对端地址,当Mode为CALLER时必填,且只能填1组。
4473
5589
  */
4474
- Description: string
5590
+ SourceAddresses?: Array<SRTSourceAddressReq>
5591
+ }
4475
5592
 
5593
+ /**
5594
+ * 实时流状态查询的通用状态信息。
5595
+ */
5596
+ export interface FlowRealtimeStatusCommon {
4476
5597
  /**
4477
- * 人脸信息。
5598
+ * 当前连接状态,Connected|Waiting|Idle。
4478
5599
  */
4479
- FaceInfoSet: Array<AiSampleFaceInfo>
5600
+ State: string
4480
5601
 
4481
5602
  /**
4482
- * 人物标签。
5603
+ * 连接模式,Listener|Caller。
4483
5604
  */
4484
- TagSet: Array<string>
5605
+ Mode: string
4485
5606
 
4486
5607
  /**
4487
- * 应用场景。
5608
+ * 已连接时长,单位为ms。
4488
5609
  */
4489
- UsageSet: Array<string>
5610
+ ConnectedTime: number
4490
5611
 
4491
5612
  /**
4492
- * 创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)
5613
+ * 实时码率,单位为bps
4493
5614
  */
4494
- CreateTime: string
5615
+ Bitrate: number
4495
5616
 
4496
5617
  /**
4497
- * 最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
5618
+ * 重试次数。
4498
5619
  */
4499
- UpdateTime: string
5620
+ Reconnections: number
4500
5621
  }
4501
5622
 
4502
5623
  /**
@@ -4568,21 +5689,18 @@ export interface DescribeContentReviewTemplatesResponse {
4568
5689
  }
4569
5690
 
4570
5691
  /**
4571
- * 极速高清参数配置。
5692
+ * DescribeStreamLinkActivateState返回参数结构体
4572
5693
  */
4573
- export interface TEHDConfig {
5694
+ export interface DescribeStreamLinkActivateStateResponse {
4574
5695
  /**
4575
- * 极速高清类型,可选值:
4576
- <li>TEHD-100:极速高清-100。</li>
4577
- 不填代表不启用极速高清。
4578
- */
4579
- Type: string
5696
+ * 用户已激活为0,否则为非0。
5697
+ */
5698
+ Status: number
4580
5699
 
4581
5700
  /**
4582
- * 视频码率上限,当 Type 指定了极速高清类型时有效。
4583
- 不填或填0表示不设视频码率上限。
4584
- */
4585
- MaxVideoBitrate?: number
5701
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5702
+ */
5703
+ RequestId?: string
4586
5704
  }
4587
5705
 
4588
5706
  /**
@@ -4665,6 +5783,31 @@ export interface AnimatedGraphicsTemplate {
4665
5783
  UpdateTime: string
4666
5784
  }
4667
5785
 
5786
+ /**
5787
+ * DescribeStreamLinkFlow请求参数结构体
5788
+ */
5789
+ export interface DescribeStreamLinkFlowRequest {
5790
+ /**
5791
+ * 流Id。
5792
+ */
5793
+ FlowId: string
5794
+ }
5795
+
5796
+ /**
5797
+ * 创建媒体传输流的输出的RTMP配置。
5798
+ */
5799
+ export interface CreateOutputRTMPSettings {
5800
+ /**
5801
+ * 转推的目标地址,可填1~2个。
5802
+ */
5803
+ Destinations: Array<CreateOutputRtmpSettingsDestinations>
5804
+
5805
+ /**
5806
+ * RTMP的Chunk大小,范围为[4096, 40960]。
5807
+ */
5808
+ ChunkSize?: number
5809
+ }
5810
+
4668
5811
  /**
4669
5812
  * 输入规则,当上传视频命中该规则时,即触发工作流。
4670
5813
  */
@@ -4923,13 +6066,38 @@ export interface TerrorismConfigureInfoForUpdate {
4923
6066
  }
4924
6067
 
4925
6068
  /**
4926
- * ParseNotification请求参数结构体
6069
+ * SRT输出的监听地址。
4927
6070
  */
4928
- export interface ParseNotificationRequest {
6071
+ export interface OutputSRTSourceAddressResp {
4929
6072
  /**
4930
- * 从 CMQ 获取到的事件通知内容。
6073
+ * 监听IP。
4931
6074
  */
4932
- Content: string
6075
+ Ip: string
6076
+
6077
+ /**
6078
+ * 监听端口。
6079
+ */
6080
+ Port: number
6081
+ }
6082
+
6083
+ /**
6084
+ * 媒体传输的地区信息。
6085
+ */
6086
+ export interface StreamLinkRegionInfo {
6087
+ /**
6088
+ * 媒体直传输的地区信息列表。
6089
+ */
6090
+ Regions: Array<RegionInfo>
6091
+ }
6092
+
6093
+ /**
6094
+ * 流状态实时查询接口的RTP流状态信息
6095
+ */
6096
+ export interface FlowRealtimeStatusRTP {
6097
+ /**
6098
+ * 传输的包个数
6099
+ */
6100
+ Packets: number
4933
6101
  }
4934
6102
 
4935
6103
  /**
@@ -4964,15 +6132,80 @@ export interface AnimatedGraphicTaskInput {
4964
6132
  }
4965
6133
 
4966
6134
  /**
4967
- * DeleteContentReviewTemplate请求参数结构体
6135
+ * 输出的出口的地址。
4968
6136
  */
4969
- export interface DeleteContentReviewTemplateRequest {
6137
+ export interface OutputAddress {
4970
6138
  /**
4971
- * 内容审核模板唯一标识。
6139
+ * 出口IP。
4972
6140
  */
4973
- Definition: number
6141
+ Ip: string
6142
+ }
6143
+
6144
+ /**
6145
+ * 媒体处理任务中的马赛克参数类型
6146
+ */
6147
+ export interface MosaicInput {
6148
+ /**
6149
+ * 原点位置,目前仅支持:
6150
+ <li>TopLeft:表示坐标原点位于视频图像左上角,马赛克原点为图片或文字的左上角。</li>
6151
+ 默认值:TopLeft。
6152
+ */
6153
+ CoordinateOrigin?: string
6154
+
6155
+ /**
6156
+ * 马赛克原点距离视频图像坐标原点的水平位置。支持 %、px 两种格式:
6157
+ <li>当字符串以 % 结尾,表示马赛克 XPos 为视频宽度指定百分比,如 10% 表示 XPos 为视频宽度的 10%;</li>
6158
+ <li>当字符串以 px 结尾,表示马赛克 XPos 为指定像素,如 100px 表示 XPos 为 100 像素。</li>
6159
+ 默认值:0px。
6160
+ */
6161
+ XPos?: string
6162
+
6163
+ /**
6164
+ * 马赛克原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式:
6165
+ <li>当字符串以 % 结尾,表示马赛克 YPos 为视频高度指定百分比,如 10% 表示 YPos 为视频高度的 10%;</li>
6166
+ <li>当字符串以 px 结尾,表示马赛克 YPos 为指定像素,如 100px 表示 YPos 为 100 像素。</li>
6167
+ 默认值:0px。
6168
+ */
6169
+ YPos?: string
6170
+
6171
+ /**
6172
+ * 马赛克的宽度。支持 %、px 两种格式:
6173
+ <li>当字符串以 % 结尾,表示马赛克 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;</li>
6174
+ <li>当字符串以 px 结尾,表示马赛克 Width 单位为像素,如 100px 表示 Width 为 100 像素。</li>
6175
+ 默认值:10%。
6176
+ */
6177
+ Width?: string
6178
+
6179
+ /**
6180
+ * 马赛克的高度。支持 %、px 两种格式:
6181
+ <li>当字符串以 % 结尾,表示马赛克 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;</li>
6182
+ <li>当字符串以 px 结尾,表示马赛克 Height 单位为像素,如 100px 表示 Height 为 100 像素。</li>
6183
+ 默认值:10%。
6184
+ */
6185
+ Height?: string
6186
+
6187
+ /**
6188
+ * 马赛克的起始时间偏移,单位:秒。不填或填0,表示马赛克从画面出现时开始显现。
6189
+ <li>不填或填0,表示马赛克从画面开始就出现;</li>
6190
+ <li>当数值大于0时(假设为 n),表示马赛克从画面开始的第 n 秒出现;</li>
6191
+ <li>当数值小于0时(假设为 -n),表示马赛克从离画面结束 n 秒前开始出现。</li>
6192
+ */
6193
+ StartTimeOffset?: number
6194
+
6195
+ /**
6196
+ * 马赛克的结束时间偏移,单位:秒。
6197
+ <li>不填或填0,表示马赛克持续到画面结束;</li>
6198
+ <li>当数值大于0时(假设为 n),表示马赛克持续到第 n 秒时消失;</li>
6199
+ <li>当数值小于0时(假设为 -n),表示马赛克持续到离画面结束 n 秒前消失。</li>
6200
+ */
6201
+ EndTimeOffset?: number
4974
6202
  }
4975
6203
 
6204
+ /**
6205
+ * DescribeStreamLinkActivateState请求参数结构体
6206
+ */
6207
+ export type DescribeStreamLinkActivateStateRequest = null
6208
+
4976
6209
  /**
4977
6210
  * AI 智能分析模板详情
4978
6211
  */
@@ -5126,6 +6359,21 @@ export interface AiSampleTagOperation {
5126
6359
  Tags: Array<string>
5127
6360
  }
5128
6361
 
6362
+ /**
6363
+ * SRT输入源地址。
6364
+ */
6365
+ export interface SRTSourceAddressResp {
6366
+ /**
6367
+ * 对端IP。
6368
+ */
6369
+ Ip: string
6370
+
6371
+ /**
6372
+ * 对端端口。
6373
+ */
6374
+ Port: number
6375
+ }
6376
+
5129
6377
  /**
5130
6378
  * CreateAIRecognitionTemplate返回参数结构体
5131
6379
  */
@@ -5141,6 +6389,82 @@ export interface CreateAIRecognitionTemplateResponse {
5141
6389
  RequestId?: string
5142
6390
  }
5143
6391
 
6392
+ /**
6393
+ * 查询输入配置信息。
6394
+ */
6395
+ export interface DescribeInput {
6396
+ /**
6397
+ * 输入Id。
6398
+ */
6399
+ InputId: string
6400
+
6401
+ /**
6402
+ * 输入名称。
6403
+ */
6404
+ InputName: string
6405
+
6406
+ /**
6407
+ * 输入描述。
6408
+ 注意:此字段可能返回 null,表示取不到有效值。
6409
+ */
6410
+ Description: string
6411
+
6412
+ /**
6413
+ * 输入协议。
6414
+ */
6415
+ Protocol: string
6416
+
6417
+ /**
6418
+ * 输入地址列表。
6419
+ */
6420
+ InputAddressList: Array<InputAddress>
6421
+
6422
+ /**
6423
+ * 输入IP白名单列表。
6424
+ */
6425
+ AllowIpList: Array<string>
6426
+
6427
+ /**
6428
+ * 输入的SRT配置信息。
6429
+ 注意:此字段可能返回 null,表示取不到有效值。
6430
+ */
6431
+ SRTSettings: DescribeInputSRTSettings
6432
+
6433
+ /**
6434
+ * 输入的RTP配置信息。
6435
+ 注意:此字段可能返回 null,表示取不到有效值。
6436
+ */
6437
+ RTPSettings: DescribeInputRTPSettings
6438
+
6439
+ /**
6440
+ * 输入的地区。
6441
+ */
6442
+ InputRegion: string
6443
+
6444
+ /**
6445
+ * 输入的RTMP配置信息。
6446
+ */
6447
+ RTMPSettings: DescribeInputRTMPSettings
6448
+
6449
+ /**
6450
+ * 输入的主备开关。
6451
+ 注意:此字段可能返回 null,表示取不到有效值。
6452
+ */
6453
+ FailOver: string
6454
+
6455
+ /**
6456
+ * 输入的RTMP_PULL配置信息。
6457
+ 注意:此字段可能返回 null,表示取不到有效值。
6458
+ */
6459
+ RTMPPullSettings: DescribeInputRTMPPullSettings
6460
+
6461
+ /**
6462
+ * 输入的RTSP_PULL配置信息。
6463
+ 注意:此字段可能返回 null,表示取不到有效值。
6464
+ */
6465
+ RTSPPullSettings: DescribeInputRTSPPullSettings
6466
+ }
6467
+
5144
6468
  /**
5145
6469
  * DeleteTranscodeTemplate请求参数结构体
5146
6470
  */
@@ -5205,6 +6529,21 @@ export interface ProhibitedConfigureInfo {
5205
6529
  OcrReviewInfo?: ProhibitedOcrReviewTemplateInfo
5206
6530
  }
5207
6531
 
6532
+ /**
6533
+ * DescribeStreamLinkFlowSRTStatistics返回参数结构体
6534
+ */
6535
+ export interface DescribeStreamLinkFlowSRTStatisticsResponse {
6536
+ /**
6537
+ * 传输流的SRT质量数据列表。
6538
+ */
6539
+ Infos: Array<FlowSRTInfo>
6540
+
6541
+ /**
6542
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6543
+ */
6544
+ RequestId?: string
6545
+ }
6546
+
5208
6547
  /**
5209
6548
  * Ocr 文字涉敏信息
5210
6549
  */
@@ -5267,6 +6606,39 @@ export interface AiAnalysisResult {
5267
6606
  FrameTagTask: AiAnalysisTaskFrameTagResult
5268
6607
  }
5269
6608
 
6609
+ /**
6610
+ * 图片水印模板输入参数
6611
+ */
6612
+ export interface ImageWatermarkInputForUpdate {
6613
+ /**
6614
+ * 水印图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串。支持 jpeg、png 图片格式。
6615
+ */
6616
+ ImageContent?: string
6617
+
6618
+ /**
6619
+ * 水印的宽度。支持 %、px 两种格式:
6620
+ <li>当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;</li>
6621
+ <li>当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。取值范围为[8, 4096]。</li>
6622
+ */
6623
+ Width?: string
6624
+
6625
+ /**
6626
+ * 水印的高度。支持 %、px 两种格式:
6627
+ <li>当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;</li>
6628
+ <li>当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素。取值范围为0或[8, 4096]。</li>
6629
+ 默认值:0px,表示 Height 按照原始水印图片的宽高比缩放。
6630
+ */
6631
+ Height?: string
6632
+
6633
+ /**
6634
+ * 水印重复类型。使用场景:水印为动态图像。取值范围:
6635
+ <li>once:动态水印播放完后,不再出现;</li>
6636
+ <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
6637
+ <li>repeat:水印循环播放,直到视频结束。</li>
6638
+ */
6639
+ RepeatType?: string
6640
+ }
6641
+
5270
6642
  /**
5271
6643
  * DescribeAIAnalysisTemplates请求参数结构体
5272
6644
  */
@@ -5277,21 +6649,41 @@ export interface DescribeAIAnalysisTemplatesRequest {
5277
6649
  Definitions?: Array<number>
5278
6650
 
5279
6651
  /**
5280
- * 分页偏移量,默认值:0。
6652
+ * 分页偏移量,默认值:0。
6653
+ */
6654
+ Offset?: number
6655
+
6656
+ /**
6657
+ * 返回记录条数,默认值:10,最大值:100。
6658
+ */
6659
+ Limit?: number
6660
+
6661
+ /**
6662
+ * 模板类型过滤条件,不填则返回所有,可选值:
6663
+ * Preset:系统预置模板;
6664
+ * Custom:用户自定义模板。
6665
+ */
6666
+ Type?: string
6667
+ }
6668
+
6669
+ /**
6670
+ * 流的视频数据。
6671
+ */
6672
+ export interface FlowVideo {
6673
+ /**
6674
+ * 帧率。
5281
6675
  */
5282
- Offset?: number
6676
+ Fps: number
5283
6677
 
5284
6678
  /**
5285
- * 返回记录条数,默认值:10,最大值:100
6679
+ * 码率,单位是bps
5286
6680
  */
5287
- Limit?: number
6681
+ Rate: number
5288
6682
 
5289
6683
  /**
5290
- * 模板类型过滤条件,不填则返回所有,可选值:
5291
- * Preset:系统预置模板;
5292
- * Custom:用户自定义模板。
6684
+ * 音频Pid。
5293
6685
  */
5294
- Type?: string
6686
+ Pid: number
5295
6687
  }
5296
6688
 
5297
6689
  /**
@@ -5425,6 +6817,85 @@ export interface AiReviewTaskTerrorismResult {
5425
6817
  Output: AiReviewTerrorismTaskOutput
5426
6818
  }
5427
6819
 
6820
+ /**
6821
+ * 查询输出的配置信息。
6822
+ */
6823
+ export interface DescribeOutput {
6824
+ /**
6825
+ * 输出Id。
6826
+ */
6827
+ OutputId: string
6828
+
6829
+ /**
6830
+ * 输出名称。
6831
+ */
6832
+ OutputName: string
6833
+
6834
+ /**
6835
+ * 输出类型。
6836
+ */
6837
+ OutputType: string
6838
+
6839
+ /**
6840
+ * 输出描述。
6841
+ 注意:此字段可能返回 null,表示取不到有效值。
6842
+ */
6843
+ Description: string
6844
+
6845
+ /**
6846
+ * 输出协议。
6847
+ */
6848
+ Protocol: string
6849
+
6850
+ /**
6851
+ * 输出的出口地址信息列表。
6852
+ */
6853
+ OutputAddressList: Array<OutputAddress>
6854
+
6855
+ /**
6856
+ * 输出的地区。
6857
+ 注意:此字段可能返回 null,表示取不到有效值。
6858
+ */
6859
+ OutputRegion: string
6860
+
6861
+ /**
6862
+ * 输出的SRT配置信息。
6863
+ 注意:此字段可能返回 null,表示取不到有效值。
6864
+ */
6865
+ SRTSettings: DescribeOutputSRTSettings
6866
+
6867
+ /**
6868
+ * 输出的RTP配置信息。
6869
+ 注意:此字段可能返回 null,表示取不到有效值。
6870
+ */
6871
+ RTPSettings: DescribeOutputRTPSettings
6872
+
6873
+ /**
6874
+ * 输出的RTMP配置信息。
6875
+ 注意:此字段可能返回 null,表示取不到有效值。
6876
+ */
6877
+ RTMPSettings: DescribeOutputRTMPSettings
6878
+
6879
+ /**
6880
+ * 输出的RTMP拉流配置信息。
6881
+ 注意:此字段可能返回 null,表示取不到有效值。
6882
+ */
6883
+ RTMPPullSettings: DescribeOutputRTMPPullSettings
6884
+
6885
+ /**
6886
+ * CIDR白名单列表。
6887
+ 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
6888
+ 注意:此字段可能返回 null,表示取不到有效值。
6889
+ */
6890
+ AllowIpList: Array<string>
6891
+
6892
+ /**
6893
+ * 输出的RTSP拉流配置信息。
6894
+ 注意:此字段可能返回 null,表示取不到有效值。
6895
+ */
6896
+ RTSPPullSettings: DescribeOutputRTSPPullSettings
6897
+ }
6898
+
5428
6899
  /**
5429
6900
  * 直播 AI 内容审核声音鉴黄结果
5430
6901
  */
@@ -5579,6 +7050,16 @@ export interface DeletePersonSampleResponse {
5579
7050
  RequestId?: string
5580
7051
  }
5581
7052
 
7053
+ /**
7054
+ * StartStreamLinkFlow请求参数结构体
7055
+ */
7056
+ export interface StartStreamLinkFlowRequest {
7057
+ /**
7058
+ * 流Id。
7059
+ */
7060
+ FlowId: string
7061
+ }
7062
+
5582
7063
  /**
5583
7064
  * CreateSnapshotByTimeOffsetTemplate返回参数结构体
5584
7065
  */
@@ -5643,36 +7124,28 @@ export interface ModifyContentReviewTemplateRequest {
5643
7124
  }
5644
7125
 
5645
7126
  /**
5646
- * 图片水印模板输入参数
7127
+ * StopStreamLinkFlow返回参数结构体
5647
7128
  */
5648
- export interface ImageWatermarkInputForUpdate {
7129
+ export interface StopStreamLinkFlowResponse {
5649
7130
  /**
5650
- * 水印图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串。支持 jpeg、png 图片格式。
7131
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5651
7132
  */
5652
- ImageContent?: string
5653
-
5654
- /**
5655
- * 水印的宽度。支持 %、px 两种格式:
5656
- <li>当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;</li>
5657
- <li>当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。取值范围为[8, 4096]。</li>
5658
- */
5659
- Width?: string
7133
+ RequestId?: string
7134
+ }
5660
7135
 
7136
+ /**
7137
+ * 智能封面结果信息
7138
+ */
7139
+ export interface AiAnalysisTaskCoverOutput {
5661
7140
  /**
5662
- * 水印的高度。支持 %、px 两种格式:
5663
- <li>当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;</li>
5664
- <li>当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素。取值范围为0或[8, 4096]。</li>
5665
- 默认值:0px,表示 Height 按照原始水印图片的宽高比缩放。
5666
- */
5667
- Height?: string
7141
+ * 智能封面列表。
7142
+ */
7143
+ CoverSet: Array<MediaAiAnalysisCoverItem>
5668
7144
 
5669
7145
  /**
5670
- * 水印重复类型。使用场景:水印为动态图像。取值范围:
5671
- <li>once:动态水印播放完后,不再出现;</li>
5672
- <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
5673
- <li>repeat:水印循环播放,直到视频结束。</li>
5674
- */
5675
- RepeatType?: string
7146
+ * 智能封面的存储位置。
7147
+ */
7148
+ OutputStorage: TaskOutputStorage
5676
7149
  }
5677
7150
 
5678
7151
  /**
@@ -5685,6 +7158,21 @@ export interface AiContentReviewTaskInput {
5685
7158
  Definition: number
5686
7159
  }
5687
7160
 
7161
+ /**
7162
+ * 输入地址信息。
7163
+ */
7164
+ export interface InputAddress {
7165
+ /**
7166
+ * 输入地址的IP。
7167
+ */
7168
+ Ip: string
7169
+
7170
+ /**
7171
+ * 输入地址的端口。
7172
+ */
7173
+ Port: number
7174
+ }
7175
+
5688
7176
  /**
5689
7177
  * CreateAdaptiveDynamicStreamingTemplate返回参数结构体
5690
7178
  */
@@ -5838,6 +7326,16 @@ export interface AiRecognitionTaskOcrFullTextSegmentTextItem {
5838
7326
  Text: string
5839
7327
  }
5840
7328
 
7329
+ /**
7330
+ * DeleteStreamLinkFlow返回参数结构体
7331
+ */
7332
+ export interface DeleteStreamLinkFlowResponse {
7333
+ /**
7334
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7335
+ */
7336
+ RequestId?: string
7337
+ }
7338
+
5841
7339
  /**
5842
7340
  * 直播识别 Asr 全文识别
5843
7341
  */
@@ -6045,6 +7543,21 @@ export interface TranscodeTemplate {
6045
7543
  EnhanceConfig: EnhanceConfig
6046
7544
  }
6047
7545
 
7546
+ /**
7547
+ * DescribeStreamLinkFlowMediaStatistics返回参数结构体
7548
+ */
7549
+ export interface DescribeStreamLinkFlowMediaStatisticsResponse {
7550
+ /**
7551
+ * 传输流的媒体数据列表。
7552
+ */
7553
+ Infos: Array<FlowMediaInfo>
7554
+
7555
+ /**
7556
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7557
+ */
7558
+ RequestId?: string
7559
+ }
7560
+
6048
7561
  /**
6049
7562
  * 文本鉴黄任务控制参数
6050
7563
  */
@@ -6067,6 +7580,26 @@ export interface PornOcrReviewTemplateInfo {
6067
7580
  ReviewConfidence?: number
6068
7581
  }
6069
7582
 
7583
+ /**
7584
+ * 创建媒体传输流的输出的RTP配置。
7585
+ */
7586
+ export interface CreateOutputInfoRTPSettings {
7587
+ /**
7588
+ * 转推的目标地址,可填1~2个。
7589
+ */
7590
+ Destinations: Array<CreateOutputRTPSettingsDestinations>
7591
+
7592
+ /**
7593
+ * 只能填none。
7594
+ */
7595
+ FEC: string
7596
+
7597
+ /**
7598
+ * 空闲超时时间,单位ms。
7599
+ */
7600
+ IdleTimeout: number
7601
+ }
7602
+
6070
7603
  /**
6071
7604
  * 内容审核 Asr 文字敏感任务结果类型
6072
7605
  */
@@ -6129,23 +7662,35 @@ export interface AiRecognitionTaskAsrWordsSegmentItem {
6129
7662
  export type SubtitleTemplate = null
6130
7663
 
6131
7664
  /**
6132
- * 鉴黄任务控制参数。
7665
+ * 直播处理任务信息
6133
7666
  */
6134
- export interface PornConfigureInfoForUpdate {
7667
+ export interface LiveStreamProcessTask {
6135
7668
  /**
6136
- * 画面鉴黄控制参数。
7669
+ * 媒体处理任务 ID。
6137
7670
  */
6138
- ImgReviewInfo?: PornImgReviewTemplateInfoForUpdate
7671
+ TaskId: string
6139
7672
 
6140
7673
  /**
6141
- * 语音鉴黄控制参数。
7674
+ * 任务流状态,取值:
7675
+ <li>PROCESSING:处理中;</li>
7676
+ <li>FINISH:已完成。</li>
7677
+ */
7678
+ Status: string
7679
+
7680
+ /**
7681
+ * 错误码,0 表示成功,其他值表示失败。
6142
7682
  */
6143
- AsrReviewInfo?: PornAsrReviewTemplateInfoForUpdate
7683
+ ErrCode: number
6144
7684
 
6145
7685
  /**
6146
- * 文本鉴黄控制参数。
7686
+ * 错误信息。
6147
7687
  */
6148
- OcrReviewInfo?: PornOcrReviewTemplateInfoForUpdate
7688
+ Message: string
7689
+
7690
+ /**
7691
+ * 直播流 URL。
7692
+ */
7693
+ Url: string
6149
7694
  }
6150
7695
 
6151
7696
  /**
@@ -6260,6 +7805,26 @@ export interface AiReviewTaskPornResult {
6260
7805
  Output: AiReviewPornTaskOutput
6261
7806
  }
6262
7807
 
7808
+ /**
7809
+ * DescribeStreamLinkFlowRealtimeStatus请求参数结构体
7810
+ */
7811
+ export interface DescribeStreamLinkFlowRealtimeStatusRequest {
7812
+ /**
7813
+ * 流ID。
7814
+ */
7815
+ FlowId: string
7816
+
7817
+ /**
7818
+ * 输入id数组,如果输入输出数组都为空,则代表全量查询。
7819
+ */
7820
+ InputIds?: Array<string>
7821
+
7822
+ /**
7823
+ * 输出id数组,如果输入输出数组都为空,则代表全量查询。
7824
+ */
7825
+ OutputIds?: Array<string>
7826
+ }
7827
+
6263
7828
  /**
6264
7829
  * Asr 文字涉违禁信息
6265
7830
  */
@@ -6325,30 +7890,23 @@ export interface LiveStreamFaceRecognitionResult {
6325
7890
  }
6326
7891
 
6327
7892
  /**
6328
- * DescribeSampleSnapshotTemplates请求参数结构体
7893
+ * 流的音频数据。
6329
7894
  */
6330
- export interface DescribeSampleSnapshotTemplatesRequest {
7895
+ export interface FlowAudio {
6331
7896
  /**
6332
- * 采样截图模板唯一标识过滤条件,数组长度限制:100。
7897
+ * 帧率。
6333
7898
  */
6334
- Definitions?: Array<number>
7899
+ Fps: number
6335
7900
 
6336
7901
  /**
6337
- * 分页偏移量,默认值:0
7902
+ * 码率,单位是bps
6338
7903
  */
6339
- Offset?: number
7904
+ Rate: number
6340
7905
 
6341
7906
  /**
6342
- * 返回记录条数,默认值:10,最大值:100
7907
+ * 音频Pid
6343
7908
  */
6344
- Limit?: number
6345
-
6346
- /**
6347
- * 模板类型过滤条件,可选值:
6348
- <li>Preset:系统预置模板;</li>
6349
- <li>Custom:用户自定义模板。</li>
6350
- */
6351
- Type?: string
7909
+ Pid: number
6352
7910
  }
6353
7911
 
6354
7912
  /**
@@ -6373,94 +7931,40 @@ export interface DisableWorkflowResponse {
6373
7931
  RequestId?: string
6374
7932
  }
6375
7933
 
6376
- /**
6377
- * 采样截图模板详情
6378
- */
6379
- export interface SampleSnapshotTemplate {
6380
- /**
6381
- * 采样截图模板唯一标识。
6382
- */
6383
- Definition: number
6384
-
6385
- /**
6386
- * 模板类型,取值范围:
6387
- <li>Preset:系统预置模板;</li>
6388
- <li>Custom:用户自定义模板。</li>
6389
- */
6390
- Type: string
6391
-
6392
- /**
6393
- * 采样截图模板名称。
6394
- */
6395
- Name: string
6396
-
6397
- /**
6398
- * 模板描述信息。
6399
- */
6400
- Comment: string
6401
-
6402
- /**
6403
- * 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
6404
- <li>当 Width、Height 均为 0,则分辨率同源;</li>
6405
- <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
6406
- <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
6407
- <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
6408
- 默认值:0。
6409
- */
6410
- Width: number
6411
-
6412
- /**
6413
- * 截图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
6414
- <li>当 Width、Height 均为 0,则分辨率同源;</li>
6415
- <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
6416
- <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
6417
- <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
6418
- 默认值:0。
6419
- */
6420
- Height: number
6421
-
6422
- /**
6423
- * 分辨率自适应,可选值:
6424
- <li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
6425
- <li>close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。</li>
6426
- 默认值:open。
6427
- */
6428
- ResolutionAdaptive: string
6429
-
7934
+ /**
7935
+ * 智能分类任务结果类型
7936
+ */
7937
+ export interface AiAnalysisTaskClassificationResult {
6430
7938
  /**
6431
- * 图片格式。
7939
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
6432
7940
  */
6433
- Format: string
7941
+ Status: string
6434
7942
 
6435
7943
  /**
6436
- * 采样截图类型。
7944
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](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) 列表。
6437
7945
  */
6438
- SampleType: string
7946
+ ErrCodeExt: string
6439
7947
 
6440
7948
  /**
6441
- * 采样间隔。
7949
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
6442
7950
  */
6443
- SampleInterval: number
7951
+ ErrCode: number
6444
7952
 
6445
7953
  /**
6446
- * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
7954
+ * 错误信息。
6447
7955
  */
6448
- CreateTime: string
7956
+ Message: string
6449
7957
 
6450
7958
  /**
6451
- * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
7959
+ * 智能分类任务输入。
6452
7960
  */
6453
- UpdateTime: string
7961
+ Input: AiAnalysisTaskClassificationInput
6454
7962
 
6455
7963
  /**
6456
- * 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
6457
- <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
6458
- <li>black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
6459
- <li>white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。</li>
6460
- <li>gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊。</li>
6461
- 默认值:black 。
7964
+ * 智能分类任务输出。
7965
+ 注意:此字段可能返回 null,表示取不到有效值。
6462
7966
  */
6463
- FillType: string
7967
+ Output: AiAnalysisTaskClassificationOutput
6464
7968
  }
6465
7969
 
6466
7970
  /**
@@ -6498,6 +8002,21 @@ export interface PoliticalImgReviewTemplateInfoForUpdate {
6498
8002
  ReviewConfidence?: number
6499
8003
  }
6500
8004
 
8005
+ /**
8006
+ * 流状态实时查询接口的RTMP信息。
8007
+ */
8008
+ export interface FlowRealtimeStatusRTMP {
8009
+ /**
8010
+ * 视频帧率。
8011
+ */
8012
+ VideoFPS: number
8013
+
8014
+ /**
8015
+ * 音频帧率。
8016
+ */
8017
+ AudioFPS: number
8018
+ }
8019
+
6501
8020
  /**
6502
8021
  * 用户自定义文本审核任务控制参数
6503
8022
  */
@@ -6693,13 +8212,13 @@ export interface ParseNotificationResponse {
6693
8212
  EventType: string
6694
8213
 
6695
8214
  /**
6696
- * 视频处理任务信息,仅当 TaskType 为 WorkflowTask,该字段有值。
8215
+ * 视频处理任务信息,仅当 EventType 为 WorkflowTask,该字段有值。
6697
8216
  注意:此字段可能返回 null,表示取不到有效值。
6698
8217
  */
6699
8218
  WorkflowTaskEvent: WorkflowTask
6700
8219
 
6701
8220
  /**
6702
- * 视频编辑任务信息,仅当 TaskType 为 EditMediaTask,该字段有值。
8221
+ * 视频编辑任务信息,仅当 EventType 为 EditMediaTask,该字段有值。
6703
8222
  注意:此字段可能返回 null,表示取不到有效值。
6704
8223
  */
6705
8224
  EditMediaTaskEvent: EditMediaTask
@@ -6715,7 +8234,7 @@ export interface ParseNotificationResponse {
6715
8234
  SessionContext: string
6716
8235
 
6717
8236
  /**
6718
- * 编排任务信息,仅当 TaskType 为 ScheduleTask,该字段有值。
8237
+ * 编排任务信息,仅当 EventType 为 ScheduleTask,该字段有值。
6719
8238
  注意:此字段可能返回 null,表示取不到有效值。
6720
8239
  */
6721
8240
  ScheduleTaskEvent: ScheduleTask
@@ -6760,6 +8279,21 @@ export interface ResetWorkflowResponse {
6760
8279
  RequestId?: string
6761
8280
  }
6762
8281
 
8282
+ /**
8283
+ * DescribeStreamLinkFlows请求参数结构体
8284
+ */
8285
+ export interface DescribeStreamLinkFlowsRequest {
8286
+ /**
8287
+ * 当前页数,默认1。
8288
+ */
8289
+ PageNum?: number
8290
+
8291
+ /**
8292
+ * 每页大小,默认10。
8293
+ */
8294
+ PageSize?: number
8295
+ }
8296
+
6763
8297
  /**
6764
8298
  * CreateAIAnalysisTemplate返回参数结构体
6765
8299
  */
@@ -6879,6 +8413,46 @@ export interface AiReviewPoliticalAsrTaskOutput {
6879
8413
  SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>
6880
8414
  }
6881
8415
 
8416
+ /**
8417
+ * 流状态实时查询接口的SRT信息。
8418
+ */
8419
+ export interface FlowRealtimeStatusSRT {
8420
+ /**
8421
+ * 延迟,单位为ms。
8422
+ */
8423
+ Latency: number
8424
+
8425
+ /**
8426
+ * RTT,单位为ms。
8427
+ */
8428
+ RTT: number
8429
+
8430
+ /**
8431
+ * 实时发包数或者收包数。
8432
+ */
8433
+ Packets: number
8434
+
8435
+ /**
8436
+ * 丢包率。
8437
+ */
8438
+ PacketLossRate: number
8439
+
8440
+ /**
8441
+ * 重传率。
8442
+ */
8443
+ RetransmitRate: number
8444
+
8445
+ /**
8446
+ * 实时丢包数。
8447
+ */
8448
+ DroppedPackets: number
8449
+
8450
+ /**
8451
+ * 是否加密,On|Off。
8452
+ */
8453
+ Encryption: string
8454
+ }
8455
+
6882
8456
  /**
6883
8457
  * 极速高清参数配置。
6884
8458
  */
@@ -6896,6 +8470,21 @@ export interface TEHDConfigForUpdate {
6896
8470
  MaxVideoBitrate?: number
6897
8471
  }
6898
8472
 
8473
+ /**
8474
+ * DeleteStreamLinkOutput请求参数结构体
8475
+ */
8476
+ export interface DeleteStreamLinkOutputRequest {
8477
+ /**
8478
+ * 流Id。
8479
+ */
8480
+ FlowId: string
8481
+
8482
+ /**
8483
+ * 输出Id。
8484
+ */
8485
+ OutputId: string
8486
+ }
8487
+
6899
8488
  /**
6900
8489
  * ModifyPersonSample请求参数结构体
6901
8490
  */
@@ -6953,18 +8542,25 @@ export interface AsrFullTextConfigureInfo {
6953
8542
  }
6954
8543
 
6955
8544
  /**
6956
- * DescribeMediaMetaData返回参数结构体
8545
+ * 去伪影(毛刺)配置
6957
8546
  */
6958
- export interface DescribeMediaMetaDataResponse {
8547
+ export interface ArtifactRepairConfig {
6959
8548
  /**
6960
- * 媒体元信息。
6961
- */
6962
- MetaData?: MediaMetaData
8549
+ * 能力配置开关,可选值:
8550
+ <li>ON:开启;</li>
8551
+ <li>OFF:关闭。</li>
8552
+ 默认值:ON。
8553
+ */
8554
+ Switch?: string
6963
8555
 
6964
8556
  /**
6965
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6966
- */
6967
- RequestId?: string
8557
+ * 类型,可选值:
8558
+ <li>weak</li>
8559
+ <li>strong</li>
8560
+ 默认值:weak。
8561
+ 注意:此字段可能返回 null,表示取不到有效值。
8562
+ */
8563
+ Type?: string
6968
8564
  }
6969
8565
 
6970
8566
  /**
@@ -7017,6 +8613,21 @@ export interface DescribeTaskDetailRequest {
7017
8613
  TaskId: string
7018
8614
  }
7019
8615
 
8616
+ /**
8617
+ * DescribeStreamLinkFlow返回参数结构体
8618
+ */
8619
+ export interface DescribeStreamLinkFlowResponse {
8620
+ /**
8621
+ * 流的配置信息。
8622
+ */
8623
+ Info: DescribeFlow
8624
+
8625
+ /**
8626
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8627
+ */
8628
+ RequestId?: string
8629
+ }
8630
+
7020
8631
  /**
7021
8632
  * 智能按帧标签结果类型
7022
8633
  */
@@ -7264,6 +8875,21 @@ export interface ModifyAnimatedGraphicsTemplateRequest {
7264
8875
  Comment?: string
7265
8876
  }
7266
8877
 
8878
+ /**
8879
+ * 查询输出的RTMP拉流URL信息。
8880
+ */
8881
+ export interface DescribeOutputRTMPPullServerUrl {
8882
+ /**
8883
+ * RTMP拉流地址的tcUrl。
8884
+ */
8885
+ TcUrl: string
8886
+
8887
+ /**
8888
+ * RTMP拉流地址的流key。
8889
+ */
8890
+ StreamKey: string
8891
+ }
8892
+
7267
8893
  /**
7268
8894
  * 文本识别片段。
7269
8895
  */
@@ -7479,6 +9105,21 @@ export interface AdaptiveDynamicStreamingInfoItem {
7479
9105
  Storage: TaskOutputStorage
7480
9106
  }
7481
9107
 
9108
+ /**
9109
+ * CreateStreamLinkOutputInfo请求参数结构体
9110
+ */
9111
+ export interface CreateStreamLinkOutputInfoRequest {
9112
+ /**
9113
+ * 传输流Id。
9114
+ */
9115
+ FlowId: string
9116
+
9117
+ /**
9118
+ * 传输流的Output配置。
9119
+ */
9120
+ Output: CreateOutputInfo
9121
+ }
9122
+
7482
9123
  /**
7483
9124
  * 文本违禁任务控制参数
7484
9125
  */
@@ -7531,6 +9172,21 @@ export interface LiveStreamOcrFullTextRecognitionResult {
7531
9172
  AreaCoordSet: Array<number>
7532
9173
  }
7533
9174
 
9175
+ /**
9176
+ * ModifyStreamLinkInput请求参数结构体
9177
+ */
9178
+ export interface ModifyStreamLinkInputRequest {
9179
+ /**
9180
+ * 流Id。
9181
+ */
9182
+ FlowId: string
9183
+
9184
+ /**
9185
+ * 需要修改的Input信息。
9186
+ */
9187
+ Input: ModifyInput
9188
+ }
9189
+
7534
9190
  /**
7535
9191
  * 编排视频审核任务结果类型
7536
9192
  */
@@ -7998,6 +9654,26 @@ export interface AiRecognitionTaskAsrWordsResultItem {
7998
9654
  SegmentSet: Array<AiRecognitionTaskAsrWordsSegmentItem>
7999
9655
  }
8000
9656
 
9657
+ /**
9658
+ * DescribeStreamLinkRegions请求参数结构体
9659
+ */
9660
+ export type DescribeStreamLinkRegionsRequest = null
9661
+
9662
+ /**
9663
+ * ModifyStreamLinkInput返回参数结构体
9664
+ */
9665
+ export interface ModifyStreamLinkInputResponse {
9666
+ /**
9667
+ * 修改后的Input信息。
9668
+ */
9669
+ Info: DescribeInput
9670
+
9671
+ /**
9672
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9673
+ */
9674
+ RequestId?: string
9675
+ }
9676
+
8001
9677
  /**
8002
9678
  * DescribeTaskDetail返回参数结构体
8003
9679
  */
@@ -8201,6 +9877,23 @@ export interface UserDefineFaceReviewTemplateInfoForUpdate {
8201
9877
  ReviewConfidence?: number
8202
9878
  }
8203
9879
 
9880
+ /**
9881
+ * 查询输入的RTMP配置信息。
9882
+ */
9883
+ export interface DescribeInputRTMPSettings {
9884
+ /**
9885
+ * RTMP的推流路径。
9886
+ 注意:此字段可能返回 null,表示取不到有效值。
9887
+ */
9888
+ AppName: string
9889
+
9890
+ /**
9891
+ * RTMP的推流StreamKey。
9892
+ RTMP的推流地址拼接规则为:rtmp://Ip:1935/AppName/StreamKey
9893
+ */
9894
+ StreamKey: string
9895
+ }
9896
+
8204
9897
  /**
8205
9898
  * 细节增强配置
8206
9899
  */
@@ -8233,39 +9926,154 @@ export interface OcrFullTextConfigureInfoForUpdate {
8233
9926
  Switch?: string
8234
9927
  }
8235
9928
 
9929
+ /**
9930
+ * 传输流的SRT质量数据。
9931
+ */
9932
+ export interface FlowSRTInfo {
9933
+ /**
9934
+ * 时间戳,单位是秒。
9935
+ */
9936
+ Timestamp: number
9937
+
9938
+ /**
9939
+ * 发送丢包率。
9940
+ */
9941
+ SendPacketLossRate: number
9942
+
9943
+ /**
9944
+ * 发送重传率。
9945
+ */
9946
+ SendRetransmissionRate: number
9947
+
9948
+ /**
9949
+ * 接收丢包率。
9950
+ */
9951
+ RecvPacketLossRate: number
9952
+
9953
+ /**
9954
+ * 接收重传率。
9955
+ */
9956
+ RecvRetransmissionRate: number
9957
+
9958
+ /**
9959
+ * 与对端的RTT时延。
9960
+ */
9961
+ RTT: number
9962
+
9963
+ /**
9964
+ * 标志同一次推流。
9965
+ */
9966
+ SessionId: string
9967
+
9968
+ /**
9969
+ * 发送弃包数。
9970
+ */
9971
+ SendPacketDropNumber: number
9972
+
9973
+ /**
9974
+ * 接收弃包数。
9975
+ */
9976
+ RecvPacketDropNumber: number
9977
+ }
9978
+
8236
9979
  /**
8237
9980
  * 文本全文识别输入。
8238
9981
  */
8239
9982
  export interface AiRecognitionTaskOcrFullTextResultInput {
8240
9983
  /**
8241
- * 文本全文识别模板 ID。
8242
- */
8243
- Definition: number
8244
- }
9984
+ * 文本全文识别模板 ID。
9985
+ */
9986
+ Definition: number
9987
+ }
9988
+
9989
+ /**
9990
+ * DescribeTasks返回参数结构体
9991
+ */
9992
+ export interface DescribeTasksResponse {
9993
+ /**
9994
+ * 任务概要列表。
9995
+ */
9996
+ TaskSet: Array<TaskSimpleInfo>
9997
+
9998
+ /**
9999
+ * 翻页标识,当请求未返回所有数据,该字段表示下一条记录的 ID。当该字段为空字符串,说明已无更多数据。
10000
+ */
10001
+ ScrollToken: string
10002
+
10003
+ /**
10004
+ * 符合过滤条件的记录总数。
10005
+ */
10006
+ TotalCount: number
10007
+
10008
+ /**
10009
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10010
+ */
10011
+ RequestId?: string
10012
+ }
10013
+
10014
+ /**
10015
+ * 查询输出的SRT配置信息。
10016
+ */
10017
+ export interface DescribeOutputSRTSettings {
10018
+ /**
10019
+ * 转推的目标的地址信息列表,SRT模式为CALLER时使用。
10020
+ 注意:此字段可能返回 null,表示取不到有效值。
10021
+ */
10022
+ Destinations: Array<SRTAddressDestination>
10023
+
10024
+ /**
10025
+ * 流Id。
10026
+ 注意:此字段可能返回 null,表示取不到有效值。
10027
+ */
10028
+ StreamId: string
10029
+
10030
+ /**
10031
+ * 延迟。
10032
+ 注意:此字段可能返回 null,表示取不到有效值。
10033
+ */
10034
+ Latency: number
10035
+
10036
+ /**
10037
+ * 接收延迟。
10038
+ 注意:此字段可能返回 null,表示取不到有效值。
10039
+ */
10040
+ RecvLatency: number
10041
+
10042
+ /**
10043
+ * 对端延迟。
10044
+ 注意:此字段可能返回 null,表示取不到有效值。
10045
+ */
10046
+ PeerLatency: number
10047
+
10048
+ /**
10049
+ * 对端空闲超时时间。
10050
+ 注意:此字段可能返回 null,表示取不到有效值。
10051
+ */
10052
+ PeerIdleTimeout: number
8245
10053
 
8246
- /**
8247
- * DescribeTasks返回参数结构体
8248
- */
8249
- export interface DescribeTasksResponse {
8250
10054
  /**
8251
- * 任务概要列表。
8252
- */
8253
- TaskSet: Array<TaskSimpleInfo>
10055
+ * 加密密钥。
10056
+ 注意:此字段可能返回 null,表示取不到有效值。
10057
+ */
10058
+ Passphrase: string
8254
10059
 
8255
10060
  /**
8256
- * 翻页标识,当请求未返回所有数据,该字段表示下一条记录的 ID。当该字段为空字符串,说明已无更多数据。
8257
- */
8258
- ScrollToken: string
10061
+ * 加密密钥长度。
10062
+ 注意:此字段可能返回 null,表示取不到有效值。
10063
+ */
10064
+ PbKeyLen: number
8259
10065
 
8260
10066
  /**
8261
- * 符合过滤条件的记录总数。
8262
- */
8263
- TotalCount: number
10067
+ * SRT模式。
10068
+ 注意:此字段可能返回 null,表示取不到有效值。
10069
+ */
10070
+ Mode: string
8264
10071
 
8265
10072
  /**
8266
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8267
- */
8268
- RequestId?: string
10073
+ * 服务器监听地址,SRT模式为LISTENER时使用。
10074
+ 注意:此字段可能返回 null,表示取不到有效值。
10075
+ */
10076
+ SourceAddresses: Array<OutputSRTSourceAddressResp>
8269
10077
  }
8270
10078
 
8271
10079
  /**
@@ -8475,6 +10283,39 @@ export interface LiveStreamAiReviewResultItem {
8475
10283
  VoicePornResultSet: Array<LiveStreamAiReviewVoicePornResult>
8476
10284
  }
8477
10285
 
10286
+ /**
10287
+ * 极速高清参数配置。
10288
+ */
10289
+ export interface TEHDConfig {
10290
+ /**
10291
+ * 极速高清类型,可选值:
10292
+ <li>TEHD-100:极速高清-100。</li>
10293
+ 不填代表不启用极速高清。
10294
+ */
10295
+ Type: string
10296
+
10297
+ /**
10298
+ * 视频码率上限,当 Type 指定了极速高清类型时有效。
10299
+ 不填或填0表示不设视频码率上限。
10300
+ */
10301
+ MaxVideoBitrate?: number
10302
+ }
10303
+
10304
+ /**
10305
+ * 创建输入的RTP配置信息。
10306
+ */
10307
+ export interface CreateInputRTPSettings {
10308
+ /**
10309
+ * 默认为“none”,可选值['none']。
10310
+ */
10311
+ FEC?: string
10312
+
10313
+ /**
10314
+ * 空闲超时时间,默认5000,单位ms,范围为[1000, 10000]。
10315
+ */
10316
+ IdleTimeout?: number
10317
+ }
10318
+
8478
10319
  /**
8479
10320
  * 任务概要信息
8480
10321
  */
@@ -8818,6 +10659,56 @@ export interface CreateAIAnalysisTemplateRequest {
8818
10659
  FrameTagConfigure?: FrameTagConfigureInfo
8819
10660
  }
8820
10661
 
10662
+ /**
10663
+ * 创建输入的配置信息。
10664
+ */
10665
+ export interface CreateInput {
10666
+ /**
10667
+ * 输入名称,可填大小写、数字和下划线,长度为[1, 32]。
10668
+ */
10669
+ InputName: string
10670
+
10671
+ /**
10672
+ * 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL]。
10673
+ */
10674
+ Protocol: string
10675
+
10676
+ /**
10677
+ * 输入描述,长度为[0, 255]。
10678
+ */
10679
+ Description?: string
10680
+
10681
+ /**
10682
+ * 输入的IP白名单,格式为CIDR。
10683
+ */
10684
+ AllowIpList?: Array<string>
10685
+
10686
+ /**
10687
+ * 输入的SRT配置信息。
10688
+ */
10689
+ SRTSettings?: CreateInputSRTSettings
10690
+
10691
+ /**
10692
+ * 输入的RTP配置信息。
10693
+ */
10694
+ RTPSettings?: CreateInputRTPSettings
10695
+
10696
+ /**
10697
+ * 输入的主备开关,可选[OPEN|CLOSE],默认为CLOSE。
10698
+ */
10699
+ FailOver?: string
10700
+
10701
+ /**
10702
+ * 输入的RTMP_PULL配置信息。
10703
+ */
10704
+ RTMPPullSettings?: CreateInputRTMPPullSettings
10705
+
10706
+ /**
10707
+ * 输入的RTSP_PULL配置信息。
10708
+ */
10709
+ RTSPPullSettings?: CreateInputRTSPPullSettings
10710
+ }
10711
+
8821
10712
  /**
8822
10713
  * 内容审核涉敏任务输入参数类型
8823
10714
  */
@@ -9163,35 +11054,39 @@ export interface ModifyAIAnalysisTemplateRequest {
9163
11054
  }
9164
11055
 
9165
11056
  /**
9166
- * 直播处理任务信息
11057
+ * 查询Flow的配置信息。
9167
11058
  */
9168
- export interface LiveStreamProcessTask {
11059
+ export interface DescribeFlow {
9169
11060
  /**
9170
- * 媒体处理任务 ID
11061
+ * 流Id
9171
11062
  */
9172
- TaskId: string
11063
+ FlowId: string
9173
11064
 
9174
11065
  /**
9175
- * 任务流状态,取值:
9176
- <li>PROCESSING:处理中;</li>
9177
- <li>FINISH:已完成。</li>
9178
- */
9179
- Status: string
11066
+ * 流名称。
11067
+ */
11068
+ FlowName: string
9180
11069
 
9181
11070
  /**
9182
- * 错误码,0 表示成功,其他值表示失败。
11071
+ * 流状态,目前有IDLE/RUNNING。
9183
11072
  */
9184
- ErrCode: number
11073
+ State: string
9185
11074
 
9186
11075
  /**
9187
- * 错误信息。
11076
+ * 最大带宽值。
9188
11077
  */
9189
- Message: string
11078
+ MaxBandwidth: number
9190
11079
 
9191
11080
  /**
9192
- * 直播流 URL。
11081
+ * 输入组。
9193
11082
  */
9194
- Url: string
11083
+ InputGroup: Array<DescribeInput>
11084
+
11085
+ /**
11086
+ * 输出组。
11087
+ 注意:此字段可能返回 null,表示取不到有效值。
11088
+ */
11089
+ OutputGroup: Array<DescribeOutput>
9195
11090
  }
9196
11091
 
9197
11092
  /**
@@ -9235,9 +11130,14 @@ export interface DescribeSampleSnapshotTemplatesResponse {
9235
11130
  }
9236
11131
 
9237
11132
  /**
9238
- * ModifyWordSample返回参数结构体
11133
+ * DescribeMediaMetaData返回参数结构体
9239
11134
  */
9240
- export interface ModifyWordSampleResponse {
11135
+ export interface DescribeMediaMetaDataResponse {
11136
+ /**
11137
+ * 媒体元信息。
11138
+ */
11139
+ MetaData?: MediaMetaData
11140
+
9241
11141
  /**
9242
11142
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9243
11143
  */
@@ -9245,93 +11145,23 @@ export interface ModifyWordSampleResponse {
9245
11145
  }
9246
11146
 
9247
11147
  /**
9248
- * 内容审核结果
11148
+ * DescribeStreamLinkFlowRealtimeStatus返回参数结构体
9249
11149
  */
9250
- export interface AiContentReviewResult {
9251
- /**
9252
- * 任务的类型,可以取的值有:
9253
- <li>Porn:图片鉴黄</li>
9254
- <li>Terrorism:图片敏感</li>
9255
- <li>Political:图片敏感</li>
9256
- <li>Porn.Asr:Asr 文字鉴黄</li>
9257
- <li>Porn.Ocr:Ocr 文字鉴黄</li>
9258
- <li>Political.Asr:Asr 文字敏感</li>
9259
- <li>Political.Ocr:Ocr 文字敏感</li>
9260
- <li>Terrorism.Ocr:Ocr 文字敏感</li>
9261
- <li>Prohibited.Asr:Asr 文字鉴违禁</li>
9262
- <li>Prohibited.Ocr:Ocr 文字鉴违禁</li>
9263
- */
9264
- Type: string
9265
-
11150
+ export interface DescribeStreamLinkFlowRealtimeStatusResponse {
9266
11151
  /**
9267
- * 采样频率,即对视频每秒截取进行审核的帧数。
11152
+ * 查询时间,单位s。
9268
11153
  */
9269
- SampleRate: number
11154
+ Timestamp: number
9270
11155
 
9271
11156
  /**
9272
- * 审核的视频时长,单位:秒。
11157
+ * 实时数据信息列表。
9273
11158
  */
9274
- Duration: number
9275
-
9276
- /**
9277
- * 视频内容审核智能画面鉴黄任务的查询结果,当任务类型为 Porn 时有效。
9278
- 注意:此字段可能返回 null,表示取不到有效值。
9279
- */
9280
- PornTask: AiReviewTaskPornResult
9281
-
9282
- /**
9283
- * 视频内容审核智能画面敏感任务的查询结果,当任务类型为 Terrorism 时有效。
9284
- 注意:此字段可能返回 null,表示取不到有效值。
9285
- */
9286
- TerrorismTask: AiReviewTaskTerrorismResult
9287
-
9288
- /**
9289
- * 视频内容审核智能画面敏感任务的查询结果,当任务类型为 Political 时有效。
9290
- 注意:此字段可能返回 null,表示取不到有效值。
9291
- */
9292
- PoliticalTask: AiReviewTaskPoliticalResult
9293
-
9294
- /**
9295
- * 视频内容审核 Asr 文字鉴黄任务的查询结果,当任务类型为 Porn.Asr 时有效。
9296
- 注意:此字段可能返回 null,表示取不到有效值。
9297
- */
9298
- PornAsrTask: AiReviewTaskPornAsrResult
9299
-
9300
- /**
9301
- * 视频内容审核 Ocr 文字鉴黄任务的查询结果,当任务类型为 Porn.Ocr 时有效。
9302
- 注意:此字段可能返回 null,表示取不到有效值。
9303
- */
9304
- PornOcrTask: AiReviewTaskPornOcrResult
9305
-
9306
- /**
9307
- * 视频内容审核 Asr 文字敏感任务的查询结果,当任务类型为 Political.Asr 时有效。
9308
- 注意:此字段可能返回 null,表示取不到有效值。
9309
- */
9310
- PoliticalAsrTask: AiReviewTaskPoliticalAsrResult
9311
-
9312
- /**
9313
- * 视频内容审核 Ocr 文字敏感任务的查询结果,当任务类型为 Political.Ocr 时有效。
9314
- 注意:此字段可能返回 null,表示取不到有效值。
9315
- */
9316
- PoliticalOcrTask: AiReviewTaskPoliticalOcrResult
9317
-
9318
- /**
9319
- * 视频内容审核 Ocr 文字敏感任务的查询结果,当任务类型为 Terrorism.Ocr 时有效。
9320
- 注意:此字段可能返回 null,表示取不到有效值。
9321
- */
9322
- TerrorismOcrTask: AiReviewTaskTerrorismOcrResult
9323
-
9324
- /**
9325
- * 视频内容审核 Asr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Asr 时有效。
9326
- 注意:此字段可能返回 null,表示取不到有效值。
9327
- */
9328
- ProhibitedAsrTask: AiReviewTaskProhibitedAsrResult
11159
+ Datas: Array<FlowRealtimeStatusItem>
9329
11160
 
9330
11161
  /**
9331
- * 视频内容审核 Ocr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Ocr 时有效。
9332
- 注意:此字段可能返回 null,表示取不到有效值。
9333
- */
9334
- ProhibitedOcrTask: AiReviewTaskProhibitedOcrResult
11162
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11163
+ */
11164
+ RequestId?: string
9335
11165
  }
9336
11166
 
9337
11167
  /**
@@ -9370,6 +11200,31 @@ export interface TerrorismImgReviewTemplateInfo {
9370
11200
  ReviewConfidence?: number
9371
11201
  }
9372
11202
 
11203
+ /**
11204
+ * 传输流媒体的音频数据。
11205
+ */
11206
+ export interface FlowMediaAudio {
11207
+ /**
11208
+ * 帧率。
11209
+ */
11210
+ Fps: number
11211
+
11212
+ /**
11213
+ * 码率,单位是bps。
11214
+ */
11215
+ Rate: number
11216
+
11217
+ /**
11218
+ * 音频Pid。
11219
+ */
11220
+ Pid: number
11221
+
11222
+ /**
11223
+ * 标志同一次推流。
11224
+ */
11225
+ SessionId: string
11226
+ }
11227
+
9373
11228
  /**
9374
11229
  * DescribeTranscodeTemplates请求参数结构体
9375
11230
  */
@@ -9471,61 +11326,73 @@ export interface DescribeWatermarkTemplatesResponse {
9471
11326
  }
9472
11327
 
9473
11328
  /**
9474
- * CreateAnimatedGraphicsTemplate请求参数结构体
11329
+ * DescribeStreamLinkFlowLogs请求参数结构体
9475
11330
  */
9476
- export interface CreateAnimatedGraphicsTemplateRequest {
11331
+ export interface DescribeStreamLinkFlowLogsRequest {
9477
11332
  /**
9478
- * 帧率,取值范围:[1, 30],单位:Hz
11333
+ * 传输流Id
9479
11334
  */
9480
- Fps: number
11335
+ FlowId: string
9481
11336
 
9482
11337
  /**
9483
- * 动图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
9484
- <li>当 Width、Height 均为 0,则分辨率同源;</li>
9485
- <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
9486
- <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
9487
- <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
9488
- 默认值:0。
11338
+ * 统计的开始时间,默认为前一小时,最多支持查询近7天。
11339
+ UTC时间,如'2020-01-01T12:00:00Z'。
9489
11340
  */
9490
- Width?: number
11341
+ StartTime: string
9491
11342
 
9492
11343
  /**
9493
- * 动图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
9494
- <li>当 Width、Height 均为 0,则分辨率同源;</li>
9495
- <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
9496
- <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
9497
- <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
9498
- 默认值:0。
11344
+ * 统计的结束时间,默认为StartTime后一小时,最多支持查询24小时的数据。
11345
+ UTC时间,如'2020-01-01T12:00:00Z'。
9499
11346
  */
9500
- Height?: number
11347
+ EndTime: string
9501
11348
 
9502
11349
  /**
9503
- * 分辨率自适应,可选值:
9504
- <li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
9505
- <li>close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。</li>
9506
- 默认值:open。
9507
- */
9508
- ResolutionAdaptive?: string
11350
+ * 输入或输出类型,可选[input|output]。
11351
+ */
11352
+ Type: Array<string>
9509
11353
 
9510
11354
  /**
9511
- * 动图格式,取值为 gif 和 webp。默认为 gif
11355
+ * 主通道或备通道,可选[0|1]
9512
11356
  */
9513
- Format?: string
11357
+ Pipeline: Array<string>
11358
+
11359
+ /**
11360
+ * 每页大小,默认100,范围为[1, 1000]。
11361
+ */
11362
+ PageSize: number
11363
+
11364
+ /**
11365
+ * 按Timestamp升序或降序排序,默认降序,可选[desc|asc]。
11366
+ */
11367
+ SortType?: string
11368
+
11369
+ /**
11370
+ * 页码,默认1,范围为[1, 1000]。
11371
+ */
11372
+ PageNum?: number
11373
+ }
9514
11374
 
11375
+ /**
11376
+ * 查询输出的RTMP配置信息。
11377
+ */
11378
+ export interface DescribeOutputRTMPSettings {
9515
11379
  /**
9516
- * 图片质量,取值范围:[1, 100],默认值为 75。
9517
- */
9518
- Quality?: number
11380
+ * 空闲超时时间。
11381
+ 注意:此字段可能返回 null,表示取不到有效值。
11382
+ */
11383
+ IdleTimeout: number
9519
11384
 
9520
11385
  /**
9521
- * 转动图模板名称,长度限制:64 个字符。
9522
- */
9523
- Name?: string
11386
+ * Chunk大小。
11387
+ 注意:此字段可能返回 null,表示取不到有效值。
11388
+ */
11389
+ ChunkSize: number
9524
11390
 
9525
11391
  /**
9526
- * 模板描述信息,长度限制:256 个字符。
9527
- */
9528
- Comment?: string
11392
+ * 转推RTMP的目标地址信息列表。
11393
+ 注意:此字段可能返回 null,表示取不到有效值。
11394
+ */
11395
+ Destinations: Array<RTMPAddressDestination>
9529
11396
  }
9530
11397
 
9531
11398
  /**
@@ -9555,6 +11422,41 @@ export interface ExecuteFunctionRequest {
9555
11422
  FunctionArg: string
9556
11423
  }
9557
11424
 
11425
+ /**
11426
+ * DescribeStreamLinkFlowLogs返回参数结构体
11427
+ */
11428
+ export interface DescribeStreamLinkFlowLogsResponse {
11429
+ /**
11430
+ * 日志信息列表。
11431
+ */
11432
+ Infos: Array<FlowLogInfo>
11433
+
11434
+ /**
11435
+ * 当前页码。
11436
+ */
11437
+ PageNum: number
11438
+
11439
+ /**
11440
+ * 每页大小。
11441
+ */
11442
+ PageSize: number
11443
+
11444
+ /**
11445
+ * 总数量。
11446
+ */
11447
+ TotalNum: number
11448
+
11449
+ /**
11450
+ * 总页数。
11451
+ */
11452
+ TotalPage: number
11453
+
11454
+ /**
11455
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11456
+ */
11457
+ RequestId?: string
11458
+ }
11459
+
9558
11460
  /**
9559
11461
  * ModifyPersonSample返回参数结构体
9560
11462
  */
@@ -9691,6 +11593,64 @@ export interface PornConfigureInfo {
9691
11593
  OcrReviewInfo?: PornOcrReviewTemplateInfo
9692
11594
  }
9693
11595
 
11596
+ /**
11597
+ * 修改输入信息的参数。
11598
+ */
11599
+ export interface ModifyInput {
11600
+ /**
11601
+ * 输入Id。
11602
+ */
11603
+ InputId: string
11604
+
11605
+ /**
11606
+ * 输入名称。
11607
+ */
11608
+ InputName: string
11609
+
11610
+ /**
11611
+ * 输入描述。
11612
+ */
11613
+ Description: string
11614
+
11615
+ /**
11616
+ * 允许的推流的IP,CIDR格式。
11617
+ */
11618
+ AllowIpList: Array<string>
11619
+
11620
+ /**
11621
+ * SRT的配置信息。
11622
+ */
11623
+ SRTSettings: CreateInputSRTSettings
11624
+
11625
+ /**
11626
+ * RTP的配置信息。
11627
+ */
11628
+ RTPSettings: CreateInputRTPSettings
11629
+
11630
+ /**
11631
+ * 输入的协议,可选[SRT|RTP|RTMP]。
11632
+ 当输出包含RTP时,输入只能是RTP。
11633
+ 当输出包含RTMP时,输入可以是SRT/RTMP。
11634
+ 当输出包含SRT时,输入只能是SRT。
11635
+ */
11636
+ Protocol?: string
11637
+
11638
+ /**
11639
+ * 输入的主备开关,可选[OPEN|CLOSE]。
11640
+ */
11641
+ FailOver?: string
11642
+
11643
+ /**
11644
+ * RTMP_PULL的配置信息。
11645
+ */
11646
+ RTMPPullSettings?: CreateInputRTMPPullSettings
11647
+
11648
+ /**
11649
+ * RTSP_PULL的配置信息。
11650
+ */
11651
+ RTSPPullSettings?: CreateInputRTSPPullSettings
11652
+ }
11653
+
9694
11654
  /**
9695
11655
  * 视频降噪配置
9696
11656
  */
@@ -9968,6 +11928,31 @@ export interface WorkflowTask {
9968
11928
  AiRecognitionResultSet: Array<AiRecognitionResult>
9969
11929
  }
9970
11930
 
11931
+ /**
11932
+ * 传输流媒体的视频数据。
11933
+ */
11934
+ export interface FlowMediaVideo {
11935
+ /**
11936
+ * 帧率。
11937
+ */
11938
+ Fps: number
11939
+
11940
+ /**
11941
+ * 码率,单位是bps。
11942
+ */
11943
+ Rate: number
11944
+
11945
+ /**
11946
+ * 视频Pid。
11947
+ */
11948
+ Pid: number
11949
+
11950
+ /**
11951
+ * 标志同一次推流。
11952
+ */
11953
+ SessionId: string
11954
+ }
11955
+
9971
11956
  /**
9972
11957
  * 内容审核 Asr 文字鉴黄任务结果类型
9973
11958
  */
@@ -10024,6 +12009,16 @@ export interface EditMediaFileInfo {
10024
12009
  EndTimeOffset?: number
10025
12010
  }
10026
12011
 
12012
+ /**
12013
+ * 媒体处理 URL 对象信息。
12014
+ */
12015
+ export interface UrlInputInfo {
12016
+ /**
12017
+ * 视频的 URL。
12018
+ */
12019
+ Url: string
12020
+ }
12021
+
10027
12022
  /**
10028
12023
  * 人脸识别任务控制参数
10029
12024
  */
@@ -10272,24 +12267,30 @@ export interface DescribeAnimatedGraphicsTemplatesResponse {
10272
12267
  }
10273
12268
 
10274
12269
  /**
10275
- * 智能按帧标签结果信息
12270
+ * DescribeSampleSnapshotTemplates请求参数结构体
10276
12271
  */
10277
- export interface MediaAiAnalysisFrameTagItem {
12272
+ export interface DescribeSampleSnapshotTemplatesRequest {
10278
12273
  /**
10279
- * 按帧标签名称。
12274
+ * 采样截图模板唯一标识过滤条件,数组长度限制:100。
10280
12275
  */
10281
- Tag: string
12276
+ Definitions?: Array<number>
10282
12277
 
10283
12278
  /**
10284
- * 按帧标签名称的分类列表,CategorySet.N 表示第 N+1级分类。
10285
- 比如 Tag 为“塔楼”时,CategorySet 包含两个元素:CategorySet.0 为“场景”,CategorySet.1为 “建筑”,表示按帧标签为“塔楼”,且第1级分类是“场景”,第2级分类是“建筑”。
10286
- */
10287
- CategorySet: Array<string>
12279
+ * 分页偏移量,默认值:0。
12280
+ */
12281
+ Offset?: number
10288
12282
 
10289
12283
  /**
10290
- * 按帧标签的可信度,取值范围是 0 到 100。
12284
+ * 返回记录条数,默认值:10,最大值:100。
10291
12285
  */
10292
- Confidence: number
12286
+ Limit?: number
12287
+
12288
+ /**
12289
+ * 模板类型过滤条件,可选值:
12290
+ <li>Preset:系统预置模板;</li>
12291
+ <li>Custom:用户自定义模板。</li>
12292
+ */
12293
+ Type?: string
10293
12294
  }
10294
12295
 
10295
12296
  /**
@@ -10436,39 +12437,103 @@ export interface CreateAnimatedGraphicsTemplateResponse {
10436
12437
  }
10437
12438
 
10438
12439
  /**
10439
- * 智能分类任务结果类型
12440
+ * 采样截图模板详情
10440
12441
  */
10441
- export interface AiAnalysisTaskClassificationResult {
12442
+ export interface SampleSnapshotTemplate {
10442
12443
  /**
10443
- * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
12444
+ * 采样截图模板唯一标识。
10444
12445
  */
10445
- Status: string
12446
+ Definition: number
10446
12447
 
10447
12448
  /**
10448
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](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) 列表。
12449
+ * 模板类型,取值范围:
12450
+ <li>Preset:系统预置模板;</li>
12451
+ <li>Custom:用户自定义模板。</li>
12452
+ */
12453
+ Type: string
12454
+
12455
+ /**
12456
+ * 采样截图模板名称。
10449
12457
  */
10450
- ErrCodeExt: string
12458
+ Name: string
10451
12459
 
10452
12460
  /**
10453
- * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
12461
+ * 模板描述信息。
10454
12462
  */
10455
- ErrCode: number
12463
+ Comment: string
10456
12464
 
10457
12465
  /**
10458
- * 错误信息。
12466
+ * 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
12467
+ <li>当 Width、Height 均为 0,则分辨率同源;</li>
12468
+ <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
12469
+ <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
12470
+ <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
12471
+ 默认值:0。
12472
+ */
12473
+ Width: number
12474
+
12475
+ /**
12476
+ * 截图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
12477
+ <li>当 Width、Height 均为 0,则分辨率同源;</li>
12478
+ <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
12479
+ <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
12480
+ <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
12481
+ 默认值:0。
12482
+ */
12483
+ Height: number
12484
+
12485
+ /**
12486
+ * 分辨率自适应,可选值:
12487
+ <li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
12488
+ <li>close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。</li>
12489
+ 默认值:open。
12490
+ */
12491
+ ResolutionAdaptive: string
12492
+
12493
+ /**
12494
+ * 图片格式。
10459
12495
  */
10460
- Message: string
12496
+ Format: string
10461
12497
 
10462
12498
  /**
10463
- * 智能分类任务输入。
12499
+ * 采样截图类型。
10464
12500
  */
10465
- Input: AiAnalysisTaskClassificationInput
12501
+ SampleType: string
10466
12502
 
10467
12503
  /**
10468
- * 智能分类任务输出。
10469
- 注意:此字段可能返回 null,表示取不到有效值。
12504
+ * 采样间隔。
12505
+ */
12506
+ SampleInterval: number
12507
+
12508
+ /**
12509
+ * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
12510
+ */
12511
+ CreateTime: string
12512
+
12513
+ /**
12514
+ * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
12515
+ */
12516
+ UpdateTime: string
12517
+
12518
+ /**
12519
+ * 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
12520
+ <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
12521
+ <li>black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
12522
+ <li>white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。</li>
12523
+ <li>gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊。</li>
12524
+ 默认值:black 。
10470
12525
  */
10471
- Output: AiAnalysisTaskClassificationOutput
12526
+ FillType: string
12527
+ }
12528
+
12529
+ /**
12530
+ * 创建的输入RTSP拉流源站配置信息。
12531
+ */
12532
+ export interface RTSPPullSourceAddress {
12533
+ /**
12534
+ * RTSP源站的Url地址。
12535
+ */
12536
+ Url: string
10472
12537
  }
10473
12538
 
10474
12539
  /**
@@ -10638,6 +12703,48 @@ export interface AiRecognitionTaskFaceResultItem {
10638
12703
  Url: string
10639
12704
  }
10640
12705
 
12706
+ /**
12707
+ * DescribeStreamLinkFlowMediaStatistics请求参数结构体
12708
+ */
12709
+ export interface DescribeStreamLinkFlowMediaStatisticsRequest {
12710
+ /**
12711
+ * 传输流ID。
12712
+ */
12713
+ FlowId: string
12714
+
12715
+ /**
12716
+ * 输入或输出类型,可选[input|output]。
12717
+ */
12718
+ Type: string
12719
+
12720
+ /**
12721
+ * 输入或输出Id。
12722
+ */
12723
+ InputOutputId: string
12724
+
12725
+ /**
12726
+ * 主通道或备通道,可选[0|1]。
12727
+ */
12728
+ Pipeline: string
12729
+
12730
+ /**
12731
+ * 查询间隔,可选[5s|1min|5min|15min]。
12732
+ */
12733
+ Period: string
12734
+
12735
+ /**
12736
+ * 统计的开始时间,默认为前一小时,最多支持查询近7天。
12737
+ UTC时间,如'2020-01-01T12:00:00Z'。
12738
+ */
12739
+ StartTime: string
12740
+
12741
+ /**
12742
+ * 统计的结束时间,默认为StartTime后一小时,最多支持查询24小时的数据。
12743
+ UTC时间,如'2020-01-01T12:00:00Z'。
12744
+ */
12745
+ EndTime: string
12746
+ }
12747
+
10641
12748
  /**
10642
12749
  * 智能分类任务输入类型
10643
12750
  */
@@ -10648,6 +12755,16 @@ export interface AiAnalysisTaskCoverInput {
10648
12755
  Definition: number
10649
12756
  }
10650
12757
 
12758
+ /**
12759
+ * 地区信息。
12760
+ */
12761
+ export interface RegionInfo {
12762
+ /**
12763
+ * 地区名称。
12764
+ */
12765
+ Name: string
12766
+ }
12767
+
10651
12768
  /**
10652
12769
  * 翻译结果。
10653
12770
  */
@@ -10709,6 +12826,16 @@ export interface DeleteWatermarkTemplateResponse {
10709
12826
  RequestId?: string
10710
12827
  }
10711
12828
 
12829
+ /**
12830
+ * 查询输出的RTSP拉流URL信息。
12831
+ */
12832
+ export interface DescribeOutputRTSPPullServerUrl {
12833
+ /**
12834
+ * RTSP拉流地址的Url。
12835
+ */
12836
+ Url: string
12837
+ }
12838
+
10712
12839
  /**
10713
12840
  * 低光照增强配置
10714
12841
  */