Introducing Polyglot

Speak everywhere and in every language

1. Transcribe

Speak in your native language

2. Translate

Translate your speech into any language

3. Share

Share your transcribed text with anyone
  • Get started instantly with no setup required
    No need to download or install any software. Just open your browser to the VocalStack dashboard, and press the big red button. Your users can listen to your speech in real-time by simply accessing a link and without installing anything.
  • A powerful tool for multilingual communication in your pocket
    No expensive audio hardware or microphones required. VocalStack's AI LLMs filter background noise, and can automatically detect a wide range of languages and accents.
  • Share live and past Polyglot sessions with anyone
    Share your Polyglot sessions with anyone, even if they don't have a VocalStack account. You can share a link to your Polyglot session, and anyone with the link can listen to your speech transcription.
  • Unlimited users at no extra cost
    There is no limit to the number of users who can listen to your Polyglot session. Use Polyglot to host a small meeting or a large conference.
  • Unlimited translations at no extra cost
    There is no limit to the number of languages into which you can translate your Polyglot session. If you're speaking to a multilingual audience your users can request as many translations as they require.
  • Polyglot sessions are saved to your dashboard
    Access your past Polyglot sessions at any time. These are available in your VocalStack dashboard in the form of raw text, timeline segments, word documents, PDF documents, subtitles and more.
  • Public and private Polyglot sessions
    If your Polyglot session is public, anyone with the link can listen to your speech transcription. If it is private, only those with the password can access it.
  • Integrate Polyglot sessions into your existing website or infrastructure using the VocalStack API
    VocalStack's API allows you to integrate Polyglot sessions into your existing website or infrastructure. You can also use the API to create custom applications that leverage VocalStack's powerful AI transcription and translation capabilities.

Polyglot is now available with VocalStack Premium

Premium

$40

per month

Billed annually

AnnuallyMonthly
Annually
Get this plan
  • 40 hours of free transcriptions each month
  • $0.35 per additional prerecorded transcription hour
  • $0.80 per additional live transcription hour
  • Unrestricted access to Polyglot
  • API for programmatic access
View full plan details

Developers Welcome

VocalStack's API allows you to integrate Polyglot sessions into your existing website or infrastructure. You can also use the API to create custom applications that leverage VocalStack's powerful AI transcription and translation capabilities.

Read Documentation
JavaScript
import { Polyglot } from '@vocalstack/js-sdk'; const polyglot = new Polyglot({ apiKey: 'YOUR-API-KEY' }); const stream = await polyglot.getLiveSessionStream({ link: 'a-custom-url', password: 'password', // include only if the session has a password }); // Listen to any live transcriptions that are associated // with the polyglot session. stream.onData((response) => { const { data } = response; // The entire transcription object of the current transcription const transcription = data.activeTranscription; // An object with the transcription timeline console.log(transcription.timeline); });