LMSupply.Transcriber
0.34.18
dotnet add package LMSupply.Transcriber --version 0.34.18
NuGet\Install-Package LMSupply.Transcriber -Version 0.34.18
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LMSupply.Transcriber" Version="0.34.18" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LMSupply.Transcriber" Version="0.34.18" />
<PackageReference Include="LMSupply.Transcriber" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LMSupply.Transcriber --version 0.34.18
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LMSupply.Transcriber, 0.34.18"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LMSupply.Transcriber@0.34.18
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LMSupply.Transcriber&version=0.34.18
#tool nuget:?package=LMSupply.Transcriber&version=0.34.18
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
LMSupply.Transcriber
Local speech-to-text transcription using Whisper models.
Features
- Zero-config: Models download automatically from HuggingFace
- GPU Acceleration: CUDA, DirectML (Windows), CoreML (macOS)
- MIT Licensed: OpenAI Whisper models
- 99+ Languages: Auto-detection and multilingual support
Quick Start
using LMSupply.Transcriber;
// Load the default model
await using var transcriber = await LocalTranscriber.LoadAsync("default");
// Transcribe audio
var result = await transcriber.TranscribeAsync("audio.wav");
Console.WriteLine(result.Text);
Console.WriteLine($"Language: {result.Language}");
Console.WriteLine($"Duration: {result.DurationSeconds}s");
Available Models
| Alias | Model | Size | WER | Description |
|---|---|---|---|---|
fast |
Whisper Tiny | ~150MB | 7.6% | Ultra-fast |
default |
Whisper Base | ~290MB | 5.0% | Balanced |
quality |
Whisper Small | ~970MB | 3.4% | Higher accuracy |
medium |
Whisper Medium | ~3GB | 2.9% | High quality |
large |
Whisper Large V3 | ~6GB | 2.5% | Highest accuracy |
english |
Whisper Base.en | ~290MB | 4.3% | English optimized |
GPU Acceleration
# NVIDIA GPU
dotnet add package Microsoft.ML.OnnxRuntime.Gpu
# Windows (AMD/Intel/NVIDIA)
dotnet add package Microsoft.ML.OnnxRuntime.DirectML
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- LMSupply.Core (>= 0.34.18)
- MathNet.Numerics (>= 5.0.0)
- NAudio (>= 2.3.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on LMSupply.Transcriber:
| Package | Downloads |
|---|---|
|
PulsaSTT.SDK
Pulsa STT (Speech-to-Text) SDK for speech transcription |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.34.18 | 36 | 5/21/2026 |
| 0.34.17 | 84 | 5/20/2026 |
| 0.34.16 | 108 | 5/15/2026 |
| 0.34.15 | 93 | 5/14/2026 |
| 0.34.13 | 90 | 5/12/2026 |
| 0.34.12 | 93 | 5/11/2026 |
| 0.34.3 | 90 | 5/7/2026 |
| 0.34.2 | 88 | 5/5/2026 |
| 0.34.1 | 89 | 5/3/2026 |
| 0.34.0 | 84 | 5/2/2026 |
| 0.33.0 | 95 | 5/2/2026 |
| 0.32.7 | 86 | 5/2/2026 |
| 0.32.3 | 92 | 4/30/2026 |
| 0.32.0 | 107 | 4/15/2026 |
| 0.31.0 | 107 | 4/14/2026 |
| 0.30.0 | 96 | 4/14/2026 |
| 0.29.0 | 114 | 4/13/2026 |
| 0.28.0 | 97 | 4/13/2026 |
| 0.27.4 | 123 | 4/9/2026 |
| 0.27.3 | 111 | 4/7/2026 |
Loading failed