
Audio Intelligence: Transcription + Speaker Labels for $0.002/min (with Free Diarization)
LeanVox started as a text-to-speech API. Today it handles both sides of audio. Meet Audio Intelligence — transcription, speaker diarization, and AI summarization in a single API call. Same API key. Same dashboard. No new account. One endpoint. Three outputs. from leanvox import Leanvox client = Leanvox ( api_key = " lv_live_... " ) result = client . audio . transcribe ( file = " meeting.mp3 " , features = [ " transcribe " , " diarize " , " summarize " ] ) print ( result . formatted_transcript ) # SPEAKER_0: Welcome to the show. # SPEAKER_1: Thanks for having me. print ( result . summary ) # "Team discussed Q1 roadmap priorities..." Or with Node.js: const result = await client . audio . transcribe ({ file : " meeting.mp3 " , features : [ " transcribe " , " diarize " , " summarize " ] }) console . log ( result . formatted_transcript ) console . log ( result . summary ) Pricing that actually makes sense We benchmarked Whisper Large V3 + Pyannote 3.1 on dedicated GPU hardware: Feature Lean
Continue reading on Dev.to Python
Opens in a new tab




