Vocal Helper — async producer/consumer pipeline turning a live PCM stream into diarized, transcribed utterances and (optionally) a rolling LLM summary. Stages: Voice Activity Detection → online speaker diarization (Hungarian-style cosine clustering on backend embeddings) → STT (pywhispercpp turbo) → optional analyst (Gemma 3 4b via Ollama).
Project description
Vocal Helper
Vocal Helper belongs to a collection of libraries called AI Helpers developed for building Artificial Intelligence.
The Promise
Local-first by design. vocal-helper runs entirely on your machine — transcription, diarization and summarisation happen locally (whisper.cpp / pyannote / NeMo / local Ollama); your audio and transcripts are never uploaded to a third-party service, no telemetry, no account, no cloud lock-in. Your voice — and everyone else's on the recording — is among the most personal data there is, and a transcript is a verbatim record of what was said and by whom; keeping both on your own hardware is what makes this tool safe to point at a real meeting, interview, or therapy session. Part of the AI Helpers suite: sovereignty over your data through local-first Open Source.
Vocal Helper is an async producer/consumer pipeline turning audio into diarized, transcribed utterances — and (optionally) a rolling LLM summary of the conversation. Two paths ship :
- Online (
voh.Pipeline) — live PCM stream → live transcript + live summary. Each stage runs at its own cadence, decoupled by bounded queues. The STT stage warms up on start so the first caption doesn't stall on whisper's cold inference. - Offline (
voh.OfflinePipeline) — full audio buffer → highest-quality diarization (pyannote 3.1 runs the whole meeting in one call — the 2026-07-14 offline map-reduce study found whole-buffer strictly best for DER; chunk-and-stitch survives only as a memory backstop past ~1 h) → full-throttle batched transcript (consecutive segments concatenated into ≤ 24 s whisper calls — ~6.5× lower RTF at better WER per the 2026-07-09 sweep) → summary. Opt back into per-segment ASR withOfflinePipelineConfig(asr={"batch": False}).
Documentation
Pipelines
Every edge is a bounded asyncio.Queue ; every stage is its own
coroutine. Colours follow the
AI Helpers palette.
Online (streaming)
flowchart LR
S([Source<br/><i>PCM frames</i>]):::source
--> V[VAD<br/><i>Silero v5 ONNX</i>]:::vad
--> D[Online Diar<br/><i>TitaNet · cosine clustering</i>]:::diar
--> A[STT<br/><i>whisper.cpp turbo</i>]:::asr
-.-> L[LLM analyst<br/><i>gemma3:4b · rolling summary</i>]:::llm
classDef source fill:#CCE4FF,stroke:#007AFF,stroke-width:2px,color:#0b3d91
classDef vad fill:#00ffef,stroke:#79dbdc,stroke-width:2px,color:#003b3c
classDef diar fill:#EFDCF8,stroke:#AF52DE,stroke-width:2px,color:#4a1063
classDef asr fill:#FFEACC,stroke:#FF9500,stroke-width:2px,color:#5a3300
classDef llm fill:#D4F5D9,stroke:#28CD41,stroke-width:2px,color:#144d1e,stroke-dasharray: 5 5
The dashed edge marks the analyst as optional (llm=None disables it).
Offline (batch)
flowchart LR
S([Source<br/><i>full PCM buffer</i>]):::source
--> D[Offline Diar<br/><i>pyannote 3.1<br/>whole-buffer</i>]:::diar
--> A[STT<br/><i>whisper.cpp turbo</i>]:::asr
-.-> L[LLM analyst<br/><i>gemma3:4b · rolling summary</i>]:::llm
classDef source fill:#CCE4FF,stroke:#007AFF,stroke-width:2px,color:#0b3d91
classDef diar fill:#EFDCF8,stroke:#AF52DE,stroke-width:2px,color:#4a1063
classDef asr fill:#FFEACC,stroke:#FF9500,stroke-width:2px,color:#5a3300
classDef llm fill:#D4F5D9,stroke:#28CD41,stroke-width:2px,color:#144d1e,stroke-dasharray: 5 5
No VAD in the offline path — the diarizer consumes the whole buffer and does its own segmentation.
| Stage | Backend | Notes |
|---|---|---|
| VAD (online only) | Silero v5 ONNX (CPU) | 32 ms window, activity_threshold=0.5, default min_silence_ms=300. |
| Online diarization | nvidia/titanet_large (NeMo, default), pyannote/embedding, or sherpa (torch-free ONNX TitaNet) |
Per-segment embedding + cosine-distance running-mean clustering, join_threshold=0.30. Default backend switched to NeMo by the 2026-06-30 embedding sweep (studies/diar_embedding_backend.py): TitaNet has +76 % separability margin (inter − intra median cosine = 0.354 vs pyannote 0.201) on AMI dev-slice, at 7× per-call latency (45 ms vs 6 ms — still negligible per voiced segment). Pass backend='pyannote' to skip the ~ 5 GB NeMo install, or backend='sherpa' for the torch-free path. |
| Offline diarization | pyannote/speaker-diarization-3.1 (default), nvidia/diar_sortformer_v1 (NeMo), or sherpa (torch-free) |
Whole-buffer call. Inputs longer than ideal_duration_s (3600 s for pyannote — effectively whole-buffer, chunking is a memory backstop only; 60 s for NeMo, forced by its Sortformer 90 s cap) are auto-chunked with 10 s overlap and stitched by cosine AHC at stitch_threshold=0.35. The 2026-07-14 offline map-reduce study found whole-buffer strictly best for DER (0.143 vs 0.170 at 300 s). Which backend is picked is decided by the router below. |
| STT | pywhispercpp turbo |
large-v3-turbo-q5_0 by default. Word timestamps on. Runs in a thread pool so the event loop never stalls. Strongly recommended: supply initial_prompt (domain bias) — cuts WER 15-25 pp and saves up to 39 % RTF per the 2026-06-30 sweep (studies/whisper_prompt_lang_lock.py). |
| LLM analyst (optional) | Ollama-served Gemma 3 4b (gemma3:4b) |
Rolling summary of everything older than 60 s. The recent 60 s window is kept verbatim. Summary refreshes every 60 s of evicted content (flush_every_s=60). Default model gemma3:4b selected by the 2026-06-30 7-model Pareto sweep (studies/llm_model_size_sweep.py): it dominates gemma4:e4b-mlx on BOTH RTF (0.099 vs 0.313, 3× faster) AND cos_sim (0.466 vs 0.420). Pareto front also exposes gemma4:12b-mlx (RTF 2.45, cos_sim 0.496) for offline-batch quality runs, and qwen2.5:3b (RTF 0.043) for tight RTF budgets. |
Backend router — the aiguilleur
Diarization is the one stage with a real backend fork, and there is no single
winner: the best backend depends on the scenario. vocal_helper.router
(voh.select_diarization) turns the measured trade-off into one explicit,
tested decision so the CLI and your own code never hard-code a backend — and it
reports both quality (DER) and speed (RTF) for the scenario, not just a name.
Numbers were re-validated on-machine (studies/router_profile_validation.py,
pyannote.metrics collar 0.25, median DER + RTF) against ground truth — bagarre
(30 short mixes) + AMI dev-slice; sherpa from ADR 0002. DER = quality
(lower better); RTF = speed (< 1 faster than real time):
| Mode | Scenario | Backend | DER (quality) | RTF (speed) | Why |
|---|---|---|---|---|---|
| offline | short ≤ 300 s, ≤ 4 speakers | nemo |
0.142 | 0.051 | End-to-end slot attribution, confusion ~0; ~2.3× better than pyannote on short dense turns (0.330). |
| offline | long / unknown / > 4 speakers | pyannote |
0.122 | 0.067 | Robust default, AMI median inside Bredin 2023's band; NeMo hangs past ~25 min, caps at 4 speakers. |
| offline | torch-free (no PyTorch) | sherpa |
0.174 / 0.148 | 0.58 | ONNX TitaNet-large, beats NeMo Sortformer 0.267, FR+EN validated (ADR 0002). |
| online | any live stream | nemo |
0.586 | 0.030 | Best online embedder at every length (beats online pyannote 0.590/0.844). Online is a latency-bound ~3–4×-offline approximation; refine_on_close helps long meetings. |
| online | torch-free | sherpa |
0.174 | 0.58 | Periodic offline re-diarization (per-segment online sherpa is a dead end, ADR 0002). |
Two findings, both measured here: offline has a real length crossover (nemo
short ↔ pyannote long), so it needs a router; online has none — vocal-helper's
streaming clusterer is a latency-bound approximation where nemo wins at every
length, so streaming always routes to nemo. voh.select_diarization(live=…, duration_s=…, max_speakers=…, torch_free=…, pyannote_available=…) returns a
BackendPlan(mode, backend, expected_der, expected_rtf, reason) — the
quality/speed numbers are first-class fields and the reason carries the
citation, so a choice is never a black box.
import vocal_helper as voh
plan = voh.select_diarization(live=False, duration_s=45.0, max_speakers=3)
print(plan.backend, plan.expected_der, plan.expected_rtf) # nemo 0.142 0.051 — short, ≤4 speakers
print(voh.select_diarization(live=False, duration_s=1800.0).backend) # 'pyannote' — long form
The router is enforced, not advisory: --diar-backend defaults to auto
on both CLIs and POST /pipeline, so a file's real duration is probed and routed
(short → nemo, long → pyannote) without you choosing. Pass an explicit
pyannote / nemo / sherpa to override.
Installation
More recipes? See
EXAMPLES.mdfor a self-contained, copy-runnable cookbook of the common workflows (live mic, URL replay, offline batch, subscribers, library + CLI usage).
Running the heavy stack on a GPU? See TECHNICAL_STACK.md for the full install recipe : CUDA + PyTorch, whisper.cpp with
GGML_CUDA=on, pyannote 3.1 on MPS/CUDA, local Ollama, expected RTFs per GPU, and a reproducible install manifest covering the AI Helpers suite (os-helper, audio-helper, podcast-helper, youtube-helper, vocal-helper, music-helper).
Prerequisites — Python 3.10–3.13 and git, ffmpeg, PortAudio, cross-platform:
- 🍎 macOS (Homebrew):
brew install python git ffmpeg portaudio - 🐧 Ubuntu/Debian:
sudo apt update && sudo apt install -y python3 python3-pip git ffmpeg portaudio19-dev - 🪟 Windows (PowerShell):
winget install Python.Python.3.12 Git.Git Gyan.FFmpeg(PortAudio ships inside the Python wheels)
We recommend using Python environments. Check this link if you're unfamiliar with setting one up: 🥸 Tech tips.
No compiler needed for the base install. The core (
vocal-helper, no extras) pulls prebuilt wheels on every common platform —pywhispercppships wheels for macOS arm64, Linux x86_64/aarch64 and Windows (cp39–cp314), so nothing compiles. The heavy pieces are opt-in: the[nemo]extra brings ~5 GB of PyTorch, and offline diarization fetches a model bundle on first use (see Model weights below). Base install = library + CLIs + light ASR/VAD.
From PyPI (recommended)
pip install 'vocal-helper[all]'
From source (no PyPI)
pip install 'vocal-helper[all] @ git+https://github.com/warith-harchaoui/vocal-helper.git@v0.5.2'
The [all] extra brings the mic source, both diarization backends (NeMo — the default — and pyannote), and Ollama. Pick à la carte if you don't need everything :
| Extra | Brings | Required when |
|---|---|---|
| (none) | pywhispercpp, silero-vad, audio-helper |
File / numpy sources, no diarization |
[mic] |
capture-helper |
Live microphone source |
[pyannote] |
pyannote.audio |
diar={'backend': 'pyannote'} (lighter ~500 MB fallback) |
[nemo] |
torch, nemo-toolkit[asr] |
diar={'backend': 'nemo'} (default — TitaNet, ~5 GB) |
[sherpa] |
sherpa-onnx |
diar={'backend': 'sherpa'} — the same TitaNet through onnxruntime, torch-free and light |
[llm] |
ollama |
llm={'model': 'gemma3:4b'} (default) |
[all] |
All of the above | One-line install |
You also need Ollama running locally if you enable the LLM analyst :
ollama pull gemma3:4b # default (or gemma4:12b-mlx for max quality, qwen2.5:3b for min RTF)
ollama serve # usually launched at install time
Model weights — no HuggingFace needed
All model weights ship in a single self-hosted diarization-engines
bundle (offline pyannote 3.1, NeMo Sortformer, the online
pyannote/embedding embedder, SpeechBrain VoxLingua107, and the
torch-free sherpa ONNX — pyannote-3.0 segmentation + TitaNet). Point
vocal-helper at it once and the whole stack runs HuggingFace-free —
no token, no gated downloads, HF_HUB_OFFLINE=1 safe.
Configure it in settings.yaml (the only config the project needs):
cp settings.yaml.example settings.yaml
# settings.yaml already contains:
# engines:
# diarization_url: https://deraison.ai/diarization-engines-slim.zip
# settings.yaml is git-ignored.
What the URL is
https://deraison.ai/diarization-engines-slim.zip is a self-hosted ZIP
(~800 MB) that mirrors every gated/hub-hosted model the pipeline needs, so
the project never has to authenticate against HuggingFace. It contains:
| Folder | Weights | Used by |
|---|---|---|
pyannote-3.1/ |
segmentation-3.0 + wespeaker .bin + a local config.yaml |
offline diarization |
nemo-sortformer/ |
diar_sortformer_4spk-v1.nemo |
offline diarization (NeMo) |
pyannote-embedding/ |
embedding .bin |
online diarization |
speechbrain-voxlingua107/ |
ECAPA VoxLingua107 snapshot | language-ID cross-check |
manifest.json |
sha256 + sizes | integrity check on download |
On first use it is downloaded once, verified against manifest.json, and
cached under ~/.cache/vocal-helper; later runs load straight from the
cache. Set $VH_DIARIZATION_ENGINES to a local directory (or your own
mirror URL) for air-gapped / self-hosted deploys. TitaNet (the default
online-diar embedder) loads from NVIDIA NGC, also without HuggingFace.
Live microphone → terminal
# No token, no HuggingFace — weights come from the diarization-engines bundle.
vocal-helper mic --llm
Python API
import asyncio
import vocal_helper as voh
async def main():
pipeline = voh.Pipeline(
source=lambda: voh.sources.from_microphone(),
config=voh.PipelineConfig(
diar={"backend": "pyannote"},
asr={"model": "large-v3-turbo-q5_0", "language": "auto"}, # discovered from the audio
llm={"model": "gemma3:4b"}, # remove to disable
),
)
async for ev in pipeline.run():
if "text" in ev:
print(f"[{ev['t0']:.1f} {ev['speaker']}] {ev['text']}")
elif "summary" in ev:
print(f"--- rolling summary ---\n{ev['summary']}")
asyncio.run(main())
Replay a WAV through the online pipeline
vocal-helper file path/to/conversation.wav --llm
The file source preserves real-time pacing by default ; pass --no-real-time for as-fast-as-possible batch processing.
Offline batch on a WAV (full-buffer pyannote 3.1)
import asyncio, vocal_helper as voh
async def main():
pipeline = voh.OfflinePipeline(
source=lambda: voh.sources.from_wav_file(
"meeting.wav", real_time=False
),
config=voh.OfflinePipelineConfig(
diar={"backend": "pyannote"}, # or "nemo" for ≤ 60 s clips
asr={"language": "auto"}, # discovered from the audio — no default
llm={"model": "gemma3:4b"}, # remove to disable
),
)
async for ev in pipeline.run():
if "text" in ev:
print(f"[{ev['t0']:.1f} {ev['speaker']}] {ev['text']}")
elif "summary" in ev:
print(f"--- digest ---\n{ev['summary']}")
asyncio.run(main())
When to use which — and the router picks the backend for you :
| Use-case | Pipeline | Backend (router pick) | Why |
|---|---|---|---|
| Live mic / live stream | Pipeline |
online nemo |
Real-time diarization + transcript at RTF ≈ 0.03. Online is a latency-bound approximation (~3–4× the offline DER); nemo is the best online embedder at every length. |
| Meeting / podcast / lecture / voicemail batch | OfflinePipeline |
pyannote 3.1 |
Whole-audio pyannote is the highest-quality answer — AMI median DER 0.116, inside Bredin 2023's band; NeMo hangs past ~25 min. |
| ≤ 60 s clips, ≤ 4 speakers, fast turn-around | OfflinePipeline(backend='nemo') |
nemo Sortformer |
End-to-end attribution, confusion ≈ 0, RTF ≈ 0.004 (250×). |
| On-device / no PyTorch | either, backend='sherpa' |
sherpa ONNX |
Torch-free TitaNet-large; DER 0.174/0.148, FR+EN, embeddable anywhere. |
A toolbox: library, CLI, HTTP, MCP & GUI
vocal-helper is a toolbox, not an app. It exposes the same local pipeline
through coherent surfaces so it composes into your own project without
re-implementing the wiring. Everything runs locally: no surface sends audio
to a remote service.
| Surface | Entry point | Extra | Kind of use |
|---|---|---|---|
| Python library | import vocal_helper as voh |
(none) | Compose the stages into your own app; full typed API. |
| argparse CLI | vocal-helper |
(none — ships with the base install) | Shell scripts, cron, headless CI, pipes to jq. |
| click CLI | vocal-helper-click |
[cli] |
Rich --help, shell completion, composable sub-commands. |
| FastAPI HTTP | uvicorn vocal_helper.api:app |
[api] |
A local HTTP surface — upload a file (or pass a url), get a transcript / event list; GET /docs for the Swagger UI. |
| MCP tools | vocal-helper-mcp |
[api,mcp] |
Any MCP-aware host (agent runtimes, IDEs) — publishes transcribe + pipeline as local first-class tools. |
| Transcript-viewer GUI | GET /gui (served by the API) |
[api] |
A build-step-free browser page: drop a file or paste a URL → speaker colour-coded transcript + rolling summary. / redirects to it. |
# argparse — language is discovered by default ('auto'); pass --language xx only to force one
vocal-helper transcribe clip.wav
vocal-helper file meeting.wav --offline --llm
# click twin — same operations, composable sub-commands
vocal-helper-click transcribe clip.wav
# local HTTP surface + transcript-viewer GUI (open http://127.0.0.1:8000/gui)
uvicorn vocal_helper.api:app --host 127.0.0.1 --port 8000 &
curl -F 'file=@clip.wav' http://localhost:8000/transcribe # language auto-discovered
curl -F 'url=https://youtu.be/…' http://localhost:8000/pipeline # URL fetched locally ([stream])
# MCP surface — the same local app, exposed as agent tools
vocal-helper-mcp
The transcript-viewer GUI (GET /gui)
A self-contained single page (HTML + Tailwind CDN + vanilla JS, no build step)
served same-origin by the API. Drop an audio file or paste a URL, run
diarized transcription locally, and read a speaker-labelled, colour-coded
transcript (one stable colour per speaker) alongside the rolling summary. It
POSTs to the same /pipeline endpoint — zero extra server logic — and contacts
only the local server, so your audio never leaves the machine. Utterances reveal
progressively (motion-guarded) so a long transcript reads as if it streams in.
Use it as an agent skill
skills/vocal-helper/ packages vocal-helper as a Claude Skill and an
OpenCode skill so an agent can transcribe / diarize / summarise on your
behalf. See skills/README.md to install (symlink into
~/.claude/skills/ and ~/.opencode/skills/), and
TRIGGERS.md for the exhaustive catalogue of what invokes it.
Subscribers — fan-out without owning the loop
Every stage can be observed without consuming the merged output stream :
async def on_voiced(seg): print("VAD:", seg["t0"], seg["t1"])
async def on_diar(seg): print(" → ", seg["speaker"], seg["t0"], seg["t1"])
pipeline.subscribe_voiced(on_voiced)
pipeline.subscribe_diarized(on_diar)
async for ev in pipeline.run():
...
Useful for WebSocket / SSE relays, live UI updates, or JSONL persistence.
Diarization choice — why online cosine clustering
The pdbms study (2026-06-29, N=2089 per system) ranks the online streaming diarizers as :
| Mode | Recommended | DER (clean) |
|---|---|---|
| Streaming ≤ 300 s | hungarian_nemo (w=20 s) |
0.13 – 0.20 |
| Streaming > 300 s | hungarian_pyannote (w=30 s) |
0.30 – 0.45 |
Vocal Helper specialises that decision : since the VAD already isolates each voiced segment for us, the sliding-window machinery collapses to per-segment embedding + cosine-distance running-mean clustering. The default join_threshold=0.30 is the value selected on AMI dev-slice N=8 in the 2026-06-30 pyannote_stitch_threshold_sweep.
Spoken-language identification
Before a word is transcribed, vocal_helper.lid decides which language is
being spoken — for the whole file, or per region of a code-switched
recording. This matters because a plain whisper "auto" pass locks onto the
first language it hears and translates the rest into it; identifying the
language acoustically first lets each region be transcribed in its own
language. It also catches mislabeled data: on a 423-call corpus the acoustic
census overrode the folder labels on 21 files (English and Dutch calls filed
under "FR", etc.).
Discovery-first — no default language, no pairing. Detection returns the language the input actually is (whisper's true argmax over its full language head). There is no default language and no language pair; the language is discovered from the audio itself.
| Function | What it does |
|---|---|
detect_language(pcm) |
One global detection. Returns (iso_639_1, probability) for the language whisper actually detected — any language, not a preferred subset. |
detect_language_regions(pcm) |
Partitions code-switched audio into mono-language LangRegions via an overlapping-window posterior curve — Gaussian-smoothed, boundaries locally refined and snapped to the nearest silence. Empty / too-short audio returns no region rather than guessing one. |
detect_language_regions_fast(pcm) |
Fast path (new in 0.4.2): one cheap whole-file detection ; if it clears the confidence gate (DEFAULT_FAST_CONF_GATE, 0.5) the file is treated as monolingual — a single region — otherwise it falls back to the full posterior scan. ~73 s → ~1 s per file on the monolingual majority, identical output. |
cross_check_regions(pcm, regions) |
Optional independent verification with SpeechBrain VoxLingua107 (shipped in the diarization-engines bundle) — a second, model-diverse opinion on each region's language, reported verbatim. |
import vocal_helper as voh
# Fast path — the right default for batch corpora that are mostly monolingual:
regions = voh.detect_language_regions_fast(pcm, 16_000)
for r in regions:
print(f"{r.lang} [{r.t0:.1f}–{r.t1:.1f}s]")
Opt-in routing hint. If you can only route a fixed set of languages, pass
supported=("en", "fr", "es", "it", "pl", "nl") to re-rank detection within
that set (so a close but un-routable relative — Galician over Spanish on a short
window — never wins). This is entirely optional: leave it unset (None, the
default) and the input speaks for itself.
Roadmap
- v0.2 — JSONL output writer + standard WebSocket relay (mirroring
capture-helper's publish path). - v0.2 — language-locked Whisper rejection for ASR hallucinations on silence.
- v0.2 —
SemanticEOTStageenabled-by-default after the 2026-06-30 EOT study validates the false-cut reduction on AMI (LiveKit-style ; seestudies/eot_semantic_vs_silero.py). - v0.2 — auto LLM-engine selector : Ollama+MLX on Apple Silicon, vLLM on Linux+NVIDIA, llama.cpp gguf on CPU fallback.
- v0.3 — out of scope : speaker ID anchoring via pre-enrolled voiceprints (excluded by user's industrial deployment compliance constraints — IDs stay anonymous
S0,S1, … within a session). - v0.3 — replace the in-stage
_PyannoteEmbedderwith the overlap-aware variant frompdbms.diar.backends.pyannote.embed_overlap_awarefor noisy mixes. - v0.3 — Pipecat-style typed Frame events with SystemFrame priority queue (clean shutdown / out-of-band control signals that bypass DataFrame queues).
Versioning & stability
vocal-helper follows Semantic Versioning. While it is
pre-1.0 (currently 0.5.x, a Beta) the contract is deliberate, not chaotic:
- The public API is the names exported from
vocal_helper.__all__plus the documented CLI flags. That's what stability promises apply to. - Behaviour and default changes land only in MINOR releases (
0.5→0.6). A PATCH release (0.5.1→0.5.2) is bug-fixes and docs only — it will never change a default under you. - One honest exception already shipped:
0.5.1flipped the--diar-backenddefault fromnemotoauto. That was part of repairing the router, which was non-functional in0.5.0— a fix, not a whim. From here, such changes are minor-only. - Deprecations get a release with a warning before removal.
Author
Warith HARCHAOUI — warith@deraison.ai
Acknowledgements
Special thanks to Mohamed Chelali, Bachir Zerroug and Edmond Jacoupeau.
License
This project is licensed under the BSD-3-Clause License — see the LICENSE file for details.
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
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 vocal_helper-0.6.1.tar.gz.
File metadata
- Download URL: vocal_helper-0.6.1.tar.gz
- Upload date:
- Size: 193.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60fc37746e231631401b861495f72a29a129d4e480f6df84e5334dc077d0768f
|
|
| MD5 |
c8d97a7d1aa95f0194c4b0e533baa0a5
|
|
| BLAKE2b-256 |
f3728518b3d99de1214f86cf4b446fe229144e54ee1cb9730286fb3fecb42e83
|
File details
Details for the file vocal_helper-0.6.1-py3-none-any.whl.
File metadata
- Download URL: vocal_helper-0.6.1-py3-none-any.whl
- Upload date:
- Size: 129.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e59b0cff3ff9203d9d1900d6f02da0a13d72624271981f8c02f2fa9d02850a5
|
|
| MD5 |
859f68ec4ce58677f35fd1c8fba02619
|
|
| BLAKE2b-256 |
8116c5058d45ea3ab270fd4661e8980770276902a956bcf1a40ad3c9e2503ef5
|