会议转录内容生成
将会议录音转为结构化
本技能用于访问Plaud智能录音机的数据,包括音频文件、转录文本和AI生成的会议摘要。通过封装好的plaud_client.py客户端,简化认证流程与数据获取操作。
安装步骤
~/.claude/skills/plaud-api/pip install -r ~/.claude/skills/plaud-api/requirements.txt凭证获取流程
F12(Mac为Cmd+Option+I)打开开发者工具https://web.plaud.aitokenstr(含”bearer “前缀的完整令牌)和plaud_user_api_domain(如https://api-euc1.plaud.ai).env文件:
PLAUD_TOKEN=bearer eyJ...your_full_token_here... PLAUD_API_DOMAIN=https://api-euc1.plaud.ai
python3 plaud_client.py list常用命令
python3 plaud_client.py listpython3 plaud_client.py details <file_id> --jsonpython3 plaud_client.py download <file_id> -o output.mp3python3 plaud_client.py download-all -o ./recordings... | jq -r '.data.trans_result.segments[].text'... | jq '.data.ai_content'见下方输入与输出表格。
| 项目 | 内容 |
|---|---|
| 输入 | Plaud网页版凭证(tokenstr、API域名);可选:目标文件ID、输出路径 |
| 输出 | 录音列表、音频MP3、转录文本、AI摘要、文件元数据 |
| 适用人群 | Plaud设备用户、会议记录整理者、语音数据分析师 |
| 不包含 | 官方技术支持、实时录音、其他品牌录音设备 |
api-euc1,配置错误会导致连接失败.env包含敏感信息,注意权限设置避免泄露原始链接:https://github.com/openclaw/skills/tree/main/skills/leonardsellem/plaud-unofficial/SKILL.md
来源类型:社区贡献技能