LMSupply.Transcriber 0.37.1

dotnet add package LMSupply.Transcriber --version 0.37.1
                    
NuGet\Install-Package LMSupply.Transcriber -Version 0.37.1
                    
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.37.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LMSupply.Transcriber" Version="0.37.1" />
                    
Directory.Packages.props
<PackageReference Include="LMSupply.Transcriber" />
                    
Project file
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.37.1
                    
#r "nuget: LMSupply.Transcriber, 0.37.1"
                    
#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.37.1
                    
#: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.37.1
                    
Install as a Cake Addin
#tool nuget:?package=LMSupply.Transcriber&version=0.37.1
                    
Install as a Cake Tool

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 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.

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.37.1 41 7/19/2026
0.37.0 42 7/17/2026
0.36.0 41 7/17/2026
0.35.2 45 7/17/2026
0.35.1 116 6/29/2026
0.35.0 105 6/26/2026
0.34.31 100 6/21/2026
0.34.30 109 6/21/2026
0.34.29 116 6/21/2026
0.34.28 106 6/21/2026
0.34.27 105 6/20/2026
0.34.22 104 6/20/2026
0.34.21 102 6/20/2026
0.34.20 107 6/2/2026
0.34.19 112 5/25/2026
0.34.18 109 5/21/2026
0.34.17 112 5/20/2026
0.34.16 123 5/15/2026
0.34.15 110 5/14/2026
0.34.13 105 5/12/2026
Loading failed