LMSupply.Transcriber
0.26.0
dotnet add package LMSupply.Transcriber --version 0.26.0
NuGet\Install-Package LMSupply.Transcriber -Version 0.26.0
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.26.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LMSupply.Transcriber" Version="0.26.0" />
<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.26.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LMSupply.Transcriber, 0.26.0"
#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.26.0
#: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.26.0
#tool nuget:?package=LMSupply.Transcriber&version=0.26.0
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.26.0)
- NAudio (>= 2.2.1)
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.26.0 | 46 | 3/28/2026 |
| 0.25.0 | 100 | 3/18/2026 |
| 0.24.2 | 90 | 3/16/2026 |
| 0.24.1 | 88 | 3/16/2026 |
| 0.24.0 | 124 | 3/9/2026 |
| 0.22.2 | 88 | 3/9/2026 |
| 0.22.1 | 81 | 3/8/2026 |
| 0.22.0 | 84 | 3/8/2026 |
| 0.21.0 | 87 | 3/8/2026 |
| 0.20.2 | 110 | 3/7/2026 |
| 0.20.1 | 85 | 3/7/2026 |
| 0.20.0 | 97 | 3/7/2026 |
| 0.19.1 | 83 | 3/6/2026 |
| 0.19.0 | 84 | 3/6/2026 |
| 0.18.0 | 88 | 3/6/2026 |
| 0.17.2 | 86 | 3/6/2026 |
| 0.17.1 | 80 | 3/5/2026 |
| 0.17.0 | 89 | 3/5/2026 |
| 0.16.1 | 89 | 3/5/2026 |
| 0.16.0 | 82 | 3/5/2026 |
Loading failed