Groq Whisper 多 Key 并发语音转写 CLI 工具
Project description
groq-whisper-cli
Groq Whisper 多 Key 并发语音转写 CLI 工具。
功能
- silero-vad 本地 VAD 智能切片
- 多 API Key 配额感知负载均衡
- 429 自动退避 + Key 切换
- 异步并发协程池
- 输出 SRT 字幕 + TXT 文本
安装
# 直接通过 uvx 运行(无需安装)
uvx run groq-whisper-cli -i audio.mp3
# 或安装到本地
uv tool install groq-whisper-cli
groq-whisper-cli -i audio.mp3
前置要求
- Python 3.12+
- ffmpeg(用于音频提取)
API Key 配置
按优先级查找:
--key-file/-k参数指定文件(每行一个 key)- 当前目录下的
key.txt - 环境变量
GROQ_API_KEY(多个 key 用逗号分隔)
# 方式一:环境变量
export GROQ_API_KEY="gsk_xxx,gsk_yyy"
# 方式二:key 文件
echo "gsk_xxx" > key.txt
echo "gsk_yyy" >> key.txt
# 方式三:命令行参数
groq-whisper-cli -i audio.mp3 -k /path/to/key.txt
用法
# 基本用法
groq-whisper-cli -i audio.mp3
# 指定语言和输出目录
groq-whisper-cli -i video.mp4 -l en -o ./output
# 多文件处理
groq-whisper-cli -i *.mp4 -w 8
# 完整参数
groq-whisper-cli -i audio.mp3 \
-k key.txt \
-o ./transcript \
-w 4 \
--chunk-sec 120 \
-l zh \
--retries 8
参数
| 参数 | 缩写 | 默认值 | 说明 |
|---|---|---|---|
input |
- | 必填 | 输入文件路径,支持通配符 |
--key-file |
-k |
- | API Key 文件路径 |
--out |
-o |
./transcript |
输出目录 |
--workers |
-w |
4 |
并发 worker 数 |
--chunk-sec |
- | 120 |
VAD 切片最大时长(秒) |
--lang |
-l |
zh |
ISO-639-1 语言代码 |
--retries |
- | 8 |
每个分片最大重试次数 |
作为库使用
from groq_whisper import GroqKeyManager, AudioSplitter, GroqTranscriber
key_manager = GroqKeyManager(["gsk_xxx", "gsk_yyy"])
splitter = AudioSplitter(max_chunk_sec=120)
chunks = splitter.split("audio.mp3")
transcriber = GroqTranscriber(key_manager=key_manager, language="zh")
results = asyncio.run(transcriber.transcribe_all(chunks))
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
groq_whisper_cli-0.1.2.tar.gz
(26.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file groq_whisper_cli-0.1.2.tar.gz.
File metadata
- Download URL: groq_whisper_cli-0.1.2.tar.gz
- Upload date:
- Size: 26.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.15 {"installer":{"name":"uv","version":"0.9.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b84f843c1529cc034340712506b7ac32549f6d8579d0b2f9a4c263f057fad63b
|
|
| MD5 |
5032ad3934702949e08a2b472615f3a4
|
|
| BLAKE2b-256 |
7dbecb1b643f055cd436df815b562ed8456a660915e7c83222f8080e3cd2dd2b
|
File details
Details for the file groq_whisper_cli-0.1.2-py3-none-any.whl.
File metadata
- Download URL: groq_whisper_cli-0.1.2-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.15 {"installer":{"name":"uv","version":"0.9.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc87a5c1e7dde147c2eb7c4b48ae7de614b54feaed8a09b98eff4e473d3e9d8f
|
|
| MD5 |
6cb9bd9e07cccddb708d11627a86260c
|
|
| BLAKE2b-256 |
ffeb6bc69987dbf888e4ca4e070fd14236150395559e346234ce1e261b0dec29
|