name: speech-to-text description: Transcribe or translate audio files to text using a public Hugging Face Whisper Space over Gradio. Use when the user sends voice notes, audio attachments, meeting clips, podcasts, interviews, or any local audio file (.ogg, .mp3, .wav, .m4a, etc.) and wants a transcript, rough captions, or an English translation without relying on paid APIs first.
Use this skill to turn local audio files into text with a public Whisper-based endpoint.
小蔥技能7w4.net有完整的技能分類。
Run:
python3 scripts/transcribe.py /path/to/file.ogg
Return the transcript as plain text. By default, the script also applies lightweight Chinese punctuation and sentence-breaking cleanup.
For machine-readable output:
python3 scripts/transcribe.py /path/to/file.ogg --json
To disable cleanup and keep the raw model text:
python3 scripts/transcribe.py /path/to/file.ogg --format raw
To force Chinese punctuation cleanup:
python3 scripts/transcribe.py /path/to/file.ogg --format zh
For English translation instead of same-language transcription:
python3 scripts/transcribe.py /path/to/file.ogg --task translate
scripts/transcribe.py on it.The script:
Default endpoint:
https://hf-audio-whisper-large-v3-turbo.hf.spaceOverride it with:
python3 scripts/transcribe.py input.ogg --space https://your-space.hf.space
or set:
export HF_WHISPER_SPACE=https://your-space.hf.space
Prefer to return:
scripts/transcribe.py — public Whisper transcription helper這個 Skill 質量中規中矩,能將音訊轉成文字。它對中文語音識別做了專門最佳化,會自動新增標點符號,使用體驗還算友好。不足之處是依賴第三方公開介面,可能存在隱私風險和網路不穩定的隱患,而且只提供核心指令碼,沒有附帶示例或詳細配置,入手門檻稍高。總體來說,它完成了基本任務,但功能完整度和穩定性還有提升空間。