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.0.tar.gz
(35.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.0.tar.gz.
File metadata
- Download URL: groq_whisper_cli-0.1.0.tar.gz
- Upload date:
- Size: 35.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3603f9794bd917422312b3b67bf27bdb089d347baf718d0047323935dfd4f04
|
|
| MD5 |
1563ef422f80ce9a0a0662ae46e32250
|
|
| BLAKE2b-256 |
15d017df44c85c8c9d077a5eb8c9c1c94962c6344cb15c49566ad56ee8a6d786
|
File details
Details for the file groq_whisper_cli-0.1.0-py3-none-any.whl.
File metadata
- Download URL: groq_whisper_cli-0.1.0-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf7979a797d7447acf23709ae7998f39884fd09555baa780cb79dc7005178cad
|
|
| MD5 |
cd90bda8744aec3fe610897f8dff3a86
|
|
| BLAKE2b-256 |
99750dcfe796cfcfe3029304d11500366905a172603bed4dc4859e35679318cb
|