Install
openclaw skills install ai-notes-for-video百度网盘AI视频笔记是一款基于大模型的视频内容理解工具,可以对视频(本地视频,网络视频)语音识别生成文稿笔记、大纲笔记、图文笔记三种笔记格式。当用户需要从视频生成笔记、总结视频内容、或将视频转化为文字记录时使用,经典场景(教育,会议视频总结笔记,短视频文案建议,关键信息提取)
openclaw skills install ai-notes-for-video| Code | Status | Action |
|---|---|---|
| 10000 | 进行中 | 继续轮询 |
| 10002 | 完成 | 输出解析结果 |
| Other | 失败 | 提示异常信息 |
| Type | Description |
|---|---|
| 1 | 文稿笔记 |
| 2 | 大纲笔记 |
| 3 | 图文笔记 |
Endpoint: POST /v2/tools/ai_note/task_create
Parameters:
video_url (required): Public video URLExample:
python3 scripts/ai_notes_task_create.py --video_url='https://example.com/video.mp4'
Response:
{
"task_id": "uuid-string"
}
Endpoint: GET /v2/tools/ai_note/query
Parameters:
task_id (required): Task ID from create endpointExample:
python3 scripts/ai_notes_task_query.py --task_id="task-id-here"
Response (Completed):
[
{
"状态": "完成",
"文稿笔记": ["note1", "note2"]
},
{
"状态": "完成",
"大纲笔记": ["note1", "note2"]
},
{
"状态": "完成",
"图文笔记": ["note1", "note2"]
}
]
task_idpython3 scripts/ai_notes_task_query.py --task_id="task-id-here"
Use the polling script for automatic status updates:
python3 scripts/ai_notes_poll.py --task_id="task-id-here" [--max_attempts=30] [--interval=5]
Examples:
# Default: 20 attempts, 3-second intervals
python3 scripts/ai_notes_poll.py --task_id="task-id-here"
# Custom: 30 attempts, 5-second intervals
python3 scripts/ai_notes_poll.py --task_id="task-id-here" --max_attempts=30 --interval=5
Output:
[1/20] Processing... 25%