LMSupply.Transcriber 0.88.0

dotnet add package LMSupply.Transcriber --version 0.88.0
                    
NuGet\Install-Package LMSupply.Transcriber -Version 0.88.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.88.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LMSupply.Transcriber" Version="0.88.0" />
                    
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.88.0
                    
#r "nuget: LMSupply.Transcriber, 0.88.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.88.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.88.0
                    
Install as a Cake Addin
#tool nuget:?package=LMSupply.Transcriber&version=0.88.0
                    
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
parakeet-tdt Parakeet TDT 0.6B v3 (int8) ~670MB — NVIDIA transducer, 25 European languages, no 30 s window, no translation. Opt-in only (never chosen by auto); Language is "und" unless you pass a hint — the model has no language-id output

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 (2)

Showing the top 2 NuGet packages that depend on LMSupply.Transcriber:

Package Downloads
FileFlux.Providers.LMSupply

LMSupply local ONNX model provider for FileFlux: document analysis (summarization, metadata extraction), embeddings, OCR, image captioning, and speech transcription — no API key required.

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.88.0 0 9/27/2026
0.87.0 0 9/27/2026
0.86.0 0 9/27/2026
0.85.0 25 9/27/2026
0.84.0 41 9/27/2026
0.83.0 40 9/27/2026
0.82.0 35 9/27/2026
0.81.1 52 9/26/2026
0.81.0 40 9/26/2026
0.80.0 60 9/26/2026
0.79.3 47 9/26/2026
0.79.2 45 9/26/2026
0.79.1 55 9/26/2026
0.79.0 51 9/26/2026
0.78.0 48 9/26/2026
0.77.0 49 9/25/2026
0.76.0 49 9/25/2026
0.75.0 58 9/24/2026
0.74.0 45 9/24/2026
0.73.0 86 9/23/2026
Loading failed