tencentcloud-sdk-nodejs-vod 4.0.916 → 4.0.921
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/products.md +49 -49
- package/src/services/vod/v20180717/vod_client.ts +66 -28
- package/src/services/vod/v20180717/vod_models.ts +275 -78
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +25 -13
- package/tencentcloud/services/vod/v20180717/vod_client.js +33 -15
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +266 -77
|
@@ -618,13 +618,17 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
618
618
|
return this.request("DeleteMedia", req, cb);
|
|
619
619
|
}
|
|
620
620
|
/**
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
621
|
+
* 操作轮播当前播放列表。支持的操作有:<li> Insert:向当前播列表插入播放节目。</li><li> Delete:删除播列表中的播放节目。</li>
|
|
622
|
+
*/
|
|
623
|
+
async HandleCurrentPlaylist(req, cb) {
|
|
624
|
+
return this.request("HandleCurrentPlaylist", req, cb);
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* 该 API 已经<font color='red'>不再维护</font>,新版播放器签名不再使用播放器配置模板,详细请参考 [播放器签名](https://cloud.tencent.com/document/product/266/45554)。
|
|
628
|
+
创建播放器配置,数量上限:100。
|
|
625
629
|
*/
|
|
626
|
-
async
|
|
627
|
-
return this.request("
|
|
630
|
+
async CreateSuperPlayerConfig(req, cb) {
|
|
631
|
+
return this.request("CreateSuperPlayerConfig", req, cb);
|
|
628
632
|
}
|
|
629
633
|
/**
|
|
630
634
|
* 查询点播域名下日志投递的目标主题。
|
|
@@ -660,11 +664,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
660
664
|
return this.request("CreateRebuildMediaTemplate", req, cb);
|
|
661
665
|
}
|
|
662
666
|
/**
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
return this.request("ModifyRoundPlay", req, cb);
|
|
667
|
+
* 查询轮播当前播放列表。
|
|
668
|
+
*/
|
|
669
|
+
async DescribeCurrentPlaylist(req, cb) {
|
|
670
|
+
return this.request("DescribeCurrentPlaylist", req, cb);
|
|
668
671
|
}
|
|
669
672
|
/**
|
|
670
673
|
* 该接口用于查询指定日期范围内每天的播放统计数据。
|
|
@@ -759,11 +762,13 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
759
762
|
return this.request("VerifyDomainRecord", req, cb);
|
|
760
763
|
}
|
|
761
764
|
/**
|
|
762
|
-
*
|
|
763
|
-
|
|
765
|
+
* 该接口返回查询时间范围内每天使用的图片审核用量信息。
|
|
766
|
+
1. 可以查询最近365天内的图片审核统计数据。
|
|
767
|
+
2. 查询时间跨度不超过90天。
|
|
768
|
+
3. 查询时间跨度超过1天的,返回以天为粒度的数据,否则,返回以5分钟为粒度的数据。
|
|
764
769
|
*/
|
|
765
|
-
async
|
|
766
|
-
return this.request("
|
|
770
|
+
async DescribeImageReviewUsageData(req, cb) {
|
|
771
|
+
return this.request("DescribeImageReviewUsageData", req, cb);
|
|
767
772
|
}
|
|
768
773
|
/**
|
|
769
774
|
* 该接口用于修改域名配置,可以修改域名的防盗链配置。
|
|
@@ -863,6 +868,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
863
868
|
async DeleteWordSamples(req, cb) {
|
|
864
869
|
return this.request("DeleteWordSamples", req, cb);
|
|
865
870
|
}
|
|
871
|
+
/**
|
|
872
|
+
* 对 HLS 视频实现快速拼接和快速剪辑,生成新的 HLS 格式的媒体。
|
|
873
|
+
*/
|
|
874
|
+
async FastEditMedia(req, cb) {
|
|
875
|
+
return this.request("FastEditMedia", req, cb);
|
|
876
|
+
}
|
|
866
877
|
/**
|
|
867
878
|
* 该接口用于将加速域名添加到点播,一个用户最多添加20个加速域名。
|
|
868
879
|
1.域名添加成功后点播会进行域名的部署,域名由部署状态变为在线状态大概需要2分钟的时间。
|
|
@@ -965,6 +976,13 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
965
976
|
async ModifySubAppIdInfo(req, cb) {
|
|
966
977
|
return this.request("ModifySubAppIdInfo", req, cb);
|
|
967
978
|
}
|
|
979
|
+
/**
|
|
980
|
+
* 该接口用于修改轮播播单。
|
|
981
|
+
修改后只有新的播放请求会生效,已经在播放中的用户在七天之内还可以播放修改前的播单。
|
|
982
|
+
*/
|
|
983
|
+
async ModifyRoundPlay(req, cb) {
|
|
984
|
+
return this.request("ModifyRoundPlay", req, cb);
|
|
985
|
+
}
|
|
968
986
|
/**
|
|
969
987
|
* 查询转自适应码流模板,支持根据条件,分页查询。
|
|
970
988
|
*/
|
|
@@ -234,11 +234,27 @@ export interface DescribeRoundPlaysRequest {
|
|
|
234
234
|
*/
|
|
235
235
|
SubAppId?: number;
|
|
236
236
|
/**
|
|
237
|
-
*
|
|
237
|
+
* 过滤条件:轮播播单标识,数组长度限制:100。
|
|
238
238
|
*/
|
|
239
239
|
RoundPlayIds?: Array<string>;
|
|
240
240
|
/**
|
|
241
|
-
*
|
|
241
|
+
* 过滤条件,轮播播单状态,可选值: <li>Enabled:启动状态;</li> <li>Disabled:停止状态。</li>
|
|
242
|
+
*/
|
|
243
|
+
Status?: string;
|
|
244
|
+
/**
|
|
245
|
+
* 过滤条件:轮播播单创建时间。
|
|
246
|
+
*/
|
|
247
|
+
CreateTime?: TimeRange;
|
|
248
|
+
/**
|
|
249
|
+
* 过滤条件:轮播播单更新时间。
|
|
250
|
+
*/
|
|
251
|
+
UpdateTime?: TimeRange;
|
|
252
|
+
/**
|
|
253
|
+
* 翻页标识,分批拉取时使用:当单次请求无法拉取所有数据,接口将会返回 ScrollToken,下一次请求携带该 Token,将会从下一条记录开始获取。
|
|
254
|
+
*/
|
|
255
|
+
ScrollToken?: string;
|
|
256
|
+
/**
|
|
257
|
+
* 分页偏移量,默认值:0。已经废弃,请根据 ScrollToken 参数进行分批次查询。
|
|
242
258
|
*/
|
|
243
259
|
Offset?: number;
|
|
244
260
|
/**
|
|
@@ -1443,27 +1459,6 @@ export interface RefreshUrlCacheRequest {
|
|
|
1443
1459
|
*/
|
|
1444
1460
|
SubAppId?: number;
|
|
1445
1461
|
}
|
|
1446
|
-
/**
|
|
1447
|
-
* DescribeAIAnalysisTemplates请求参数结构体
|
|
1448
|
-
*/
|
|
1449
|
-
export interface DescribeAIAnalysisTemplatesRequest {
|
|
1450
|
-
/**
|
|
1451
|
-
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
1452
|
-
*/
|
|
1453
|
-
SubAppId?: number;
|
|
1454
|
-
/**
|
|
1455
|
-
* 音视频内容分析模板唯一标识过滤条件,数组长度最大值:100。
|
|
1456
|
-
*/
|
|
1457
|
-
Definitions?: Array<number | bigint>;
|
|
1458
|
-
/**
|
|
1459
|
-
* 分页偏移量,默认值:0。
|
|
1460
|
-
*/
|
|
1461
|
-
Offset?: number;
|
|
1462
|
-
/**
|
|
1463
|
-
* 返回记录条数,默认值:10,最大值:100。
|
|
1464
|
-
*/
|
|
1465
|
-
Limit?: number;
|
|
1466
|
-
}
|
|
1467
1462
|
/**
|
|
1468
1463
|
* 音视频审核模板详情
|
|
1469
1464
|
*/
|
|
@@ -1596,6 +1591,58 @@ export interface AudioTransform {
|
|
|
1596
1591
|
*/
|
|
1597
1592
|
VolumeParam?: AudioVolumeParam;
|
|
1598
1593
|
}
|
|
1594
|
+
/**
|
|
1595
|
+
* 视频转码任务信息,该结构仅用于对 2017 版[视频转码](https://cloud.tencent.com/document/product/266/7822)接口发起的任务。
|
|
1596
|
+
*/
|
|
1597
|
+
export interface TranscodeTask2017 {
|
|
1598
|
+
/**
|
|
1599
|
+
* 转码任务 ID。
|
|
1600
|
+
*/
|
|
1601
|
+
TaskId: string;
|
|
1602
|
+
/**
|
|
1603
|
+
* 错误码
|
|
1604
|
+
<li>0:成功;</li>
|
|
1605
|
+
<li>其他值:失败。</li>
|
|
1606
|
+
*/
|
|
1607
|
+
ErrCode: number;
|
|
1608
|
+
/**
|
|
1609
|
+
* 错误信息。
|
|
1610
|
+
*/
|
|
1611
|
+
Message: string;
|
|
1612
|
+
/**
|
|
1613
|
+
* 被转码文件 ID。
|
|
1614
|
+
*/
|
|
1615
|
+
FileId: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* 被转码文件名称。
|
|
1618
|
+
*/
|
|
1619
|
+
FileName: string;
|
|
1620
|
+
/**
|
|
1621
|
+
* 视频时长,单位:秒。
|
|
1622
|
+
*/
|
|
1623
|
+
Duration: number;
|
|
1624
|
+
/**
|
|
1625
|
+
* 封面地址。
|
|
1626
|
+
*/
|
|
1627
|
+
CoverUrl: string;
|
|
1628
|
+
/**
|
|
1629
|
+
* 视频转码后生成的播放信息。
|
|
1630
|
+
*/
|
|
1631
|
+
PlayInfoSet: Array<TranscodePlayInfo2017>;
|
|
1632
|
+
}
|
|
1633
|
+
/**
|
|
1634
|
+
* DescribeCurrentPlaylist返回参数结构体
|
|
1635
|
+
*/
|
|
1636
|
+
export interface DescribeCurrentPlaylistResponse {
|
|
1637
|
+
/**
|
|
1638
|
+
* 当前播放列表信息。
|
|
1639
|
+
*/
|
|
1640
|
+
CurrentPlaylist?: Array<RoundPlayFilePlayInfo>;
|
|
1641
|
+
/**
|
|
1642
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1643
|
+
*/
|
|
1644
|
+
RequestId?: string;
|
|
1645
|
+
}
|
|
1599
1646
|
/**
|
|
1600
1647
|
* ModifySuperPlayerConfig请求参数结构体
|
|
1601
1648
|
*/
|
|
@@ -1774,6 +1821,16 @@ export interface RoundPlayInfo {
|
|
|
1774
1821
|
* 轮播播放地址。
|
|
1775
1822
|
*/
|
|
1776
1823
|
Url?: string;
|
|
1824
|
+
/**
|
|
1825
|
+
* 创建时间,格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#52)。
|
|
1826
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1827
|
+
*/
|
|
1828
|
+
CreateTime?: string;
|
|
1829
|
+
/**
|
|
1830
|
+
* 更新时间,格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#52)。
|
|
1831
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1832
|
+
*/
|
|
1833
|
+
UpdateTime?: string;
|
|
1777
1834
|
}
|
|
1778
1835
|
/**
|
|
1779
1836
|
* DescribeLicenseUsageData返回参数结构体
|
|
@@ -1987,6 +2044,30 @@ export interface TextWatermarkTemplateInput {
|
|
|
1987
2044
|
*/
|
|
1988
2045
|
FontAlpha: number;
|
|
1989
2046
|
}
|
|
2047
|
+
/**
|
|
2048
|
+
* 用户自定义语音审核任务控制参数
|
|
2049
|
+
*/
|
|
2050
|
+
export interface UserDefineAsrTextReviewTemplateInfoForUpdate {
|
|
2051
|
+
/**
|
|
2052
|
+
* 用户自定语音审核任务开关,可选值:
|
|
2053
|
+
<li>ON:开启自定义语音审核任务;</li>
|
|
2054
|
+
<li>OFF:关闭自定义语音审核任务。</li>
|
|
2055
|
+
*/
|
|
2056
|
+
Switch?: string;
|
|
2057
|
+
/**
|
|
2058
|
+
* 用户自定义语音过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义语音关键词素材时需要添加对应标签。
|
|
2059
|
+
标签个数最多 10 个,每个标签长度最多 16 个字符。
|
|
2060
|
+
*/
|
|
2061
|
+
LabelSet?: Array<string>;
|
|
2062
|
+
/**
|
|
2063
|
+
* 判定涉嫌违规的分数阈值,当审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
|
|
2064
|
+
*/
|
|
2065
|
+
BlockConfidence?: number;
|
|
2066
|
+
/**
|
|
2067
|
+
* 判定需人工复核是否违规的分数阈值,当审核达到该分数以上,认为需人工复核。取值范围:0~100。
|
|
2068
|
+
*/
|
|
2069
|
+
ReviewConfidence?: number;
|
|
2070
|
+
}
|
|
1990
2071
|
/**
|
|
1991
2072
|
* 视频画面质量评价的控制参数。
|
|
1992
2073
|
*/
|
|
@@ -3824,6 +3905,33 @@ export interface ModifyQualityInspectTemplateResponse {
|
|
|
3824
3905
|
*/
|
|
3825
3906
|
RequestId?: string;
|
|
3826
3907
|
}
|
|
3908
|
+
/**
|
|
3909
|
+
* DescribeProcedureTemplates请求参数结构体
|
|
3910
|
+
*/
|
|
3911
|
+
export interface DescribeProcedureTemplatesRequest {
|
|
3912
|
+
/**
|
|
3913
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
3914
|
+
*/
|
|
3915
|
+
SubAppId?: number;
|
|
3916
|
+
/**
|
|
3917
|
+
* 任务流模板名字过滤条件,数组长度限制:100。
|
|
3918
|
+
*/
|
|
3919
|
+
Names?: Array<string>;
|
|
3920
|
+
/**
|
|
3921
|
+
* 任务流模板类型过滤条件,可选值:
|
|
3922
|
+
<li>Preset:系统预置任务流模板;</li>
|
|
3923
|
+
<li>Custom:用户自定义任务流模板。</li>
|
|
3924
|
+
*/
|
|
3925
|
+
Type?: string;
|
|
3926
|
+
/**
|
|
3927
|
+
* 分页偏移量,默认值:0。
|
|
3928
|
+
*/
|
|
3929
|
+
Offset?: number;
|
|
3930
|
+
/**
|
|
3931
|
+
* 返回记录条数,默认值:10,最大值:100。
|
|
3932
|
+
*/
|
|
3933
|
+
Limit?: number;
|
|
3934
|
+
}
|
|
3827
3935
|
/**
|
|
3828
3936
|
* 即时转码视频模板更新配置。
|
|
3829
3937
|
*/
|
|
@@ -5984,9 +6092,7 @@ export interface ModifyRoundPlayRequest {
|
|
|
5984
6092
|
*/
|
|
5985
6093
|
Desc?: string;
|
|
5986
6094
|
/**
|
|
5987
|
-
*
|
|
5988
|
-
<li>Disabled:结束播放,结束后轮播任务不能再次启动。</li>
|
|
5989
|
-
|
|
6095
|
+
* 播放状态,可选值:<li>Disabled:停止播放。</li><li>Enabled:启播时长到达后启动播放。</li>
|
|
5990
6096
|
*/
|
|
5991
6097
|
Status?: string;
|
|
5992
6098
|
/**
|
|
@@ -6272,23 +6378,17 @@ export interface ModifyAnimatedGraphicsTemplateRequest {
|
|
|
6272
6378
|
Comment?: string;
|
|
6273
6379
|
}
|
|
6274
6380
|
/**
|
|
6275
|
-
*
|
|
6381
|
+
* DescribeAIAnalysisTemplates请求参数结构体
|
|
6276
6382
|
*/
|
|
6277
|
-
export interface
|
|
6383
|
+
export interface DescribeAIAnalysisTemplatesRequest {
|
|
6278
6384
|
/**
|
|
6279
6385
|
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
6280
6386
|
*/
|
|
6281
6387
|
SubAppId?: number;
|
|
6282
6388
|
/**
|
|
6283
|
-
*
|
|
6284
|
-
*/
|
|
6285
|
-
Names?: Array<string>;
|
|
6286
|
-
/**
|
|
6287
|
-
* 任务流模板类型过滤条件,可选值:
|
|
6288
|
-
<li>Preset:系统预置任务流模板;</li>
|
|
6289
|
-
<li>Custom:用户自定义任务流模板。</li>
|
|
6389
|
+
* 音视频内容分析模板唯一标识过滤条件,数组长度最大值:100。
|
|
6290
6390
|
*/
|
|
6291
|
-
|
|
6391
|
+
Definitions?: Array<number | bigint>;
|
|
6292
6392
|
/**
|
|
6293
6393
|
* 分页偏移量,默认值:0。
|
|
6294
6394
|
*/
|
|
@@ -6385,6 +6485,23 @@ export interface DeleteWordSamplesRequest {
|
|
|
6385
6485
|
*/
|
|
6386
6486
|
SubAppId?: number;
|
|
6387
6487
|
}
|
|
6488
|
+
/**
|
|
6489
|
+
* FastEditMedia返回参数结构体
|
|
6490
|
+
*/
|
|
6491
|
+
export interface FastEditMediaResponse {
|
|
6492
|
+
/**
|
|
6493
|
+
* 快速编辑后的视频的媒体文件的唯一标识。
|
|
6494
|
+
*/
|
|
6495
|
+
FileId?: string;
|
|
6496
|
+
/**
|
|
6497
|
+
* 快速编辑后的媒体播放地址。
|
|
6498
|
+
*/
|
|
6499
|
+
Url?: string;
|
|
6500
|
+
/**
|
|
6501
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6502
|
+
*/
|
|
6503
|
+
RequestId?: string;
|
|
6504
|
+
}
|
|
6388
6505
|
/**
|
|
6389
6506
|
* 空的轨道片段,用来进行时间轴的占位。如需要两个音频片段之间有一段时间的静音,可以用 EmptyTrackItem 来进行占位。
|
|
6390
6507
|
*/
|
|
@@ -7973,7 +8090,7 @@ export interface ManageTaskRequest {
|
|
|
7973
8090
|
SubAppId?: number;
|
|
7974
8091
|
}
|
|
7975
8092
|
/**
|
|
7976
|
-
*
|
|
8093
|
+
* 轮播播放节目信息
|
|
7977
8094
|
*/
|
|
7978
8095
|
export interface RoundPlayListItemInfo {
|
|
7979
8096
|
/**
|
|
@@ -7987,6 +8104,10 @@ export interface RoundPlayListItemInfo {
|
|
|
7987
8104
|
Type 对应的格式必须为 HLS 格式。
|
|
7988
8105
|
*/
|
|
7989
8106
|
AudioVideoType: string;
|
|
8107
|
+
/**
|
|
8108
|
+
* 播放节目的 ID,由系统分配。
|
|
8109
|
+
*/
|
|
8110
|
+
ItemId?: string;
|
|
7990
8111
|
/**
|
|
7991
8112
|
* 指定播放的转码模版,当 AudioVideoType 为 Transcode 时必须指定。
|
|
7992
8113
|
*/
|
|
@@ -13055,6 +13176,19 @@ export interface ProhibitedAsrReviewTemplateInfo {
|
|
|
13055
13176
|
*/
|
|
13056
13177
|
ReviewConfidence?: number;
|
|
13057
13178
|
}
|
|
13179
|
+
/**
|
|
13180
|
+
* HandleCurrentPlaylist返回参数结构体
|
|
13181
|
+
*/
|
|
13182
|
+
export interface HandleCurrentPlaylistResponse {
|
|
13183
|
+
/**
|
|
13184
|
+
* 操作成功的节目列表。
|
|
13185
|
+
*/
|
|
13186
|
+
RoundPlaylist?: Array<RoundPlayListItemInfo>;
|
|
13187
|
+
/**
|
|
13188
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13189
|
+
*/
|
|
13190
|
+
RequestId?: string;
|
|
13191
|
+
}
|
|
13058
13192
|
/**
|
|
13059
13193
|
* PushUrlCache请求参数结构体
|
|
13060
13194
|
*/
|
|
@@ -16977,28 +17111,38 @@ export interface ReviewTemplate {
|
|
|
16977
17111
|
UpdateTime?: string;
|
|
16978
17112
|
}
|
|
16979
17113
|
/**
|
|
16980
|
-
*
|
|
17114
|
+
* DescribeCurrentPlaylist请求参数结构体
|
|
16981
17115
|
*/
|
|
16982
|
-
export interface
|
|
17116
|
+
export interface DescribeCurrentPlaylistRequest {
|
|
16983
17117
|
/**
|
|
16984
|
-
*
|
|
16985
|
-
<li>ON:开启自定义语音审核任务;</li>
|
|
16986
|
-
<li>OFF:关闭自定义语音审核任务。</li>
|
|
17118
|
+
* <b>点播[应用](/document/product/266/14574) ID。</b>
|
|
16987
17119
|
*/
|
|
16988
|
-
|
|
17120
|
+
SubAppId: number;
|
|
16989
17121
|
/**
|
|
16990
|
-
*
|
|
16991
|
-
标签个数最多 10 个,每个标签长度最多 16 个字符。
|
|
17122
|
+
* 轮播播单唯一标识。
|
|
16992
17123
|
*/
|
|
16993
|
-
|
|
17124
|
+
RoundPlayId: string;
|
|
16994
17125
|
/**
|
|
16995
|
-
*
|
|
17126
|
+
* 返回的播放列表的长度。最大10,默认值为5。
|
|
16996
17127
|
*/
|
|
16997
|
-
|
|
17128
|
+
Limit?: number;
|
|
17129
|
+
}
|
|
17130
|
+
/**
|
|
17131
|
+
* FastEditMedia请求参数结构体
|
|
17132
|
+
*/
|
|
17133
|
+
export interface FastEditMediaRequest {
|
|
16998
17134
|
/**
|
|
16999
|
-
*
|
|
17135
|
+
* 输入的媒体文件信息。最多支持传入100个媒体。
|
|
17000
17136
|
*/
|
|
17001
|
-
|
|
17137
|
+
FileInfos: Array<FastEditMediaFileInfo>;
|
|
17138
|
+
/**
|
|
17139
|
+
* ClipMode 用来表示剪辑时间点落在一个 TS 分片中间时,是否包含这个分片。共有两种取值: <li>StartInclusiveEndInclusive:当剪辑起始时间点和结束时间点落在一个分片的中间时,都会包含这个分片;</li> <li>StartInclusiveEndExclusive:当起始时间点落在一个分片的中间时,会包含这个分片;而当结束时间点落在一个分片的中间时,不会包含这个分片。</li> 不填时,默认为 StartInclusiveEndInclusive。
|
|
17140
|
+
*/
|
|
17141
|
+
ClipMode?: string;
|
|
17142
|
+
/**
|
|
17143
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
17144
|
+
*/
|
|
17145
|
+
SubAppId?: number;
|
|
17002
17146
|
}
|
|
17003
17147
|
/**
|
|
17004
17148
|
* 点播文件视频流信息
|
|
@@ -17180,13 +17324,17 @@ export interface WeChatMiniProgramPublishResponse {
|
|
|
17180
17324
|
*/
|
|
17181
17325
|
export interface DescribeRoundPlaysResponse {
|
|
17182
17326
|
/**
|
|
17183
|
-
*
|
|
17327
|
+
* 符合过滤条件的轮播播单总数。已经废弃,分批次查询请请使用 ScrollToken 参数。
|
|
17184
17328
|
*/
|
|
17185
17329
|
TotalCount?: number;
|
|
17186
17330
|
/**
|
|
17187
17331
|
* 轮播播单详情列表。
|
|
17188
17332
|
*/
|
|
17189
17333
|
RoundPlaySet?: Array<RoundPlayInfo>;
|
|
17334
|
+
/**
|
|
17335
|
+
* 翻页标识,当请求未返回所有数据,该字段表示下一条记录的 ID。当该字段为空,说明已无更多数据。
|
|
17336
|
+
*/
|
|
17337
|
+
ScrollToken?: string;
|
|
17190
17338
|
/**
|
|
17191
17339
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
17192
17340
|
*/
|
|
@@ -19204,6 +19352,31 @@ export interface DescribeHeadTailTemplatesResponse {
|
|
|
19204
19352
|
*/
|
|
19205
19353
|
RequestId?: string;
|
|
19206
19354
|
}
|
|
19355
|
+
/**
|
|
19356
|
+
* HandleCurrentPlaylist请求参数结构体
|
|
19357
|
+
*/
|
|
19358
|
+
export interface HandleCurrentPlaylistRequest {
|
|
19359
|
+
/**
|
|
19360
|
+
* <b>点播[应用](/document/product/266/14574) ID。</b>
|
|
19361
|
+
*/
|
|
19362
|
+
SubAppId: number;
|
|
19363
|
+
/**
|
|
19364
|
+
* 轮播播单唯一标识。
|
|
19365
|
+
*/
|
|
19366
|
+
RoundPlayId: string;
|
|
19367
|
+
/**
|
|
19368
|
+
* 操作类型,取值有:<li>Insert:向当前播放列表插入播放节目。</li> <li>InsertTemporary:向当前播放列表临时插入播放节目。只能插入到当前正在播放的节目后面,临时插入的节目只在本次轮播过程生效。</li><li>Delete:删除播放列表中的播放节目。不能删除正在播放的节目。</li>
|
|
19369
|
+
*/
|
|
19370
|
+
Operation: string;
|
|
19371
|
+
/**
|
|
19372
|
+
* 播单节目 ID。当 Operation 为 Insert 时必填,表示插入的节目列表位于该播放节目之后。插入的位置必须在当前正在播放的节目之后。
|
|
19373
|
+
*/
|
|
19374
|
+
ItemId?: string;
|
|
19375
|
+
/**
|
|
19376
|
+
* 节目列表。当 Operation 为 Insert、InsertTemporary、Delete 时必填,表示要操作的节目列表。列表长度最大为10。
|
|
19377
|
+
*/
|
|
19378
|
+
RoundPlaylist?: Array<RoundPlayListItemInfo>;
|
|
19379
|
+
}
|
|
19207
19380
|
/**
|
|
19208
19381
|
* 鉴别涉及令人不安全的信息的任务控制参数
|
|
19209
19382
|
*/
|
|
@@ -19574,6 +19747,34 @@ export interface MediaTrack {
|
|
|
19574
19747
|
*/
|
|
19575
19748
|
TrackItems: Array<MediaTrackItem>;
|
|
19576
19749
|
}
|
|
19750
|
+
/**
|
|
19751
|
+
* 快速媒体编辑操作的输入媒体类型
|
|
19752
|
+
*/
|
|
19753
|
+
export interface FastEditMediaFileInfo {
|
|
19754
|
+
/**
|
|
19755
|
+
* 媒体的 ID。
|
|
19756
|
+
*/
|
|
19757
|
+
FileId: string;
|
|
19758
|
+
/**
|
|
19759
|
+
* 操作的音视频类型,可选值有:
|
|
19760
|
+
<li>Transcode:转码输出;</li>
|
|
19761
|
+
<li>Original:原始音视频。</li>
|
|
19762
|
+
注意:操作的音视频,必须为 HLS 格式。
|
|
19763
|
+
*/
|
|
19764
|
+
AudioVideoType: string;
|
|
19765
|
+
/**
|
|
19766
|
+
* 当 AudioVideoType 为 Transcode 时有效,表示操作媒体的的转码模板 ID。
|
|
19767
|
+
*/
|
|
19768
|
+
TranscodeDefinition?: number;
|
|
19769
|
+
/**
|
|
19770
|
+
* 媒体剪辑起始的偏移时间,单位:秒。
|
|
19771
|
+
*/
|
|
19772
|
+
StartTimeOffset?: number;
|
|
19773
|
+
/**
|
|
19774
|
+
* 媒体剪辑结束的时间偏移,单位:秒。
|
|
19775
|
+
*/
|
|
19776
|
+
EndTimeOffset?: number;
|
|
19777
|
+
}
|
|
19577
19778
|
/**
|
|
19578
19779
|
* 云点播存储用量的分区统计数据
|
|
19579
19780
|
*/
|
|
@@ -19606,43 +19807,31 @@ export interface StorageStatData {
|
|
|
19606
19807
|
DeepArchiveStorage: number;
|
|
19607
19808
|
}
|
|
19608
19809
|
/**
|
|
19609
|
-
*
|
|
19810
|
+
* 轮播节目播放信息
|
|
19610
19811
|
*/
|
|
19611
|
-
export interface
|
|
19612
|
-
/**
|
|
19613
|
-
* 转码任务 ID。
|
|
19614
|
-
*/
|
|
19615
|
-
TaskId: string;
|
|
19616
|
-
/**
|
|
19617
|
-
* 错误码
|
|
19618
|
-
<li>0:成功;</li>
|
|
19619
|
-
<li>其他值:失败。</li>
|
|
19620
|
-
*/
|
|
19621
|
-
ErrCode: number;
|
|
19812
|
+
export interface RoundPlayFilePlayInfo {
|
|
19622
19813
|
/**
|
|
19623
|
-
*
|
|
19814
|
+
* 播单节目的 ID,由系统分配。
|
|
19624
19815
|
*/
|
|
19625
|
-
|
|
19816
|
+
ItemId?: string;
|
|
19626
19817
|
/**
|
|
19627
|
-
*
|
|
19628
|
-
*/
|
|
19629
|
-
FileId: string;
|
|
19630
|
-
/**
|
|
19631
|
-
* 被转码文件名称。
|
|
19818
|
+
* 媒体文件标识。
|
|
19632
19819
|
*/
|
|
19633
|
-
|
|
19820
|
+
FileId?: string;
|
|
19634
19821
|
/**
|
|
19635
|
-
*
|
|
19822
|
+
* 启播时间,格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#52)。
|
|
19636
19823
|
*/
|
|
19637
|
-
|
|
19824
|
+
StartPlayTime?: string;
|
|
19638
19825
|
/**
|
|
19639
|
-
*
|
|
19826
|
+
* 播放时长,单位为秒。
|
|
19827
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19640
19828
|
*/
|
|
19641
|
-
|
|
19829
|
+
Duration?: number;
|
|
19642
19830
|
/**
|
|
19643
|
-
*
|
|
19831
|
+
* 播放进度,单位为妙。
|
|
19832
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19644
19833
|
*/
|
|
19645
|
-
|
|
19834
|
+
Progress?: number;
|
|
19646
19835
|
}
|
|
19647
19836
|
/**
|
|
19648
19837
|
* DescribeFileAttributes请求参数结构体
|