从音频文件中提取文字(语音转文字),需要腾讯云 API 凭据。当用户提到音频转文字、语音识别、ASR、音频转字幕时使用。
72
87%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
从音频里提取文字
使用语音识别 API 从音频中提取文字。
⚠️ 注意:本地语音文件不能大于 5MB。
office/skills/video/audio2txt/
from office.skills.video import audio2txt
audio2txt(
audio_path='./test.mp3',
appid='your_appid',
secret_id='your_secret_id',
secret_key='your_secret_key'
)| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
audio_path | str | 是 | - | 音频文件路径 |
appid | str | 是 | - | 语音识别 API 的应用 ID |
secret_id | str | 是 | - | 语音识别 API 的密钥 ID |
secret_key | str | 是 | - | 语音识别 API 的密钥 |
None
from office.skills.video import audio2txt
audio2txt(
audio_path='./audio.mp3',
appid='your_appid',
secret_id='your_secret_id',
secret_key='your_secret_key'
)office.api.video.audio2txt
2b1996b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.