文档转码任务完成后,可以通过 WbTranscodeGet
获取文档转码后的链接。
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
file_name | String | cs.pptx | 转码文件名 |
file_id | String | 6fdf4372f87fd90e63cc705eca7338 | 动态转码结果 file_id,使用动态转码结果时在 SDK 接口传入 |
width | Integer | 1920 | 转码后的页面宽度,单位为像素 |
height | Integer | 1080 | 转码后的页面高度,单位为像素 |
transcode_mode | Integer | 0 | 转码类型
|
images | Object[] | 静态转码图片详情 | |
page_id | Integer | 2 | 页码 ID |
img | String | https://result2.com | 转码图片 URL |
thumbnail_url | String | https://result2_thm.com | 缩略图 URL |
warning | String | 如果该页异常,会转为空白图片,并在此给出提示信息 |
GET https://rtc.volcengineapi.com?Action=WbTranscodeGet&Version=2020-12-01&app_id=600000000000000000000000&task_id=0000000000
{ "ResponseMetadata": { "RequestId": "your_****est_id", "Service": "rtc", "Region": "cn-north-1", "Action": "WbTranscodeGet", "Version": "2020-12-01" }, "Result": { "file_name": "cs.pptx", "width": 1920, "height": 1080, "transcode_mode": 0, "images": [ { "page_id": 1, "img": "https://result1.com", "thumbnail_url": "https://result1_thm.com" }, { "page_id": 2, "img": "https://result2.com", "thumbnail_url": "https://result2_thm.com" } ], "h5_url": "" } }