openai-whisper-api
通过 OpenAI 音频转录 API (Whisper) 转录语音。支持多种音频格式,可提供提示以优化转录效果。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
通过 OpenAI 音频转录 API (Whisper) 转录语音。支持多种音频格式,可提供提示以优化转录效果。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Expert guide for the NotebookLM CLI (`nlm`) and MCP server - interfaces for Google NotebookLM. Use this skill when users want to interact with NotebookLM programmatically, including: creating/managing notebooks, adding sources (URLs, YouTube, text, Google Drive), generating content (podcasts, reports, quizzes, flashcards, mind maps, slides, infographics, videos, data tables), conducting research, chatting with sources, or automating NotebookLM workflows. Triggers on mentions of "nlm", "notebooklm", "notebook lm", "podcast generation", "audio overview", or any NotebookLM-related automation task.
Use the ctx7 CLI to fetch library documentation, manage AI coding skills, and configure Context7 MCP. Activate when the user mentions "ctx7" or "context7", needs current docs for any library, wants to install/search/generate skills, or needs to set up Context7 for their AI coding agent.
通过 Alpha Vantage API 访问实时和历史股票市场数据、外汇汇率、加密货币价格、大宗商品、经济指标以及 50 多种技术指标。当需要获取股票价格(OHLCV)、公司基本面(损益表、资产负债表、现金流量表)、财报、期权数据、市场新闻/情绪、内部交易、GDP、CPI、国债收益率、金/银/原油价格、比特币价格或计算技术指标(SMA, EMA, MACD, RSI, 布林带)时使用。
用于访问、分析和提取 SEC EDGAR 申报数据的 Python 库。当处理 SEC 申报文件、财务报表(损益表、资产负债表、现金流量表)、XBRL 财务数据、内部交易(Form 4)、机构持仓(13F)、年度/季度报告(10-K, 10-Q)、代理声明(DEF 14A)、8-K 即时事件、按代码/CIK/行业进行公司筛选时使用。支持多周期财务分析及任何 SEC 合规性申报。
用于处理地理空间矢量数据(包括 Shapefile、GeoJSON 和 GeoPackage 文件)的 Python 库。当进行空间分析、几何操作、坐标转换、空间连接、图层叠加、等值线地图绘制或任何涉及读写和分析矢量地理数据的任务时使用。支持 PostGIS 数据库、交互式地图,并与 matplotlib/folium/cartopy 集成。
查询 OFR (美国金融研究办公室) 的 Hedge Fund Monitor API,获取对冲基金数据,包括 SEC Form PF 聚合统计、CFTC 期货交易商持仓、FICC 赞助回购交易量以及 FRB SCOOS 交易对手融资条款。访问关于对冲基金规模、杠杆、交易对手、流动性、复杂性和风险管理的时间序列数据。无需 API Key 或注册。适用于对冲基金研究、系统性风险监测、金融稳定性研究及回购市场分析。
| name | openai-whisper-api |
| description | 通过 OpenAI 音频转录 API (Whisper) 转录语音。支持多种音频格式,可提供提示以优化转录效果。 |
| homepage | https://platform.openai.com/docs/guides/speech-to-text |
| metadata | {"openclaw":{"emoji":"☁️","requires":{"bins":["curl"],"env":["OPENAI_API_KEY"]},"primaryEnv":"OPENAI_API_KEY"}} |
通过 OpenAI 的 /v1/audio/transcriptions 端点转录音频文件。
{baseDir}/scripts/transcribe.sh /path/to/audio.m4a
默认设置:
whisper-1<输入文件名>.txt{baseDir}/scripts/transcribe.sh /path/to/audio.ogg --model whisper-1 --out /tmp/transcript.txt
{baseDir}/scripts/transcribe.sh /path/to/audio.m4a --language zh
{baseDir}/scripts/transcribe.sh /path/to/audio.m4a --prompt "演讲者姓名:彼得,丹尼尔"
{baseDir}/scripts/transcribe.sh /path/to/audio.m4a --json --out /tmp/transcript.json
设置 OPENAI_API_KEY 环境变量,或在 ~/.openclaw/openclaw.json 中配置:
{
skills: {
"openai-whisper-api": {
apiKey: "在此输入您的 OpenAI 密钥",
},
},
}