tencentcloud-sdk-nodejs-vod 4.0.766 → 4.0.768
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 +20 -20
- package/src/services/vod/v20180717/vod_client.ts +4 -3
- package/src/services/vod/v20180717/vod_models.ts +131 -132
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +4 -3
- package/tencentcloud/services/vod/v20180717/vod_client.js +4 -3
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +131 -132
|
@@ -26,7 +26,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
26
26
|
ExtractTraceWatermark(req: ExtractTraceWatermarkRequest, cb?: (error: string, rep: ExtractTraceWatermarkResponse) => void): Promise<ExtractTraceWatermarkResponse>;
|
|
27
27
|
/**
|
|
28
28
|
* 用于异步获取文件属性。
|
|
29
|
-
- 当前仅支持获取源文件的 Md5。
|
|
29
|
+
- 当前仅支持获取源文件的 Md5、Sha1。
|
|
30
30
|
- 对输入文件为 HLS 或 DASH 的情况,仅获取索引文件的属性。
|
|
31
31
|
*/
|
|
32
32
|
DescribeFileAttributes(req: DescribeFileAttributesRequest, cb?: (error: string, rep: DescribeFileAttributesResponse) => void): Promise<DescribeFileAttributesResponse>;
|
|
@@ -574,8 +574,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
574
574
|
*/
|
|
575
575
|
ProcessMedia(req: ProcessMediaRequest, cb?: (error: string, rep: ProcessMediaResponse) => void): Promise<ProcessMediaResponse>;
|
|
576
576
|
/**
|
|
577
|
-
|
|
578
|
-
|
|
577
|
+
* 创建片头片尾模板。
|
|
578
|
+
- 最大支持模版数量为 100 个。
|
|
579
|
+
*/
|
|
579
580
|
CreateHeadTailTemplate(req: CreateHeadTailTemplateRequest, cb?: (error: string, rep: CreateHeadTailTemplateResponse) => void): Promise<CreateHeadTailTemplateResponse>;
|
|
580
581
|
/**
|
|
581
582
|
* 修改用户自定义水印模板,水印类型不允许修改。
|
|
@@ -55,7 +55,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
57
|
* 用于异步获取文件属性。
|
|
58
|
-
- 当前仅支持获取源文件的 Md5。
|
|
58
|
+
- 当前仅支持获取源文件的 Md5、Sha1。
|
|
59
59
|
- 对输入文件为 HLS 或 DASH 的情况,仅获取索引文件的属性。
|
|
60
60
|
*/
|
|
61
61
|
async DescribeFileAttributes(req, cb) {
|
|
@@ -791,8 +791,9 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
791
791
|
return this.request("ProcessMedia", req, cb);
|
|
792
792
|
}
|
|
793
793
|
/**
|
|
794
|
-
|
|
795
|
-
|
|
794
|
+
* 创建片头片尾模板。
|
|
795
|
+
- 最大支持模版数量为 100 个。
|
|
796
|
+
*/
|
|
796
797
|
async CreateHeadTailTemplate(req, cb) {
|
|
797
798
|
return this.request("CreateHeadTailTemplate", req, cb);
|
|
798
799
|
}
|