智能章节

最近更新时间:2024-07-08 11:48:52

我的收藏

接口描述

描述:
查询单个云录制的智能章节,支持 OAuth 2.0鉴权调用,仅支持授权用户为商业版、企业版、教育版。
当该录制文件未开启相关智能化功能或内容处于生成中状态时,不支持调用。
请求方法:GET
接口请求域名:
https://api.meeting.qq.com/v1/smart/chapters


输入参数

以下请求参数列表仅列出了接口请求参数,HTTP 请求头公共参数请参见签名验证章节的 公共参数说明
参数名称
必选
参数类型
参数描述
operator_id
String
操作者 ID。operator_id 必须与 operator_id_type 配合使用。根据 operator_id_type 的值,operator_id 代表不同类型。
operator_id_type
Integer
操作者 ID 类型:
1:userid
2:openid
record_file_id
String
录制文件 ID,录制列表接口会返回该 ID。
lang
String
翻译类型,默认原文展示。
"default":原文(不翻译)
"zh":简体中文
"en":英文
"ja":日语
pwd
String
录制文件的访问密码,非必填。

输出参数

参数名称
参数类型
参数描述
chapter_list
ChapterList 对象数组
录制文件的智能章节列表。

ChapterList 对象

参数名称
参数类型
参数描述
chapter_id
String
章节唯一 ID。
chapter_name
String
章节主题,返回 base64 编码后的结果。
pic_url
String
章节封面图片 url。
start_time
String
章节在视频/音频中开始的时间,单位毫秒。

示例

输入示例

https://api.meeting.qq.com/v1/smart/chapters?record_file_id=17772xxxxxxxx34688&operator_id_type=1&operator_id=xxxx

输出示例

{
"chapter_list": [
{
"chapter_id": "C17772xxxxxxxxxxxxxxx688",
"chapter_name": "6IW+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxO5YiG5Lqr",
"pic_url": "https://myqcloud.com/fast_record_image/xxxxx",
"start_time": "3190"
}
]
}