tencentcloud-sdk-nodejs-vod 4.0.389 → 4.0.433
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6354 -0
- package/README.md +3 -3
- package/SERVICE_CHANGELOG.md +4307 -153
- package/package.json +1 -1
- package/products.md +100 -98
- package/src/services/vod/v20180717/vod_client.ts +122 -57
- package/src/services/vod/v20180717/vod_models.ts +788 -120
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +55 -33
- package/tencentcloud/services/vod/v20180717/vod_client.js +67 -37
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +687 -114
|
@@ -567,6 +567,14 @@ export interface AdaptiveDynamicStreamingTemplate {
|
|
|
567
567
|
*/
|
|
568
568
|
DrmType: string
|
|
569
569
|
|
|
570
|
+
/**
|
|
571
|
+
* DRM 的密钥提供商,取值范围:
|
|
572
|
+
<li>SDMC:华曦达;</li>
|
|
573
|
+
<li>VOD:云点播。</li>
|
|
574
|
+
默认值为 VOD 。
|
|
575
|
+
*/
|
|
576
|
+
DrmKeyProvider: string
|
|
577
|
+
|
|
570
578
|
/**
|
|
571
579
|
* 自适应转码输入流参数信息,最多输入10路流。
|
|
572
580
|
*/
|
|
@@ -659,12 +667,17 @@ export interface AiRecognitionTaskAsrFullTextResultOutput {
|
|
|
659
667
|
SegmentSetFileUrl: string
|
|
660
668
|
|
|
661
669
|
/**
|
|
662
|
-
* 语音全文识别片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)
|
|
670
|
+
* 语音全文识别片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
663
671
|
*/
|
|
664
672
|
SegmentSetFileUrlExpireTime: string
|
|
665
673
|
|
|
666
674
|
/**
|
|
667
|
-
*
|
|
675
|
+
* 生成的字幕列表,对应 [语音全文识别任务控制参数](https://cloud.tencent.com/document/api/266/31773#AsrFullTextConfigureInfo) SubtitleFormats。
|
|
676
|
+
*/
|
|
677
|
+
SubtitleSet: Array<AiRecognitionTaskAsrFullTextResultOutputSubtitleItem>
|
|
678
|
+
|
|
679
|
+
/**
|
|
680
|
+
* 生成的字幕文件 Url,对应 [语音全文识别任务控制参数](https://cloud.tencent.com/document/api/266/31773#AsrFullTextConfigureInfo) SubtitleFormat。
|
|
668
681
|
*/
|
|
669
682
|
SubtitleUrl: string
|
|
670
683
|
}
|
|
@@ -1796,6 +1809,21 @@ export interface CoverConfigureInfo {
|
|
|
1796
1809
|
Switch: string
|
|
1797
1810
|
}
|
|
1798
1811
|
|
|
1812
|
+
/**
|
|
1813
|
+
* DescribeClientUploadAccelerationUsageData返回参数结构体
|
|
1814
|
+
*/
|
|
1815
|
+
export interface DescribeClientUploadAccelerationUsageDataResponse {
|
|
1816
|
+
/**
|
|
1817
|
+
* 客户端上传加速统计数据。
|
|
1818
|
+
*/
|
|
1819
|
+
ClientUploadAccelerationUsageDataSet: Array<StatDataItem>
|
|
1820
|
+
|
|
1821
|
+
/**
|
|
1822
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1823
|
+
*/
|
|
1824
|
+
RequestId?: string
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1799
1827
|
/**
|
|
1800
1828
|
* ComposeMedia请求参数结构体
|
|
1801
1829
|
*/
|
|
@@ -2006,6 +2034,14 @@ export interface CreateAdaptiveDynamicStreamingTemplateRequest {
|
|
|
2006
2034
|
*/
|
|
2007
2035
|
DrmType?: string
|
|
2008
2036
|
|
|
2037
|
+
/**
|
|
2038
|
+
* DRM 的密钥提供商,取值范围:
|
|
2039
|
+
<li>SDMC:华曦达;</li>
|
|
2040
|
+
<li>VOD:云点播。</li>
|
|
2041
|
+
默认为 VOD 。
|
|
2042
|
+
*/
|
|
2043
|
+
DrmKeyProvider?: string
|
|
2044
|
+
|
|
2009
2045
|
/**
|
|
2010
2046
|
* 是否禁止视频低码率转高码率,取值范围:
|
|
2011
2047
|
<li>0:否,</li>
|
|
@@ -2510,6 +2546,63 @@ export interface CreatePersonSampleRequest {
|
|
|
2510
2546
|
Tags?: Array<string>
|
|
2511
2547
|
}
|
|
2512
2548
|
|
|
2549
|
+
/**
|
|
2550
|
+
* 智能去除水印任务信息,仅当 TaskType 为 RemoveWatermark,该字段有值。
|
|
2551
|
+
*/
|
|
2552
|
+
export interface RemoveWatermarkTask {
|
|
2553
|
+
/**
|
|
2554
|
+
* 任务 ID 。
|
|
2555
|
+
*/
|
|
2556
|
+
TaskId: string
|
|
2557
|
+
|
|
2558
|
+
/**
|
|
2559
|
+
* 任务流状态,取值:
|
|
2560
|
+
<li>PROCESSING:处理中;</li>
|
|
2561
|
+
<li>FINISH:已完成。</li>
|
|
2562
|
+
*/
|
|
2563
|
+
Status: string
|
|
2564
|
+
|
|
2565
|
+
/**
|
|
2566
|
+
* 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
|
|
2567
|
+
*/
|
|
2568
|
+
ErrCodeExt: string
|
|
2569
|
+
|
|
2570
|
+
/**
|
|
2571
|
+
* 错误码,0 表示成功,其他值表示失败:
|
|
2572
|
+
<li>40000:输入参数不合法,请检查输入参数;</li>
|
|
2573
|
+
<li>60000:源文件错误(如视频数据损坏),请确认源文件是否正常;</li>
|
|
2574
|
+
<li>70000:内部服务错误,建议重试。</li>
|
|
2575
|
+
*/
|
|
2576
|
+
ErrCode: number
|
|
2577
|
+
|
|
2578
|
+
/**
|
|
2579
|
+
* 错误信息。
|
|
2580
|
+
*/
|
|
2581
|
+
Message: string
|
|
2582
|
+
|
|
2583
|
+
/**
|
|
2584
|
+
* 智能去除水印任务的输入。
|
|
2585
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2586
|
+
*/
|
|
2587
|
+
Input: RemoveWaterMarkTaskInput
|
|
2588
|
+
|
|
2589
|
+
/**
|
|
2590
|
+
* 智能去除水印任务的输出。
|
|
2591
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2592
|
+
*/
|
|
2593
|
+
Output: RemoveWaterMarkTaskOutput
|
|
2594
|
+
|
|
2595
|
+
/**
|
|
2596
|
+
* 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
|
|
2597
|
+
*/
|
|
2598
|
+
SessionId: string
|
|
2599
|
+
|
|
2600
|
+
/**
|
|
2601
|
+
* 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
|
|
2602
|
+
*/
|
|
2603
|
+
SessionContext: string
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2513
2606
|
/**
|
|
2514
2607
|
* 存储地域信息
|
|
2515
2608
|
*/
|
|
@@ -2995,6 +3088,26 @@ export interface ModifyVodDomainAccelerateConfigRequest {
|
|
|
2995
3088
|
SubAppId?: number
|
|
2996
3089
|
}
|
|
2997
3090
|
|
|
3091
|
+
/**
|
|
3092
|
+
* 鉴别涉及令人不适宜的信息的控制参数。
|
|
3093
|
+
*/
|
|
3094
|
+
export interface PoliticalConfigureInfoForUpdate {
|
|
3095
|
+
/**
|
|
3096
|
+
* 画面鉴别涉及令人不适宜的信息的控制参数。
|
|
3097
|
+
*/
|
|
3098
|
+
ImgReviewInfo?: PoliticalImgReviewTemplateInfoForUpdate
|
|
3099
|
+
|
|
3100
|
+
/**
|
|
3101
|
+
* 语音鉴别涉及令人不适宜的信息的控制参数。
|
|
3102
|
+
*/
|
|
3103
|
+
AsrReviewInfo?: PoliticalAsrReviewTemplateInfoForUpdate
|
|
3104
|
+
|
|
3105
|
+
/**
|
|
3106
|
+
* 文本鉴别涉及令人不适宜的信息的控制参数。
|
|
3107
|
+
*/
|
|
3108
|
+
OcrReviewInfo?: PoliticalOcrReviewTemplateInfoForUpdate
|
|
3109
|
+
}
|
|
3110
|
+
|
|
2998
3111
|
/**
|
|
2999
3112
|
* 对视频转自适应码流任务结果类型
|
|
3000
3113
|
*/
|
|
@@ -3504,7 +3617,7 @@ export interface TraceWatermarkInput {
|
|
|
3504
3617
|
/**
|
|
3505
3618
|
* 水印模板 ID。
|
|
3506
3619
|
*/
|
|
3507
|
-
Definition
|
|
3620
|
+
Definition?: number
|
|
3508
3621
|
}
|
|
3509
3622
|
|
|
3510
3623
|
/**
|
|
@@ -3529,6 +3642,93 @@ export interface PornAsrReviewTemplateInfoForUpdate {
|
|
|
3529
3642
|
ReviewConfidence?: number
|
|
3530
3643
|
}
|
|
3531
3644
|
|
|
3645
|
+
/**
|
|
3646
|
+
* 音视频审核片段。
|
|
3647
|
+
*/
|
|
3648
|
+
export interface ReviewAudioVideoSegmentItem {
|
|
3649
|
+
/**
|
|
3650
|
+
* 嫌疑片段起始的偏移时间,单位:秒。
|
|
3651
|
+
*/
|
|
3652
|
+
StartTimeOffset: number
|
|
3653
|
+
|
|
3654
|
+
/**
|
|
3655
|
+
* 嫌疑片段结束的偏移时间,单位:秒。
|
|
3656
|
+
*/
|
|
3657
|
+
EndTimeOffset: number
|
|
3658
|
+
|
|
3659
|
+
/**
|
|
3660
|
+
* 嫌疑片段涉及令人反感的信息的分数。
|
|
3661
|
+
*/
|
|
3662
|
+
Confidence: number
|
|
3663
|
+
|
|
3664
|
+
/**
|
|
3665
|
+
* 嫌疑片段鉴别涉及违规信息的结果建议,取值范围:
|
|
3666
|
+
<li>review:疑似违规,建议复审;</li>
|
|
3667
|
+
<li>block:确认违规,建议封禁。</li>
|
|
3668
|
+
*/
|
|
3669
|
+
Suggestion: string
|
|
3670
|
+
|
|
3671
|
+
/**
|
|
3672
|
+
* 嫌疑片段最可能的违规的标签,取值范围:
|
|
3673
|
+
<li>Porn:色情;</li>
|
|
3674
|
+
<li>Terrorism:暴恐;</li>
|
|
3675
|
+
<li>Political:令人不适宜的信息。</li>
|
|
3676
|
+
*/
|
|
3677
|
+
Label: string
|
|
3678
|
+
|
|
3679
|
+
/**
|
|
3680
|
+
* 当 Form 为 Image 或 Voice 时有效,表示当前标签(Label)下的二级标签。
|
|
3681
|
+
当 Form 为 Image 且 Label 为 Porn 时,取值范围:
|
|
3682
|
+
<li>porn:色情;</li>
|
|
3683
|
+
<li>vulgar:低俗。</li>
|
|
3684
|
+
|
|
3685
|
+
当 Form 为 Image 且 Label 为 Terrorism 时,取值范围:
|
|
3686
|
+
<li>guns:武器枪支;</li>
|
|
3687
|
+
<li>bloody:血腥画面;</li>
|
|
3688
|
+
<li>banners:暴恐旗帜;</li>
|
|
3689
|
+
<li> scenario:暴恐画面;</li>
|
|
3690
|
+
<li>explosion:爆炸火灾。</li>
|
|
3691
|
+
|
|
3692
|
+
当 Form 为 Image 且 Label 为 Political 时,取值范围:
|
|
3693
|
+
<li>violation_photo:违规图标;</li>
|
|
3694
|
+
<li>nation_politician:国家领导人;</li>
|
|
3695
|
+
<li>province_politician:省部级领导人;</li>
|
|
3696
|
+
<li>county_politician:市/县级领导人;</li>
|
|
3697
|
+
<li>sensitive_politician:敏感相关人物;</li>
|
|
3698
|
+
<li>foreign_politician:国外政治人物;</li>
|
|
3699
|
+
<li>sensitive_entertainment:敏感娱乐明星;</li>
|
|
3700
|
+
<li>sensitive_military:敏感军事人物。</li>
|
|
3701
|
+
|
|
3702
|
+
当 Form 为 Voice 且 Label 为 Porn 时,取值范围:
|
|
3703
|
+
<li>moan:娇喘。</li>
|
|
3704
|
+
*/
|
|
3705
|
+
SubLabel: string
|
|
3706
|
+
|
|
3707
|
+
/**
|
|
3708
|
+
* 嫌疑片段违禁的形式,取值范围:
|
|
3709
|
+
<li>Image:画面上的人物或图标;</li>
|
|
3710
|
+
<li>OCR:画面上的文字;</li>
|
|
3711
|
+
<li>ASR:语音中的文字;</li>
|
|
3712
|
+
<li>Voice:声音。</li>
|
|
3713
|
+
*/
|
|
3714
|
+
Form: string
|
|
3715
|
+
|
|
3716
|
+
/**
|
|
3717
|
+
* 当 Form 为 Image 或 OCR 时有效,表示嫌疑人物、图标或文字出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
|
|
3718
|
+
*/
|
|
3719
|
+
AreaCoordSet: Array<number>
|
|
3720
|
+
|
|
3721
|
+
/**
|
|
3722
|
+
* 当 Form 为 OCR 或 ASR 时有效,表示识别出来的 OCR 或 ASR 文本内容。
|
|
3723
|
+
*/
|
|
3724
|
+
Text: string
|
|
3725
|
+
|
|
3726
|
+
/**
|
|
3727
|
+
* 当 Form 为 OCR 或 ASR 时有效,表示嫌疑片段命中的违规关键词列表。
|
|
3728
|
+
*/
|
|
3729
|
+
KeywordSet: Array<string>
|
|
3730
|
+
}
|
|
3731
|
+
|
|
3532
3732
|
/**
|
|
3533
3733
|
* 点播文件视频转动图结果信息
|
|
3534
3734
|
*/
|
|
@@ -4399,6 +4599,23 @@ export interface LiveRealTimeClipRequest {
|
|
|
4399
4599
|
*/
|
|
4400
4600
|
Procedure?: string
|
|
4401
4601
|
|
|
4602
|
+
/**
|
|
4603
|
+
* 分类ID,用于对媒体进行分类管理,可通过 [创建分类](/document/product/266/7812) 接口,创建分类,获得分类 ID。
|
|
4604
|
+
<li>默认值:0,表示其他分类。</li>
|
|
4605
|
+
仅 IsPersistence 为 1 时有效。
|
|
4606
|
+
*/
|
|
4607
|
+
ClassId?: number
|
|
4608
|
+
|
|
4609
|
+
/**
|
|
4610
|
+
* 来源上下文,用于透传用户请求信息,[上传完成回调](/document/product/266/7830) 将返回该字段值,最长 250 个字符。仅 IsPersistence 为 1 时有效。
|
|
4611
|
+
*/
|
|
4612
|
+
SourceContext?: string
|
|
4613
|
+
|
|
4614
|
+
/**
|
|
4615
|
+
* 会话上下文,用于透传用户请求信息,当指定 Procedure 参数后,[任务流状态变更回调](/document/product/266/9636) 将返回该字段值,最长 1000 个字符。仅 IsPersistence 为 1 时有效。
|
|
4616
|
+
*/
|
|
4617
|
+
SessionContext?: string
|
|
4618
|
+
|
|
4402
4619
|
/**
|
|
4403
4620
|
* 是否需要返回剪辑后的视频元信息。0 不需要,1 需要。默认不需要。
|
|
4404
4621
|
*/
|
|
@@ -4409,6 +4626,13 @@ export interface LiveRealTimeClipRequest {
|
|
|
4409
4626
|
*/
|
|
4410
4627
|
Host?: string
|
|
4411
4628
|
|
|
4629
|
+
/**
|
|
4630
|
+
* 剪辑的直播流信息:
|
|
4631
|
+
<li>默认剪辑直播原始流。</li>
|
|
4632
|
+
<li>当StreamInfo中指定的Type为Transcoding,则剪辑TemplateId对应的直播转码流。</li>
|
|
4633
|
+
*/
|
|
4634
|
+
StreamInfo?: LiveRealTimeClipStreamInfo
|
|
4635
|
+
|
|
4412
4636
|
/**
|
|
4413
4637
|
* 系统保留字段,请勿填写。
|
|
4414
4638
|
*/
|
|
@@ -4541,6 +4765,23 @@ export interface AiReviewPornAsrTaskOutput {
|
|
|
4541
4765
|
SegmentSetFileUrlExpireTime: string
|
|
4542
4766
|
}
|
|
4543
4767
|
|
|
4768
|
+
/**
|
|
4769
|
+
* 字幕信息。
|
|
4770
|
+
*/
|
|
4771
|
+
export interface AiRecognitionTaskAsrFullTextResultOutputSubtitleItem {
|
|
4772
|
+
/**
|
|
4773
|
+
* 字幕文件格式,取值范围:
|
|
4774
|
+
<li>vtt:WebVTT 字幕文件;</li>
|
|
4775
|
+
<li>srt:SRT 字幕文件。</li>
|
|
4776
|
+
*/
|
|
4777
|
+
Format: string
|
|
4778
|
+
|
|
4779
|
+
/**
|
|
4780
|
+
* 字幕文件 Url。
|
|
4781
|
+
*/
|
|
4782
|
+
Url: string
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4544
4785
|
/**
|
|
4545
4786
|
* SimpleHlsClip返回参数结构体
|
|
4546
4787
|
*/
|
|
@@ -4560,6 +4801,11 @@ export interface SimpleHlsClipResponse {
|
|
|
4560
4801
|
*/
|
|
4561
4802
|
FileId: string
|
|
4562
4803
|
|
|
4804
|
+
/**
|
|
4805
|
+
* 剪辑固化后的视频任务流 ID。
|
|
4806
|
+
*/
|
|
4807
|
+
TaskId: string
|
|
4808
|
+
|
|
4563
4809
|
/**
|
|
4564
4810
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4565
4811
|
*/
|
|
@@ -4977,8 +5223,15 @@ export interface AsrFullTextConfigureInfoForUpdate {
|
|
|
4977
5223
|
Switch?: string
|
|
4978
5224
|
|
|
4979
5225
|
/**
|
|
4980
|
-
|
|
4981
|
-
|
|
5226
|
+
* 字幕格式列表操作信息。
|
|
5227
|
+
*/
|
|
5228
|
+
SubtitleFormatsOperation?: SubtitleFormatsOperation
|
|
5229
|
+
|
|
5230
|
+
/**
|
|
5231
|
+
* 生成的字幕文件格式,<font color='red'>填空字符串</font>表示不生成字幕文件,可选值:
|
|
5232
|
+
<li>vtt:生成 WebVTT 字幕文件;</li>
|
|
5233
|
+
<li>srt:生成 SRT 字幕文件。</li>
|
|
5234
|
+
<font color='red'>注意:此字段已废弃,建议使用 SubtitleFormatsOperation。</font>
|
|
4982
5235
|
*/
|
|
4983
5236
|
SubtitleFormat?: string
|
|
4984
5237
|
}
|
|
@@ -4993,6 +5246,21 @@ export interface DeleteHeadTailTemplateResponse {
|
|
|
4993
5246
|
RequestId?: string
|
|
4994
5247
|
}
|
|
4995
5248
|
|
|
5249
|
+
/**
|
|
5250
|
+
* RemoveWatermark返回参数结构体
|
|
5251
|
+
*/
|
|
5252
|
+
export interface RemoveWatermarkResponse {
|
|
5253
|
+
/**
|
|
5254
|
+
* 任务 ID 。
|
|
5255
|
+
*/
|
|
5256
|
+
TaskId: string
|
|
5257
|
+
|
|
5258
|
+
/**
|
|
5259
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5260
|
+
*/
|
|
5261
|
+
RequestId?: string
|
|
5262
|
+
}
|
|
5263
|
+
|
|
4996
5264
|
/**
|
|
4997
5265
|
* 视频转码任务信息,该结构仅用于对 2017 版[视频转码](https://cloud.tencent.com/document/product/266/7822)接口发起的任务。
|
|
4998
5266
|
*/
|
|
@@ -5423,7 +5691,7 @@ export interface VideoTemplateInfo {
|
|
|
5423
5691
|
ResolutionAdaptive?: string
|
|
5424
5692
|
|
|
5425
5693
|
/**
|
|
5426
|
-
* 视频流宽度(或长边)的最大值,取值范围:0 和 [128,
|
|
5694
|
+
* 视频流宽度(或长边)的最大值,取值范围:0 和 [128, 8192],单位:px。
|
|
5427
5695
|
<li>当 Width、Height 均为 0,则分辨率同源;</li>
|
|
5428
5696
|
<li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
|
|
5429
5697
|
<li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
|
|
@@ -5433,7 +5701,7 @@ export interface VideoTemplateInfo {
|
|
|
5433
5701
|
Width?: number
|
|
5434
5702
|
|
|
5435
5703
|
/**
|
|
5436
|
-
* 视频流高度(或短边)的最大值,取值范围:0 和 [128,
|
|
5704
|
+
* 视频流高度(或短边)的最大值,取值范围:0 和 [128, 8192],单位:px。
|
|
5437
5705
|
<li>当 Width、Height 均为 0,则分辨率同源;</li>
|
|
5438
5706
|
<li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
|
|
5439
5707
|
<li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
|
|
@@ -5467,6 +5735,14 @@ export interface VideoTemplateInfo {
|
|
|
5467
5735
|
当填 0 或不填时,系统将自动设置 gop 长度。
|
|
5468
5736
|
*/
|
|
5469
5737
|
Gop?: number
|
|
5738
|
+
|
|
5739
|
+
/**
|
|
5740
|
+
* 当原始视频为 HDR(High Dynamic Range)时,转码输出是否依然保持 HDR。取值范围:
|
|
5741
|
+
<li>ON: 如果原始文件是 HDR,则转码输出保持 HDR;否则转码输出为 SDR (Standard Dynamic Range)。</li>
|
|
5742
|
+
<li>OFF: 无论原始文件是 HDR 还是 SDR,转码输出均为 SDR。</li>
|
|
5743
|
+
默认值:OFF。
|
|
5744
|
+
*/
|
|
5745
|
+
PreserveHDRSwitch?: string
|
|
5470
5746
|
}
|
|
5471
5747
|
|
|
5472
5748
|
/**
|
|
@@ -6077,6 +6353,67 @@ export interface SearchMediaResponse {
|
|
|
6077
6353
|
RequestId?: string
|
|
6078
6354
|
}
|
|
6079
6355
|
|
|
6356
|
+
/**
|
|
6357
|
+
* 音视频审核任务的输出。
|
|
6358
|
+
*/
|
|
6359
|
+
export interface ReviewAudioVideoTaskOutput {
|
|
6360
|
+
/**
|
|
6361
|
+
* 音视频内容审核的结果建议,取值范围:
|
|
6362
|
+
<li>pass:建议通过;</li>
|
|
6363
|
+
<li>review:建议复审;</li>
|
|
6364
|
+
<li>block:建议封禁。</li>
|
|
6365
|
+
*/
|
|
6366
|
+
Suggestion: string
|
|
6367
|
+
|
|
6368
|
+
/**
|
|
6369
|
+
* 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违规的标签,取值范围:
|
|
6370
|
+
<li>Porn:色情;</li>
|
|
6371
|
+
<li>Terrorism:暴恐;</li>
|
|
6372
|
+
<li>Political:令人不适宜的信息。</li>
|
|
6373
|
+
*/
|
|
6374
|
+
Label: string
|
|
6375
|
+
|
|
6376
|
+
/**
|
|
6377
|
+
* 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违禁的形式,取值范围:
|
|
6378
|
+
<li>Image:画面上的人物或图标;</li>
|
|
6379
|
+
<li>OCR:画面上的文字;</li>
|
|
6380
|
+
<li>ASR:语音中的文字;</li>
|
|
6381
|
+
<li>Voice:声音。</li>
|
|
6382
|
+
*/
|
|
6383
|
+
Form: string
|
|
6384
|
+
|
|
6385
|
+
/**
|
|
6386
|
+
* 有违规信息的嫌疑的视频片段列表。
|
|
6387
|
+
<font color=red>注意</font> :该列表最多仅展示前 10个 元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
|
6388
|
+
*/
|
|
6389
|
+
SegmentSet: Array<ReviewAudioVideoSegmentItem>
|
|
6390
|
+
|
|
6391
|
+
/**
|
|
6392
|
+
* 涉及违规信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
|
6393
|
+
*/
|
|
6394
|
+
SegmentSetFileUrl: string
|
|
6395
|
+
|
|
6396
|
+
/**
|
|
6397
|
+
* 涉及违规信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
6398
|
+
*/
|
|
6399
|
+
SegmentSetFileUrlExpireTime: string
|
|
6400
|
+
}
|
|
6401
|
+
|
|
6402
|
+
/**
|
|
6403
|
+
* 智能去除水印任务的输出。
|
|
6404
|
+
*/
|
|
6405
|
+
export interface RemoveWaterMarkTaskOutput {
|
|
6406
|
+
/**
|
|
6407
|
+
* 视频 ID。
|
|
6408
|
+
*/
|
|
6409
|
+
FileId: string
|
|
6410
|
+
|
|
6411
|
+
/**
|
|
6412
|
+
* 元信息。包括大小、时长、视频流信息、音频流信息等。
|
|
6413
|
+
*/
|
|
6414
|
+
MetaData: MediaMetaData
|
|
6415
|
+
}
|
|
6416
|
+
|
|
6080
6417
|
/**
|
|
6081
6418
|
* ModifyMediaStorageClass请求参数结构体
|
|
6082
6419
|
*/
|
|
@@ -6709,41 +7046,24 @@ export interface EditMediaVideoStream {
|
|
|
6709
7046
|
}
|
|
6710
7047
|
|
|
6711
7048
|
/**
|
|
6712
|
-
*
|
|
7049
|
+
* 视频拆条输出。
|
|
6713
7050
|
*/
|
|
6714
|
-
export interface
|
|
6715
|
-
/**
|
|
6716
|
-
* 图片处理模板唯一标识。
|
|
6717
|
-
*/
|
|
6718
|
-
Definition: number
|
|
6719
|
-
|
|
7051
|
+
export interface AiRecognitionTaskSegmentResultOutput {
|
|
6720
7052
|
/**
|
|
6721
|
-
*
|
|
6722
|
-
<
|
|
6723
|
-
<li>Custom:用户自定义模板。</li>
|
|
7053
|
+
* 视频拆条片段列表。
|
|
7054
|
+
<font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
|
6724
7055
|
*/
|
|
6725
|
-
|
|
7056
|
+
SegmentSet: Array<AiRecognitionTaskSegmentSegmentItem>
|
|
6726
7057
|
|
|
6727
7058
|
/**
|
|
6728
|
-
*
|
|
6729
|
-
*/
|
|
6730
|
-
Name: string
|
|
6731
|
-
|
|
6732
|
-
/**
|
|
6733
|
-
* 模板描述信息。
|
|
7059
|
+
* 视频拆条片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
|
6734
7060
|
*/
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
/**
|
|
6738
|
-
* 图片处理操作数组,操作将以数组顺序执行。
|
|
6739
|
-
<li>长度限制:3。</li>
|
|
6740
|
-
*/
|
|
6741
|
-
Operations: Array<ImageOperation>
|
|
7061
|
+
SegmentSetFileUrl: string
|
|
6742
7062
|
|
|
6743
7063
|
/**
|
|
6744
|
-
*
|
|
7064
|
+
* 视频拆条片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
6745
7065
|
*/
|
|
6746
|
-
|
|
7066
|
+
SegmentSetFileUrlExpireTime: string
|
|
6747
7067
|
}
|
|
6748
7068
|
|
|
6749
7069
|
/**
|
|
@@ -6990,6 +7310,33 @@ export interface SimpleHlsClipRequest {
|
|
|
6990
7310
|
* 是否固化。0 不固化,1 固化。默认不固化。
|
|
6991
7311
|
*/
|
|
6992
7312
|
IsPersistence?: number
|
|
7313
|
+
|
|
7314
|
+
/**
|
|
7315
|
+
* 剪辑固化后的视频存储过期时间。格式参照 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。填“9999-12-31T23:59:59Z”表示永不过期。过期后该媒体文件及其相关资源(转码结果、雪碧图等)将被永久删除。仅 IsPersistence 为 1 时有效,默认剪辑固化的视频永不过期。
|
|
7316
|
+
*/
|
|
7317
|
+
ExpireTime?: string
|
|
7318
|
+
|
|
7319
|
+
/**
|
|
7320
|
+
* 剪辑固化后的视频点播任务流处理,详见[上传指定任务流](https://cloud.tencent.com/document/product/266/9759)。仅 IsPersistence 为 1 时有效。
|
|
7321
|
+
*/
|
|
7322
|
+
Procedure?: string
|
|
7323
|
+
|
|
7324
|
+
/**
|
|
7325
|
+
* 分类ID,用于对媒体进行分类管理,可通过 [创建分类](/document/product/266/7812) 接口,创建分类,获得分类 ID。
|
|
7326
|
+
<li>默认值:0,表示其他分类。</li>
|
|
7327
|
+
仅 IsPersistence 为 1 时有效。
|
|
7328
|
+
*/
|
|
7329
|
+
ClassId?: number
|
|
7330
|
+
|
|
7331
|
+
/**
|
|
7332
|
+
* 来源上下文,用于透传用户请求信息,[上传完成回调](/document/product/266/7830) 将返回该字段值,最长 250 个字符。仅 IsPersistence 为 1 时有效。
|
|
7333
|
+
*/
|
|
7334
|
+
SourceContext?: string
|
|
7335
|
+
|
|
7336
|
+
/**
|
|
7337
|
+
* 会话上下文,用于透传用户请求信息,当指定 Procedure 参数后,[任务流状态变更回调](/document/product/266/9636) 将返回该字段值,最长 1000 个字符。仅 IsPersistence 为 1 时有效。
|
|
7338
|
+
*/
|
|
7339
|
+
SessionContext?: string
|
|
6993
7340
|
}
|
|
6994
7341
|
|
|
6995
7342
|
/**
|
|
@@ -7122,12 +7469,12 @@ export interface DescribeSuperPlayerConfigsResponse {
|
|
|
7122
7469
|
/**
|
|
7123
7470
|
* 符合过滤条件的记录总数。
|
|
7124
7471
|
*/
|
|
7125
|
-
TotalCount
|
|
7472
|
+
TotalCount: number
|
|
7126
7473
|
|
|
7127
7474
|
/**
|
|
7128
7475
|
* 播放器配置数组。
|
|
7129
7476
|
*/
|
|
7130
|
-
PlayerConfigSet
|
|
7477
|
+
PlayerConfigSet: Array<PlayerConfig>
|
|
7131
7478
|
|
|
7132
7479
|
/**
|
|
7133
7480
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -7406,31 +7753,6 @@ export interface AiRecognitionTaskHeadTailResultOutput {
|
|
|
7406
7753
|
TailTimeOffset: number
|
|
7407
7754
|
}
|
|
7408
7755
|
|
|
7409
|
-
/**
|
|
7410
|
-
* 对视频转自适应码流的输入参数类型
|
|
7411
|
-
*/
|
|
7412
|
-
export interface AdaptiveDynamicStreamingTaskInput {
|
|
7413
|
-
/**
|
|
7414
|
-
* 转自适应码流模板 ID。
|
|
7415
|
-
*/
|
|
7416
|
-
Definition: number
|
|
7417
|
-
|
|
7418
|
-
/**
|
|
7419
|
-
* 水印列表,支持多张图片或文字水印,最大可支持 10 张。
|
|
7420
|
-
*/
|
|
7421
|
-
WatermarkSet?: Array<WatermarkInput>
|
|
7422
|
-
|
|
7423
|
-
/**
|
|
7424
|
-
* 溯源水印。
|
|
7425
|
-
*/
|
|
7426
|
-
TraceWatermark?: TraceWatermarkInput
|
|
7427
|
-
|
|
7428
|
-
/**
|
|
7429
|
-
* 字幕列表,元素为字幕 ID,支持多个字幕,最大可支持16个。
|
|
7430
|
-
*/
|
|
7431
|
-
SubtitleSet?: Array<string>
|
|
7432
|
-
}
|
|
7433
|
-
|
|
7434
7756
|
/**
|
|
7435
7757
|
* ModifyImageSpriteTemplate返回参数结构体
|
|
7436
7758
|
*/
|
|
@@ -7618,6 +7940,16 @@ FINISH:已完成。
|
|
|
7618
7940
|
PublishResult: string
|
|
7619
7941
|
}
|
|
7620
7942
|
|
|
7943
|
+
/**
|
|
7944
|
+
* DescribeDrmKeyProviderInfo请求参数结构体
|
|
7945
|
+
*/
|
|
7946
|
+
export interface DescribeDrmKeyProviderInfoRequest {
|
|
7947
|
+
/**
|
|
7948
|
+
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
7949
|
+
*/
|
|
7950
|
+
SubAppId?: number
|
|
7951
|
+
}
|
|
7952
|
+
|
|
7621
7953
|
/**
|
|
7622
7954
|
* ModifyDefaultStorageRegion返回参数结构体
|
|
7623
7955
|
*/
|
|
@@ -8133,6 +8465,14 @@ export interface PlayerConfig {
|
|
|
8133
8465
|
*/
|
|
8134
8466
|
Type: string
|
|
8135
8467
|
|
|
8468
|
+
/**
|
|
8469
|
+
* 播放的音视频类型,可选值有:
|
|
8470
|
+
<li>AdaptiveDynamicStream:自适应码流输出;</li>
|
|
8471
|
+
<li>Transcode:转码输出;</li>
|
|
8472
|
+
<li>Original:原始音视频。</li>
|
|
8473
|
+
*/
|
|
8474
|
+
AudioVideoType: string
|
|
8475
|
+
|
|
8136
8476
|
/**
|
|
8137
8477
|
* 播放 DRM 保护的自适应码流开关:
|
|
8138
8478
|
<li>ON:开启,表示仅播放 DRM 保护的自适应码流输出;</li>
|
|
@@ -8151,6 +8491,11 @@ export interface PlayerConfig {
|
|
|
8151
8491
|
*/
|
|
8152
8492
|
DrmStreamingsInfo: DrmStreamingsInfo
|
|
8153
8493
|
|
|
8494
|
+
/**
|
|
8495
|
+
* 允许输出的转码模板 ID。
|
|
8496
|
+
*/
|
|
8497
|
+
TranscodeDefinition: number
|
|
8498
|
+
|
|
8154
8499
|
/**
|
|
8155
8500
|
* 允许输出的雪碧图模板 ID。
|
|
8156
8501
|
*/
|
|
@@ -9402,24 +9747,41 @@ export interface AiRecognitionTaskOcrFullTextSegmentTextItem {
|
|
|
9402
9747
|
}
|
|
9403
9748
|
|
|
9404
9749
|
/**
|
|
9405
|
-
*
|
|
9750
|
+
* 图片处理模板, 最多支持三次操作。例如:裁剪-缩略-裁剪。
|
|
9406
9751
|
*/
|
|
9407
|
-
export interface
|
|
9752
|
+
export interface ImageProcessingTemplate {
|
|
9408
9753
|
/**
|
|
9409
|
-
|
|
9410
|
-
|
|
9754
|
+
* 图片处理模板唯一标识。
|
|
9755
|
+
*/
|
|
9756
|
+
Definition: number
|
|
9757
|
+
|
|
9758
|
+
/**
|
|
9759
|
+
* 模板类型,取值范围:
|
|
9760
|
+
<li>Preset:系统预置模板;</li>
|
|
9761
|
+
<li>Custom:用户自定义模板。</li>
|
|
9411
9762
|
*/
|
|
9412
|
-
|
|
9763
|
+
Type: string
|
|
9413
9764
|
|
|
9414
9765
|
/**
|
|
9415
|
-
*
|
|
9766
|
+
* 图片处理模板名称。
|
|
9416
9767
|
*/
|
|
9417
|
-
|
|
9768
|
+
Name: string
|
|
9418
9769
|
|
|
9419
9770
|
/**
|
|
9420
|
-
*
|
|
9771
|
+
* 模板描述信息。
|
|
9421
9772
|
*/
|
|
9422
|
-
|
|
9773
|
+
Comment: string
|
|
9774
|
+
|
|
9775
|
+
/**
|
|
9776
|
+
* 图片处理操作数组,操作将以数组顺序执行。
|
|
9777
|
+
<li>长度限制:3。</li>
|
|
9778
|
+
*/
|
|
9779
|
+
Operations: Array<ImageOperation>
|
|
9780
|
+
|
|
9781
|
+
/**
|
|
9782
|
+
* 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
9783
|
+
*/
|
|
9784
|
+
CreateTime: string
|
|
9423
9785
|
}
|
|
9424
9786
|
|
|
9425
9787
|
/**
|
|
@@ -10073,6 +10435,31 @@ export interface AiReviewTaskPoliticalAsrResult {
|
|
|
10073
10435
|
Output: AiReviewPoliticalAsrTaskOutput
|
|
10074
10436
|
}
|
|
10075
10437
|
|
|
10438
|
+
/**
|
|
10439
|
+
* TRTC伴生录制信息。
|
|
10440
|
+
*/
|
|
10441
|
+
export interface TrtcRecordInfo {
|
|
10442
|
+
/**
|
|
10443
|
+
* TRTC 应用 ID。
|
|
10444
|
+
*/
|
|
10445
|
+
SdkAppId: number
|
|
10446
|
+
|
|
10447
|
+
/**
|
|
10448
|
+
* TRTC 房间 ID。
|
|
10449
|
+
*/
|
|
10450
|
+
RoomId: string
|
|
10451
|
+
|
|
10452
|
+
/**
|
|
10453
|
+
* 录制任务 ID。
|
|
10454
|
+
*/
|
|
10455
|
+
TaskId: string
|
|
10456
|
+
|
|
10457
|
+
/**
|
|
10458
|
+
* 参与录制的用户 ID 列表。
|
|
10459
|
+
*/
|
|
10460
|
+
UserIds: Array<string>
|
|
10461
|
+
}
|
|
10462
|
+
|
|
10076
10463
|
/**
|
|
10077
10464
|
* DescribeReviewDetails请求参数结构体
|
|
10078
10465
|
*/
|
|
@@ -10560,15 +10947,23 @@ export interface TranscodeTaskInput {
|
|
|
10560
10947
|
*/
|
|
10561
10948
|
TraceWatermark?: TraceWatermarkInput
|
|
10562
10949
|
|
|
10950
|
+
/**
|
|
10951
|
+
* 马赛克列表,最大可支持 10 张。
|
|
10952
|
+
*/
|
|
10953
|
+
MosaicSet?: Array<MosaicInput>
|
|
10954
|
+
|
|
10563
10955
|
/**
|
|
10564
10956
|
* 片头片尾列表,支持多片头片尾,最大可支持 10 个。
|
|
10565
10957
|
*/
|
|
10566
10958
|
HeadTailSet?: Array<HeadTailTaskInput>
|
|
10567
10959
|
|
|
10568
10960
|
/**
|
|
10569
|
-
|
|
10570
|
-
|
|
10571
|
-
|
|
10961
|
+
* 转码后的视频的起始时间偏移,单位:秒。
|
|
10962
|
+
<li>不填或填0,表示转码后的视频从原始视频的起始位置开始;</li>
|
|
10963
|
+
<li>当数值大于0时(假设为 n),表示转码后的视频从原始视频的第 n 秒位置开始;</li>
|
|
10964
|
+
<li>当数值小于0时(假设为 -n),表示转码后的视频从原始视频结束 n 秒前的位置开始。</li>
|
|
10965
|
+
*/
|
|
10966
|
+
StartTimeOffset?: number
|
|
10572
10967
|
|
|
10573
10968
|
/**
|
|
10574
10969
|
* 转码后视频的终止时间偏移,单位:秒。
|
|
@@ -10577,14 +10972,34 @@ export interface TranscodeTaskInput {
|
|
|
10577
10972
|
<li>当数值小于0时(假设为 -n),表示转码后的视频持续到原始视频结束 n 秒前终止。</li>
|
|
10578
10973
|
*/
|
|
10579
10974
|
EndTimeOffset?: number
|
|
10975
|
+
}
|
|
10580
10976
|
|
|
10977
|
+
/**
|
|
10978
|
+
* DescribeClientUploadAccelerationUsageData请求参数结构体
|
|
10979
|
+
*/
|
|
10980
|
+
export interface DescribeClientUploadAccelerationUsageDataRequest {
|
|
10581
10981
|
/**
|
|
10582
|
-
|
|
10583
|
-
|
|
10584
|
-
|
|
10585
|
-
|
|
10982
|
+
* 起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#52)。
|
|
10983
|
+
*/
|
|
10984
|
+
StartTime: string
|
|
10985
|
+
|
|
10986
|
+
/**
|
|
10987
|
+
* 结束日期,需大于等于起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#52)。
|
|
10988
|
+
*/
|
|
10989
|
+
EndTime: string
|
|
10990
|
+
|
|
10991
|
+
/**
|
|
10992
|
+
* <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
|
10993
|
+
*/
|
|
10994
|
+
SubAppId?: number
|
|
10995
|
+
|
|
10996
|
+
/**
|
|
10997
|
+
* 客户端上传加速类型,取值有:
|
|
10998
|
+
<li> AccelerationWithHTTP:HTTP 传输方式的上传加速。</li>
|
|
10999
|
+
<li> AccelerationWithQUIC:QUIC 传输方式的上传加速。</li>
|
|
11000
|
+
默认查询所有加速类型的用量 。
|
|
10586
11001
|
*/
|
|
10587
|
-
|
|
11002
|
+
Type?: string
|
|
10588
11003
|
}
|
|
10589
11004
|
|
|
10590
11005
|
/**
|
|
@@ -10937,6 +11352,12 @@ export interface MediaSourceData {
|
|
|
10937
11352
|
* 用户创建文件时透传的字段
|
|
10938
11353
|
*/
|
|
10939
11354
|
SourceContext: string
|
|
11355
|
+
|
|
11356
|
+
/**
|
|
11357
|
+
* TRTC 伴生录制信息。
|
|
11358
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11359
|
+
*/
|
|
11360
|
+
TrtcRecordInfo: TrtcRecordInfo
|
|
10940
11361
|
}
|
|
10941
11362
|
|
|
10942
11363
|
/**
|
|
@@ -11038,6 +11459,8 @@ export interface EventContent {
|
|
|
11038
11459
|
<li>WechatPublishComplete:微信发布完成;</li>
|
|
11039
11460
|
<li>ComposeMediaComplete:制作媒体文件完成;</li>
|
|
11040
11461
|
<li>WechatMiniProgramPublishComplete:微信小程序发布完成。</li>
|
|
11462
|
+
<li>FastClipMediaComplete:快速剪辑完成;</li>
|
|
11463
|
+
<li>ReviewAudioVideoComplete:音视频审核完成。</li>
|
|
11041
11464
|
<b>兼容 2017 版的事件类型:</b>
|
|
11042
11465
|
<li>TranscodeComplete:视频转码完成;</li>
|
|
11043
11466
|
<li>ConcatComplete:视频拼接完成;</li>
|
|
@@ -11131,11 +11554,23 @@ export interface EventContent {
|
|
|
11131
11554
|
*/
|
|
11132
11555
|
WechatMiniProgramPublishCompleteEvent: WechatMiniProgramPublishTask
|
|
11133
11556
|
|
|
11557
|
+
/**
|
|
11558
|
+
* 智能去除水印任务完成事件,当事件类型为 RemoveWatermark 有效。
|
|
11559
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11560
|
+
*/
|
|
11561
|
+
RemoveWatermarkCompleteEvent: RemoveWatermarkTask
|
|
11562
|
+
|
|
11134
11563
|
/**
|
|
11135
11564
|
* 视频取回完成事件,当事件类型为RestoreMediaComplete 时有效。
|
|
11136
11565
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11137
11566
|
*/
|
|
11138
11567
|
RestoreMediaCompleteEvent: RestoreMediaTask
|
|
11568
|
+
|
|
11569
|
+
/**
|
|
11570
|
+
* 音视频审核完成事件,当事件类型为 ReviewAudioVideoComplete 时有效。
|
|
11571
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11572
|
+
*/
|
|
11573
|
+
ReviewAudioVideoCompleteEvent: ReviewAudioVideoTask
|
|
11139
11574
|
}
|
|
11140
11575
|
|
|
11141
11576
|
/**
|
|
@@ -11451,9 +11886,18 @@ export interface AsrFullTextConfigureInfo {
|
|
|
11451
11886
|
*/
|
|
11452
11887
|
Switch: string
|
|
11453
11888
|
|
|
11889
|
+
/**
|
|
11890
|
+
* 生成的字幕文件格式列表,不填或者填空数组表示不生成字幕文件,可选值:
|
|
11891
|
+
<li>vtt:生成 WebVTT 字幕文件;</li>
|
|
11892
|
+
<li>srt:生成 SRT 字幕文件。</li>
|
|
11893
|
+
*/
|
|
11894
|
+
SubtitleFormats?: Array<string>
|
|
11895
|
+
|
|
11454
11896
|
/**
|
|
11455
11897
|
* 生成的字幕文件格式,不填或者填空字符串表示不生成字幕文件,可选值:
|
|
11456
|
-
<li>vtt:生成 WebVTT
|
|
11898
|
+
<li>vtt:生成 WebVTT 字幕文件;</li>
|
|
11899
|
+
<li>srt:生成 SRT 字幕文件。</li>
|
|
11900
|
+
<font color='red'>注意:此字段已废弃,建议使用 SubtitleFormats。</font>
|
|
11457
11901
|
*/
|
|
11458
11902
|
SubtitleFormat?: string
|
|
11459
11903
|
}
|
|
@@ -11503,6 +11947,22 @@ export interface DeleteVodDomainRequest {
|
|
|
11503
11947
|
SubAppId?: number
|
|
11504
11948
|
}
|
|
11505
11949
|
|
|
11950
|
+
/**
|
|
11951
|
+
* DescribeDrmKeyProviderInfo返回参数结构体
|
|
11952
|
+
*/
|
|
11953
|
+
export interface DescribeDrmKeyProviderInfoResponse {
|
|
11954
|
+
/**
|
|
11955
|
+
* 华曦达(SDMC)相关的 DRM 密钥提供商信息。
|
|
11956
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11957
|
+
*/
|
|
11958
|
+
SDMCInfo: SDMCDrmKeyProviderInfo
|
|
11959
|
+
|
|
11960
|
+
/**
|
|
11961
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11962
|
+
*/
|
|
11963
|
+
RequestId?: string
|
|
11964
|
+
}
|
|
11965
|
+
|
|
11506
11966
|
/**
|
|
11507
11967
|
* CreateAIRecognitionTemplate请求参数结构体
|
|
11508
11968
|
*/
|
|
@@ -11578,7 +12038,7 @@ export interface DescribeTaskDetailRequest {
|
|
|
11578
12038
|
TaskId: string
|
|
11579
12039
|
|
|
11580
12040
|
/**
|
|
11581
|
-
*
|
|
12041
|
+
* <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
|
11582
12042
|
*/
|
|
11583
12043
|
SubAppId?: number
|
|
11584
12044
|
}
|
|
@@ -11677,6 +12137,31 @@ export interface AiReviewPornTaskOutput {
|
|
|
11677
12137
|
SegmentSetFileUrlExpireTime: string
|
|
11678
12138
|
}
|
|
11679
12139
|
|
|
12140
|
+
/**
|
|
12141
|
+
* 华曦达(SDMC)相关的 DRM 密钥提供商信息。
|
|
12142
|
+
*/
|
|
12143
|
+
export interface SDMCDrmKeyProviderInfo {
|
|
12144
|
+
/**
|
|
12145
|
+
* 华曦达分配的用户 ID。最大长度为128个字符。
|
|
12146
|
+
*/
|
|
12147
|
+
Uid: string
|
|
12148
|
+
|
|
12149
|
+
/**
|
|
12150
|
+
* 华曦达分配的用户密钥 ID。最大长度为128个字符。
|
|
12151
|
+
*/
|
|
12152
|
+
SecretId: string
|
|
12153
|
+
|
|
12154
|
+
/**
|
|
12155
|
+
* 华曦达分配的用户密钥内容。最大长度为128个字符。
|
|
12156
|
+
*/
|
|
12157
|
+
SecretKey: string
|
|
12158
|
+
|
|
12159
|
+
/**
|
|
12160
|
+
* 华曦达分配的 FairPlay 证书地址。该地址需使用 HTTPS 协议,最大长度为1024个字符。
|
|
12161
|
+
*/
|
|
12162
|
+
FairPlayCertificateUrl: string
|
|
12163
|
+
}
|
|
12164
|
+
|
|
11680
12165
|
/**
|
|
11681
12166
|
* 语音全文识别结果。
|
|
11682
12167
|
*/
|
|
@@ -12038,6 +12523,24 @@ export interface AdaptiveDynamicStreamingInfoItem {
|
|
|
12038
12523
|
Size?: number
|
|
12039
12524
|
}
|
|
12040
12525
|
|
|
12526
|
+
/**
|
|
12527
|
+
* 直播即时剪辑流信息
|
|
12528
|
+
*/
|
|
12529
|
+
export interface LiveRealTimeClipStreamInfo {
|
|
12530
|
+
/**
|
|
12531
|
+
* 直播流类型,可选值:
|
|
12532
|
+
<li>Original(原始流,<b>默认值</b>)。</li>
|
|
12533
|
+
<li>Transcoding(转码流)。</li>
|
|
12534
|
+
*/
|
|
12535
|
+
Type?: string
|
|
12536
|
+
|
|
12537
|
+
/**
|
|
12538
|
+
* 直播转码模板ID。
|
|
12539
|
+
<b>当Type值为"Transcoding"时,必须填写。</b>
|
|
12540
|
+
*/
|
|
12541
|
+
TemplateId?: number
|
|
12542
|
+
}
|
|
12543
|
+
|
|
12041
12544
|
/**
|
|
12042
12545
|
* 文本违禁任务控制参数
|
|
12043
12546
|
*/
|
|
@@ -12282,7 +12785,7 @@ export interface VideoTemplateInfoForUpdate {
|
|
|
12282
12785
|
ResolutionAdaptive?: string
|
|
12283
12786
|
|
|
12284
12787
|
/**
|
|
12285
|
-
* 视频流宽度(或长边)的最大值,取值范围:0 和 [128,
|
|
12788
|
+
* 视频流宽度(或长边)的最大值,取值范围:0 和 [128, 8192],单位:px。
|
|
12286
12789
|
<li>当 Width、Height 均为 0,则分辨率同源;</li>
|
|
12287
12790
|
<li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
|
|
12288
12791
|
<li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
|
|
@@ -12291,7 +12794,7 @@ export interface VideoTemplateInfoForUpdate {
|
|
|
12291
12794
|
Width?: number
|
|
12292
12795
|
|
|
12293
12796
|
/**
|
|
12294
|
-
* 视频流高度(或短边)的最大值,取值范围:0 和 [128,
|
|
12797
|
+
* 视频流高度(或短边)的最大值,取值范围:0 和 [128, 8192],单位:px。
|
|
12295
12798
|
*/
|
|
12296
12799
|
Height?: number
|
|
12297
12800
|
|
|
@@ -12319,6 +12822,13 @@ export interface VideoTemplateInfoForUpdate {
|
|
|
12319
12822
|
当填 0 或不填时,系统将自动设置 gop 长度。
|
|
12320
12823
|
*/
|
|
12321
12824
|
Gop?: number
|
|
12825
|
+
|
|
12826
|
+
/**
|
|
12827
|
+
* 当原始视频为 HDR(High Dynamic Range)时,转码输出是否依然保持 HDR。取值范围:
|
|
12828
|
+
<li>ON: 如果原始文件是 HDR,则转码输出保持 HDR;否则转码输出为 SDR (Standard Dynamic Range)。</li>
|
|
12829
|
+
<li>OFF: 无论原始文件是 HDR 还是 SDR,转码输出均为 SDR。</li>
|
|
12830
|
+
*/
|
|
12831
|
+
PreserveHDRSwitch?: string
|
|
12322
12832
|
}
|
|
12323
12833
|
|
|
12324
12834
|
/**
|
|
@@ -12406,25 +12916,28 @@ export interface DescribeContentReviewTemplatesRequest {
|
|
|
12406
12916
|
}
|
|
12407
12917
|
|
|
12408
12918
|
/**
|
|
12409
|
-
*
|
|
12919
|
+
* 对视频转自适应码流的输入参数类型
|
|
12410
12920
|
*/
|
|
12411
|
-
export interface
|
|
12921
|
+
export interface AdaptiveDynamicStreamingTaskInput {
|
|
12412
12922
|
/**
|
|
12413
|
-
|
|
12414
|
-
|
|
12415
|
-
|
|
12416
|
-
*/
|
|
12417
|
-
Type: string
|
|
12923
|
+
* 转自适应码流模板 ID。
|
|
12924
|
+
*/
|
|
12925
|
+
Definition: number
|
|
12418
12926
|
|
|
12419
12927
|
/**
|
|
12420
|
-
*
|
|
12928
|
+
* 水印列表,支持多张图片或文字水印,最大可支持 10 张。
|
|
12421
12929
|
*/
|
|
12422
|
-
|
|
12930
|
+
WatermarkSet?: Array<WatermarkInput>
|
|
12423
12931
|
|
|
12424
12932
|
/**
|
|
12425
|
-
*
|
|
12933
|
+
* 溯源水印。
|
|
12426
12934
|
*/
|
|
12427
|
-
|
|
12935
|
+
TraceWatermark?: TraceWatermarkInput
|
|
12936
|
+
|
|
12937
|
+
/**
|
|
12938
|
+
* 字幕列表,元素为字幕 ID,支持多个字幕,最大可支持16个。
|
|
12939
|
+
*/
|
|
12940
|
+
SubtitleSet?: Array<string>
|
|
12428
12941
|
}
|
|
12429
12942
|
|
|
12430
12943
|
/**
|
|
@@ -12519,15 +13032,10 @@ export interface DescribeTaskDetailResponse {
|
|
|
12519
13032
|
<li>ComposeMedia:制作媒体文件任务;</li>
|
|
12520
13033
|
<li>WechatPublish:微信发布任务;</li>
|
|
12521
13034
|
<li>WechatMiniProgramPublish:微信小程序视频发布任务;</li>
|
|
12522
|
-
<li>PullUpload
|
|
12523
|
-
<li>FastClipMedia
|
|
12524
|
-
|
|
12525
|
-
|
|
12526
|
-
<li>Transcode:视频转码任务;</li>
|
|
12527
|
-
<li>SnapshotByTimeOffset:视频截图任务;</li>
|
|
12528
|
-
<li>Concat:视频拼接任务;</li>
|
|
12529
|
-
<li>Clip:视频剪辑任务;</li>
|
|
12530
|
-
<li>ImageSprites:截取雪碧图任务。</li>
|
|
13035
|
+
<li>PullUpload:拉取上传媒体文件任务;</li>
|
|
13036
|
+
<li>FastClipMedia:快速剪辑任务;</li>
|
|
13037
|
+
<li>RemoveWatermarkTask:智能去除水印任务;</li>
|
|
13038
|
+
<li> ReviewAudioVideo:音视频审核任务。</li>
|
|
12531
13039
|
*/
|
|
12532
13040
|
TaskType: string
|
|
12533
13041
|
|
|
@@ -12626,6 +13134,18 @@ export interface DescribeTaskDetailResponse {
|
|
|
12626
13134
|
*/
|
|
12627
13135
|
SnapshotByTimeOffsetTask: SnapshotByTimeOffsetTask2017
|
|
12628
13136
|
|
|
13137
|
+
/**
|
|
13138
|
+
* 智能去除水印任务信息,仅当 TaskType 为 RemoveWatermark,该字段有值。
|
|
13139
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13140
|
+
*/
|
|
13141
|
+
RemoveWatermarkTask: RemoveWatermarkTask
|
|
13142
|
+
|
|
13143
|
+
/**
|
|
13144
|
+
* 音视频审核任务信息,仅当 TaskType 为 ReviewAudioVideo,该字段有值。
|
|
13145
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13146
|
+
*/
|
|
13147
|
+
ReviewAudioVideoTask: ReviewAudioVideoTask
|
|
13148
|
+
|
|
12629
13149
|
/**
|
|
12630
13150
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12631
13151
|
*/
|
|
@@ -12767,6 +13287,11 @@ export interface DescribeMediaProcessUsageDataResponse {
|
|
|
12767
13287
|
* DescribeSuperPlayerConfigs请求参数结构体
|
|
12768
13288
|
*/
|
|
12769
13289
|
export interface DescribeSuperPlayerConfigsRequest {
|
|
13290
|
+
/**
|
|
13291
|
+
* <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
|
13292
|
+
*/
|
|
13293
|
+
SubAppId?: number
|
|
13294
|
+
|
|
12770
13295
|
/**
|
|
12771
13296
|
* 播放器配置名字过滤条件,数组长度限制:100。
|
|
12772
13297
|
*/
|
|
@@ -12788,11 +13313,6 @@ export interface DescribeSuperPlayerConfigsRequest {
|
|
|
12788
13313
|
<li>Custom:用户自定义配置。</li>
|
|
12789
13314
|
*/
|
|
12790
13315
|
Type?: string
|
|
12791
|
-
|
|
12792
|
-
/**
|
|
12793
|
-
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
12794
|
-
*/
|
|
12795
|
-
SubAppId?: number
|
|
12796
13316
|
}
|
|
12797
13317
|
|
|
12798
13318
|
/**
|
|
@@ -13244,6 +13764,11 @@ export interface ModifySuperPlayerConfigRequest {
|
|
|
13244
13764
|
*/
|
|
13245
13765
|
Name: string
|
|
13246
13766
|
|
|
13767
|
+
/**
|
|
13768
|
+
* <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
|
13769
|
+
*/
|
|
13770
|
+
SubAppId?: number
|
|
13771
|
+
|
|
13247
13772
|
/**
|
|
13248
13773
|
* 播放的音视频类型,可选值:
|
|
13249
13774
|
<li>AdaptiveDynamicStream:自适应码流输出;</li>
|
|
@@ -13301,11 +13826,6 @@ export interface ModifySuperPlayerConfigRequest {
|
|
|
13301
13826
|
* 模板描述信息,长度限制:256 个字符。
|
|
13302
13827
|
*/
|
|
13303
13828
|
Comment?: string
|
|
13304
|
-
|
|
13305
|
-
/**
|
|
13306
|
-
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
13307
|
-
*/
|
|
13308
|
-
SubAppId?: number
|
|
13309
13829
|
}
|
|
13310
13830
|
|
|
13311
13831
|
/**
|
|
@@ -13367,6 +13887,49 @@ export interface TaskSimpleInfo {
|
|
|
13367
13887
|
SessionContext: string
|
|
13368
13888
|
}
|
|
13369
13889
|
|
|
13890
|
+
/**
|
|
13891
|
+
* 音视频审核任务信息。
|
|
13892
|
+
*/
|
|
13893
|
+
export interface ReviewAudioVideoTask {
|
|
13894
|
+
/**
|
|
13895
|
+
* 任务 ID。
|
|
13896
|
+
*/
|
|
13897
|
+
TaskId: string
|
|
13898
|
+
|
|
13899
|
+
/**
|
|
13900
|
+
* 任务状态,取值:
|
|
13901
|
+
<li>PROCESSING:处理中;</li>
|
|
13902
|
+
<li>FINISH:已完成。</li>
|
|
13903
|
+
*/
|
|
13904
|
+
Status: string
|
|
13905
|
+
|
|
13906
|
+
/**
|
|
13907
|
+
* 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
|
|
13908
|
+
*/
|
|
13909
|
+
ErrCodeExt: string
|
|
13910
|
+
|
|
13911
|
+
/**
|
|
13912
|
+
* 错误信息。
|
|
13913
|
+
*/
|
|
13914
|
+
Message: string
|
|
13915
|
+
|
|
13916
|
+
/**
|
|
13917
|
+
* 音视频审核任务的输出。
|
|
13918
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13919
|
+
*/
|
|
13920
|
+
Output: ReviewAudioVideoTaskOutput
|
|
13921
|
+
|
|
13922
|
+
/**
|
|
13923
|
+
* 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
|
|
13924
|
+
*/
|
|
13925
|
+
SessionId: string
|
|
13926
|
+
|
|
13927
|
+
/**
|
|
13928
|
+
* 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
|
|
13929
|
+
*/
|
|
13930
|
+
SessionContext: string
|
|
13931
|
+
}
|
|
13932
|
+
|
|
13370
13933
|
/**
|
|
13371
13934
|
* DescribeSnapshotByTimeOffsetTemplates返回参数结构体
|
|
13372
13935
|
*/
|
|
@@ -13417,6 +13980,21 @@ export interface MediaVideoStreamItem {
|
|
|
13417
13980
|
Fps: number
|
|
13418
13981
|
}
|
|
13419
13982
|
|
|
13983
|
+
/**
|
|
13984
|
+
* SetDrmKeyProviderInfo请求参数结构体
|
|
13985
|
+
*/
|
|
13986
|
+
export interface SetDrmKeyProviderInfoRequest {
|
|
13987
|
+
/**
|
|
13988
|
+
* 华曦达(SDMC)相关的 DRM 密钥提供商信息。
|
|
13989
|
+
*/
|
|
13990
|
+
SDMCInfo?: SDMCDrmKeyProviderInfo
|
|
13991
|
+
|
|
13992
|
+
/**
|
|
13993
|
+
* <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
|
13994
|
+
*/
|
|
13995
|
+
SubAppId?: number
|
|
13996
|
+
}
|
|
13997
|
+
|
|
13420
13998
|
/**
|
|
13421
13999
|
* 指定时间点截图模板详情
|
|
13422
14000
|
*/
|
|
@@ -13749,6 +14327,26 @@ export interface MediaAudioStreamItem {
|
|
|
13749
14327
|
Codec: string
|
|
13750
14328
|
}
|
|
13751
14329
|
|
|
14330
|
+
/**
|
|
14331
|
+
* 字幕格式列表操作。
|
|
14332
|
+
*/
|
|
14333
|
+
export interface SubtitleFormatsOperation {
|
|
14334
|
+
/**
|
|
14335
|
+
* 操作类型,取值范围:
|
|
14336
|
+
<li>add:添加 Formats 指定的格式列表;</li>
|
|
14337
|
+
<li>delete:删除 Formats 指定的格式列表;<l/i>
|
|
14338
|
+
<li>reset:将已配置的格式列表重置为 Formats 指定的格式列表。</li>
|
|
14339
|
+
*/
|
|
14340
|
+
Type: string
|
|
14341
|
+
|
|
14342
|
+
/**
|
|
14343
|
+
* 字幕格式列表,取值范围:
|
|
14344
|
+
<li>vtt:生成 WebVTT 字幕文件;</li>
|
|
14345
|
+
<li>srt:生成 SRT 字幕文件。</li>
|
|
14346
|
+
*/
|
|
14347
|
+
Formats: Array<string>
|
|
14348
|
+
}
|
|
14349
|
+
|
|
13752
14350
|
/**
|
|
13753
14351
|
* 子应用信息。
|
|
13754
14352
|
*/
|
|
@@ -14335,23 +14933,25 @@ export interface UserDefineAsrTextReviewTemplateInfoForUpdate {
|
|
|
14335
14933
|
}
|
|
14336
14934
|
|
|
14337
14935
|
/**
|
|
14338
|
-
*
|
|
14936
|
+
* 单个图片处理操作。
|
|
14339
14937
|
*/
|
|
14340
|
-
export interface
|
|
14938
|
+
export interface ImageOperation {
|
|
14341
14939
|
/**
|
|
14342
|
-
|
|
14343
|
-
|
|
14344
|
-
|
|
14940
|
+
* 图片处理类型。可选类型有:
|
|
14941
|
+
<li>Scale : 图片缩略处理。</li>
|
|
14942
|
+
<li>CenterCut : 图片裁剪处理。</li>
|
|
14943
|
+
*/
|
|
14944
|
+
Type: string
|
|
14345
14945
|
|
|
14346
14946
|
/**
|
|
14347
|
-
*
|
|
14947
|
+
* 图片缩略处理,仅当 Type 为 Scale 时有效。
|
|
14348
14948
|
*/
|
|
14349
|
-
|
|
14949
|
+
Scale?: ImageScale
|
|
14350
14950
|
|
|
14351
14951
|
/**
|
|
14352
|
-
*
|
|
14952
|
+
* 图片裁剪处理,仅当 Type 为 CenterCut 时有效。
|
|
14353
14953
|
*/
|
|
14354
|
-
|
|
14954
|
+
CenterCut?: ImageCenterCut
|
|
14355
14955
|
}
|
|
14356
14956
|
|
|
14357
14957
|
/**
|
|
@@ -14495,6 +15095,41 @@ export interface FrameTagConfigureInfo {
|
|
|
14495
15095
|
ScreenshotInterval?: number
|
|
14496
15096
|
}
|
|
14497
15097
|
|
|
15098
|
+
/**
|
|
15099
|
+
* RemoveWatermark请求参数结构体
|
|
15100
|
+
*/
|
|
15101
|
+
export interface RemoveWatermarkRequest {
|
|
15102
|
+
/**
|
|
15103
|
+
* 媒体文件 ID 。
|
|
15104
|
+
*/
|
|
15105
|
+
FileId: string
|
|
15106
|
+
|
|
15107
|
+
/**
|
|
15108
|
+
* <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
|
15109
|
+
*/
|
|
15110
|
+
SubAppId?: number
|
|
15111
|
+
|
|
15112
|
+
/**
|
|
15113
|
+
* 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
|
|
15114
|
+
*/
|
|
15115
|
+
SessionId?: string
|
|
15116
|
+
|
|
15117
|
+
/**
|
|
15118
|
+
* 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
|
|
15119
|
+
*/
|
|
15120
|
+
SessionContext?: string
|
|
15121
|
+
|
|
15122
|
+
/**
|
|
15123
|
+
* 任务流的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
|
|
15124
|
+
*/
|
|
15125
|
+
TasksPriority?: number
|
|
15126
|
+
|
|
15127
|
+
/**
|
|
15128
|
+
* 该字段已无效。
|
|
15129
|
+
*/
|
|
15130
|
+
TasksNotifyMode?: string
|
|
15131
|
+
}
|
|
15132
|
+
|
|
14498
15133
|
/**
|
|
14499
15134
|
* ExecuteFunction请求参数结构体
|
|
14500
15135
|
*/
|
|
@@ -15230,6 +15865,19 @@ export interface SearchMediaRequest {
|
|
|
15230
15865
|
*/
|
|
15231
15866
|
StorageClasses?: Array<string>
|
|
15232
15867
|
|
|
15868
|
+
/**
|
|
15869
|
+
* TRTC 应用 ID 集合。匹配集合中的任意元素。
|
|
15870
|
+
<li>数组长度限制:10。</li>
|
|
15871
|
+
*/
|
|
15872
|
+
TrtcSdkAppIds?: Array<number>
|
|
15873
|
+
|
|
15874
|
+
/**
|
|
15875
|
+
* TRTC 房间 ID 集合。匹配集合中的任意元素。
|
|
15876
|
+
<li>单个房间 ID 长度限制:64个字符;</li>
|
|
15877
|
+
<li>数组长度限制:10。</li>
|
|
15878
|
+
*/
|
|
15879
|
+
TrtcRoomIds?: Array<string>
|
|
15880
|
+
|
|
15233
15881
|
/**
|
|
15234
15882
|
* (不推荐:应使用 Names、NamePrefixes 或 Descriptions 替代)
|
|
15235
15883
|
搜索文本,模糊匹配媒体文件名称或描述信息,匹配项越多,匹配度越高,排序越优先。长度限制:64个字符。
|
|
@@ -15517,6 +16165,16 @@ export interface PullUploadResponse {
|
|
|
15517
16165
|
RequestId?: string
|
|
15518
16166
|
}
|
|
15519
16167
|
|
|
16168
|
+
/**
|
|
16169
|
+
* 智能去除水印任务的输入。
|
|
16170
|
+
*/
|
|
16171
|
+
export interface RemoveWaterMarkTaskInput {
|
|
16172
|
+
/**
|
|
16173
|
+
* 媒体文件 ID。
|
|
16174
|
+
*/
|
|
16175
|
+
FileId: string
|
|
16176
|
+
}
|
|
16177
|
+
|
|
15520
16178
|
/**
|
|
15521
16179
|
* 人脸识别任务控制参数
|
|
15522
16180
|
*/
|
|
@@ -16293,6 +16951,16 @@ export interface AiAnalysisTaskCoverInput {
|
|
|
16293
16951
|
Definition: number
|
|
16294
16952
|
}
|
|
16295
16953
|
|
|
16954
|
+
/**
|
|
16955
|
+
* SetDrmKeyProviderInfo返回参数结构体
|
|
16956
|
+
*/
|
|
16957
|
+
export interface SetDrmKeyProviderInfoResponse {
|
|
16958
|
+
/**
|
|
16959
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16960
|
+
*/
|
|
16961
|
+
RequestId?: string
|
|
16962
|
+
}
|
|
16963
|
+
|
|
16296
16964
|
/**
|
|
16297
16965
|
* DescribeStorageDetails请求参数结构体
|
|
16298
16966
|
*/
|