LMSupply.Transcriber
0.42.10
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package LMSupply.Transcriber --version 0.42.10
NuGet\Install-Package LMSupply.Transcriber -Version 0.42.10
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.42.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LMSupply.Transcriber" Version="0.42.10" />
<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.42.10
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LMSupply.Transcriber, 0.42.10"
#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.42.10
#: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.42.10
#tool nuget:?package=LMSupply.Transcriber&version=0.42.10
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.42.10)
- MathNet.Numerics (>= 5.0.0)
- NAudio (>= 3.0.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.73.0 | 0 | 9/23/2026 |
| 0.72.1 | 46 | 9/23/2026 |
| 0.72.0 | 68 | 9/22/2026 |
| 0.71.0 | 92 | 9/22/2026 |
| 0.70.0 | 92 | 9/21/2026 |
| 0.69.0 | 82 | 9/21/2026 |
| 0.68.3 | 112 | 9/18/2026 |
| 0.68.2 | 94 | 9/18/2026 |
| 0.68.1 | 84 | 9/18/2026 |
| 0.68.0 | 100 | 9/17/2026 |
| 0.67.1 | 101 | 9/17/2026 |
| 0.67.0 | 90 | 9/17/2026 |
| 0.66.1 | 107 | 9/16/2026 |
| 0.66.0 | 91 | 9/16/2026 |
| 0.65.1 | 122 | 9/13/2026 |
| 0.65.0 | 109 | 9/12/2026 |
| 0.64.0 | 97 | 9/11/2026 |
| 0.63.0 | 101 | 9/11/2026 |
| 0.62.0 | 133 | 9/10/2026 |
| 0.42.10 | 106 | 8/31/2026 |
Loading failed