Skip to main content
RapidSpeech Logo

RapidSpeech.cpp

Private speech AI that runs where your users are.

ASR · streaming ASR · TTS · VAD · voice cloning
One native C/C++ runtime. Python-simple. GGUF-powered.

Try in your browser · Run in Colab · Models · CLI guide

Hugging Face models ModelScope models GitHub stars

English | 简体中文

RapidSpeech.cpp gives applications local speech recognition, text-to-speech, voice activity detection and voice cloning without sending audio to a cloud service. The runtime is pure C/C++ on ggml, models use GGUF, and Python users get installable wheels instead of a heavyweight PyTorch stack.


Install, Then Speak or Transcribe

# Choose one package for your machine
pip install rapidspeech-metal  # macOS / Apple Silicon
pip install rapidspeech-cuda   # Linux / NVIDIA
pip install rapidspeech        # CPU, Linux / Windows

rapidspeech transcribe your-audio.wav             # speech → text
rapidspeech speak "你好,欢迎使用语音合成。" -o hello.wav   # text → speech
rapidspeech serve                                # OpenAI API + browser console

No model paths, no CMake, no config. The first run auto-downloads the default models (sha256-verified, resumable, cached in ~/.cache/rapidspeech/models/); inference uses no network after the files are cached. Set RAPIDSPEECH_OFFLINE=1 to enforce offline mode.

Example result from an Apple M1 Pro using Metal:

$ rapidspeech transcribe news-15s.wav
model: FunASRNano  backend: MTL0
15.10s audio in 2.08s (RTF 0.138)
国家发展改革委等部门发布关于开展重点行业节能降碳改造攻坚三年行动的通知。通知提出,重点行业能源消耗和二氧化碳排放的规模大、强度高。

Something broken? rapidspeech doctor checks your install, backends and model cache, and prints the exact fix for every problem it finds. See docs/cli.md for all commands (models, pull, offline mode, mirrors).

Want to see the whole loop at once? rapidspeech serve starts the native server, opens http://127.0.0.1:8080/webui.html, and exposes the browser console, OpenAI-compatible HTTP, and WebSocket streaming ASR/TTS endpoints from the same process. Models, backend, and per-request latency are shown on screen; nothing leaves localhost.

The default TTS model is Mandarin Kokoro v1.1-zh. Curated voice packs are available through the model registry, and English words embedded in Chinese text are supported. For English and voice-cloning TTS, see the model guides.

Try Before Installing

The browser demo runs inference client-side with WebAssembly and WebGPU:

It includes offline ASR, microphone ASR with VAD, and local TTS. Your model and audio stay in the browser session.

Use It From Python

rapidspeech pull funasr-nano     # prints the local model path
import os
import rapidspeech

model = os.path.expanduser("~/.cache/rapidspeech/models/funasr-nano-q4_k_m.gguf")
asr = rapidspeech.asr_offline(model)
asr.push_audio(pcm)              # 1-D float32 mono PCM
asr.process()
print(asr.get_text())

TTS, streaming ASR, VAD and voice cloning: Python examples.


What You Can Build

  • Private transcription: offline files, VAD-segmented audio, hotword biasing for names and domain terms.
  • Live captions and voice input: microphone streaming with partial and final results.
  • Local speech output: multilingual TTS, expressive synthesis and zero-shot voice cloning.
  • A local speech service: OpenAI-compatible HTTP endpoints, WebSocket streaming and MCP from one server.
  • Browser and native applications: WASM/JavaScript, Python, C API and self-contained C++ executables.

Why RapidSpeech.cpp

  1. Local by construction. Audio is processed by the native runtime on your machine. Model downloads are explicit and offline mode is enforceable.
  2. A speech workflow, not only a model runner. VAD, streaming buffers, hotword biasing, Chinese text normalization, speaker embeddings, model quantization and serving live in the same project.
  3. One core, several deployment surfaces. Use Python while prototyping, then embed the C API, ship a native executable, run a local server, or move the workflow into the browser.

The shared GGUF format targets CPU, Metal, CUDA, Vulkan, CANN, OpenCL and WebGPU. Backend support and optimization vary by model; the model guides record the current paths and known limitations.


Measured Performance

Apple M1 Pro, macOS, default models, warm inference, 5 runs each. The table is generated from raw JSON in benchmarks/results/ — see benchmarks/README.md for the rules and one-command reproduction on your own machine:

Task Model Backend Cold start RTF (median) RTF (p95)
ASR funasr-nano q4_k_m (692 MB) Metal 0.78 s 0.106 0.132
ASR funasr-nano q4_k_m CPU ×4 0.41 s 0.172 0.210
TTS kokoro-zh q8_0 (107 MB) Metal 0.24 s 0.362 0.363
TTS kokoro-zh q8_0 CPU ×4 0.13 s 0.693 0.758

RTF is processing time divided by audio duration. Lower is faster; RTF below 1 means faster than real time. Results depend on hardware, backend, model, quantization and input; the CLI prints RTF on every run. CUDA / Windows / WASM platforms are marked "awaiting community reproduction" in benchmarks/README.md — we publish measurements, not estimates. The OmniVoice guide includes a per-model quantization/step matrix.


Supported Today

Task Models Status
ASR SenseVoice-small, FunASR-nano, X-ASR (Zipformer2, streaming) Stable
VAD Silero VAD, FireRedVAD Stable
TTS Kokoro, CosyVoice3, OmniVoice, OpenVoice2, IndexTTS-2 Active
Speaker CAMPPlus Stable

X-ASR — Chinese/English Zipformer2 transducer (icefall/k2). One GGUF serves both offline full-context decoding and true chunked streaming (per-layer left-context caches, sub-second partials, --chunk-len 16/32/48/96/192 fbank frames). Punctuation and casing, greedy transducer decode, runs on CPU / Metal / CUDA / Vulkan and quantizes to q4_k_m (99.5 MB).

IndexTTS-2 — expressive zero-shot voice-cloning TTS (GPT + S2Mel CFM + BigVGAN-v2 vocoder) with 4-mode emotion control (reference audio / vector / text / Qwen). See docs/index2tts.md.

Use It Your Way

Surface Best for Start here
rapidspeech CLI First run, scripts and local tools CLI guide
Python API Application integration and NumPy audio Python examples
Native C API Desktop/mobile bindings and embedded runtimes include/rapidspeech.h
HTTP/WebSocket/MCP Local services and agent integrations Server guide
Browser WASM Client-side ASR, VAD and TTS WASM guide
Node.js JavaScript tooling with the WASM runtime Node.js example

In Progress

Qwen3-ASR, Qwen3-TTS.


Documentation


Native C++ CLI

Download Models

The pip CLI handles this automatically (see the top of this page). For the C++ CLIs, download GGUF files manually from:

Build from Source

git clone https://github.com/RapidAI/RapidSpeech.cpp
cd RapidSpeech.cpp
git submodule sync && git submodule update --init --recursive
cmake -B build
cmake --build build --config Release

Self-contained executables (no runtime DLL/.so dependencies) — build the core and ggml statically into each CLI with -DRS_STATIC_EXE=ON:

# Windows / MSVC
cmake -B build -G "Visual Studio 17 2022" -A x64 -DRS_STATIC_EXE=ON
cmake --build build --config Release --parallel
# Linux / macOS
cmake -B build -DRS_STATIC_EXE=ON -DCMAKE_BUILD_TYPE=Release
cmake --build build -j

Build artifacts are located in the build/ directory:

  • rs-asr-offline — Offline ASR command-line tool
  • rs-asr-vad-online — VAD-segmented quasi-streaming ASR command-line tool
  • rs-asr-online — True chunked streaming ASR (X-ASR; mic or WAV, live partials)
  • rs-tts-offline — Offline TTS command-line tool
  • rs-server — OpenAI-compatible HTTP API + MCP server (ASR + TTS)
  • rs-quantize — Model quantization tool

Core Commands

Offline ASR

./build/rs-asr-offline \
  -m /path/to/funasr-nano-fp16.gguf \
  -w /path/to/audio.wav \
  -t 4 \
  --gpu true

VAD-segmented ASR

./build/rs-asr-offline \
  -m /path/to/funasr-nano-fp16.gguf \
  -v /path/to/silero_vad_v6.gguf \
  -w /path/to/audio.wav \
  -t 4 \
  --vad-threshold 0.5 \
  --silence-ms 600

Hotword biasing (FunASR-Nano)

# Bias proper nouns / fix homophones ; use --hotword-file for a large list
./build/rs-asr-offline \
  -m /path/to/funasr-nano-fp16.gguf \
  -w /path/to/audio.wav \
  --hotwords "阿里巴巴"

See docs/funasr-nano.md for details.

Streaming ASR (X-ASR)

# WAV, real-time paced with live partials (or --fast to run as fast as possible)
./build/rs-asr-online -m /path/to/xasr-q4_k_m.gguf -w /path/to/audio.wav --chunk-len 32
# Microphone
./build/rs-asr-online -m /path/to/xasr-q4_k_m.gguf --mic --chunk-len 16

See docs/x-asr.md for the model, chunk-size / latency tradeoffs, and GGUF conversion.

Text to speech

./build/rs-tts-offline \
  -m /path/to/omnivoice-f16.gguf \
  -t "Hello, welcome to RapidSpeech!" \
  --instruct "male, young adult, moderate pitch" \
  --lang English \
  --n-steps 32 \
  -o output.wav

Quantization

./build/rs-quantize /path/to/input-f16.gguf /path/to/output-q4_k.gguf q4_k

Server (OpenAI API + MCP)

# From the pip package: auto-download defaults, start API, open browser console
rapidspeech serve

# From a native build: serve ASR + TTS over OpenAI-compatible HTTP API and MCP
./build/rs-server --asr-model xasr.gguf --tts-model omnivoice.gguf --port 8080

curl http://127.0.0.1:8080/v1/audio/transcriptions -F file=@audio.wav -F model=rapidspeech-asr
curl http://127.0.0.1:8080/v1/audio/speech -H 'content-type: application/json' \
     -d '{"input":"hello","voice":"female"}' --output out.wav

Also runs as an MCP server (stdio for Claude Desktop, or POST /mcp) and exposes WebSocket streaming endpoints (streaming ASR with partial/final, VAD-segmented ASR, segmented + pure streaming TTS), plus a browser test console (--web-dir examples/server → http://host:port/webui.html). See examples/server/README.md.

Python

See Python examples for offline ASR, streaming ASR, offline TTS, streaming TTS, VAD, and voice cloning.


🤝 Contributing

Contributions are most useful when they include a command that reproduces the change and a result that can be checked. Current high-impact areas:

  • Cross-platform installation and wheel testing.
  • Reproducible latency, memory and quality benchmarks.
  • Streaming, Metal, CUDA, Vulkan and WebGPU performance.
  • Documentation and first-run examples.
  • Model ports with conversion scripts, parity checks and known limitations.

Open an issue before starting a large port so the implementation can align with the runtime architecture.

Acknowledgements

  1. Fun-ASR
  2. llama.cpp
  3. ggml
  4. cppjieba — Chinese word segmentation
  5. WeText — text normalization (ITN/TN)
  6. miniaudio — single-file audio I/O
  7. X-ASR Streaming-focused automatic speech recognition models

Release files for rapidspeech 1.4.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for rapidspeech 1.4.3
File
rapidspeech-1.4.3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
rapidspeech-1.4.3-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
rapidspeech-1.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
rapidspeech-1.4.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
rapidspeech-1.4.3-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
rapidspeech-1.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
rapidspeech-1.4.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
rapidspeech-1.4.3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
rapidspeech-1.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
rapidspeech-1.4.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
rapidspeech-1.4.3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
rapidspeech-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
rapidspeech-1.4.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
rapidspeech-1.4.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
rapidspeech-1.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details

Total release size: 415.2 MB

Release files / rapidspeech-1.4.3-cp313-cp313-win_amd64.whl

Download URL rapidspeech-1.4.3-cp313-cp313-win_amd64.whl
Size 28.0 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
5bf27b7ad5af6e51c245854117720dfc11d92c3cfa64452e2feddd69283b269d
BLAKE2b-256 checksum
How to use checksums
be1e335c06ef6e7b20d2755541ae2ca0080fbdb634d20f4b4ba5ff5e790ebccb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp313-cp313-win32.whl

Download URL rapidspeech-1.4.3-cp313-cp313-win32.whl
Size 28.0 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
90795e8d1593d255f65ef3734e851e6f2aa3970cb62324d24a53b5b659c35e2b
BLAKE2b-256 checksum
How to use checksums
e0e89184895e11861cdf27bdd4c0fdb6de27f5ce0fd530c34c5da1b83b9d9433
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rapidspeech-1.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 27.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8ce6f520f13979858217bc3079a44a85ef4f7a610ffc0217793157ab36deaf42
BLAKE2b-256 checksum
How to use checksums
a8d48a21c47b5951e08510a51a0f7c60aba94c1f17486aaa8a43bee9d2e03b79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp312-cp312-win_amd64.whl

Download URL rapidspeech-1.4.3-cp312-cp312-win_amd64.whl
Size 28.0 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
3336bd0455b96a3e9604206f0011903479d3e38c43958cf2262a9b18822b6b69
BLAKE2b-256 checksum
How to use checksums
7b5ebef0661986461a8518db25a118ffddff4086447edaa4f7deefbceb159613
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp312-cp312-win32.whl

Download URL rapidspeech-1.4.3-cp312-cp312-win32.whl
Size 28.0 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
a65b4e36178ef28c0ee48590f2b7a568a95cfe6dc841542451decec3a555748c
BLAKE2b-256 checksum
How to use checksums
fbbc4772443d89af0602a50fe17d8218be430c6af022e6090771791e1f3a7a16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rapidspeech-1.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 27.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9dcd19b90c0d567c7a2bfb138fe06208721a2b8d1a41e2524a6b562a8254af5d
BLAKE2b-256 checksum
How to use checksums
f078852c1aa698a17c43a26e23ffb88c92451af166a779368f1863bcb1648b6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp311-cp311-win_amd64.whl

Download URL rapidspeech-1.4.3-cp311-cp311-win_amd64.whl
Size 28.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
c74f131b0b658f31f42697a69b6cdc0d2590c4115218cbc4bbbf908b17c498f8
BLAKE2b-256 checksum
How to use checksums
c67c4236de0545e9ea75571eed5ddf446acc1fba33b0f1ab074496b8d099f989
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp311-cp311-win32.whl

Download URL rapidspeech-1.4.3-cp311-cp311-win32.whl
Size 28.0 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
48ae4adce722fa125017038a0c7666c25d38f632550c64eec09cc0d9d6d17556
BLAKE2b-256 checksum
How to use checksums
e31fa8ae9398a776ad51766289db4d9c903d2b713585374acbd0c66e1ddc8c90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rapidspeech-1.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 27.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
eb81decf71b5514e69eb28b2fda105b79d48373be8fb05736c653870803b6da2
BLAKE2b-256 checksum
How to use checksums
c213630abe4937c653341850a2df6e8cbe04dca9f28ec540bcab14e0495808b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp310-cp310-win_amd64.whl

Download URL rapidspeech-1.4.3-cp310-cp310-win_amd64.whl
Size 28.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
39e1f2d79c03afe314fc5db49d8f0711fcef7e973be976c60e303fd165d8ac3a
BLAKE2b-256 checksum
How to use checksums
98a51cf9a350e23fc401e090d4e6dc344f44258362cc21a8b4b23c19fc15d6bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp310-cp310-win32.whl

Download URL rapidspeech-1.4.3-cp310-cp310-win32.whl
Size 28.0 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
83a87974fa8913ece1389136bd082a243b4796ff1f3d111e13c190daeec72af9
BLAKE2b-256 checksum
How to use checksums
eba08e52159f7172abd8f6769c0a0fd6d9635af7fa3ee48658ac4c093be20db3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rapidspeech-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 27.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
239994ef6a241043c34db4f81c3b775c578b59651480cbd3691eca7b44d48ad3
BLAKE2b-256 checksum
How to use checksums
55b44474b988cd6fd4ed34479fe08fba338c0de0fb2a1cd445076e61501c2ff8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp39-cp39-win_amd64.whl

Download URL rapidspeech-1.4.3-cp39-cp39-win_amd64.whl
Size 28.0 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
3c49f330ec6f0a48a89cb8ac02c86caae6966755e910a94c871de62a406db131
BLAKE2b-256 checksum
How to use checksums
8968b5e092282bceafe8fc3b8798f08b9bdac989ee67f4d161e492a51ed1bee7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp39-cp39-win32.whl

Download URL rapidspeech-1.4.3-cp39-cp39-win32.whl
Size 28.0 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
8b8f4aad285bc5b8f9d25102122482905b36b5b290a86fdca9a625bc1485508f
BLAKE2b-256 checksum
How to use checksums
9be0bec8322b183a635f33bfa2ac83c0095635a897c54d1edfe119259e22cdf0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / rapidspeech-1.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rapidspeech-1.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 27.1 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2f15620467e25ead4912a9e4c7660692b3f48cdfa9c564183dba129e2f72bebe
BLAKE2b-256 checksum
How to use checksums
e3a46a0a71e8c194bbc8bbc2314f6375f3ccb27189509d761f3178559d3fd636
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.4.3 This release

15 release files

1.3.0

15 release files

1.2.0

15 release files

1.1.1

15 release files

1.1.0

5 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page