#For getting transcript in two languages(e.g. english, hungarian), what can i do?

1 messages · Page 1 of 1 (latest)

worn summitBOT
#
AI-generated Answer for devdwarf._28680

Short answer: use Dubbing and export SRT captions per language.

  • Create a Dubbing project, select the original language, then add English and Hungarian as output languages. You can upload either audio or video, and Dubbing is available via the website and API. (help.elevenlabs.io)
  • After processing, download an SRT file (captions) for each language. These SRTs serve as timestamped transcripts. (help.elevenlabs.io)
  • Note: you’re billed per output language; if you plan multi‑language work, ElevenLabs recommends adding additional languages inside Dubbing Studio so edits stay synced across languages. (help.elevenlabs.io)

If you only need a transcript in the spoken language (no translation), you can also use Speech to Text (Scribe), which transcribes audio in 99 languages and provides timestamps and speaker diarization; for a second language version, generate a dub and export the SRT in that language as above. (help.elevenlabs.io)

Would you like steps for doing this via the web UI or the API?

Sources:
What is Dubbing? – ElevenLabs
Which file formats are supported by Dubbing? – ElevenLabs
How much does Dubbing cost? – ElevenLabs
What is Speech to Text? – ElevenLabs

thorn fox
#

for getting real-time transcription of speaker in only two languages(english, hungarian)

worn summitBOT
#
AI-generated Answer for devdwarf._28680

Short answer:

  • Use Scribe v2 Realtime (WebSocket) for live STT. You can force a single language per session by setting language_code to en (English) or hu (Hungarian). The realtime endpoint does not expose a parameter to whitelist two languages in one session; leaving language_code empty enables auto‑detection across 90+ languages. (elevenlabs.io)
  • If you need automatic switching constrained to only English and Hungarian, use ElevenLabs Agents: configure the agent’s Supported languages to those two and enable the Language detection system tool so it switches based on detected input. (elevenlabs.io)
  • Hungarian is among Scribe’s supported STT languages, and Scribe v2 Realtime is recommended for real‑time use. (elevenlabs.io)

References:

  • Realtime Speech to Text (query parameters incl. language_code). (elevenlabs.io)
  • Scribe v2 Realtime overview (90+ languages, auto language detection). (elevenlabs.io)
  • Agents language detection (restrict supported languages, auto switch). (elevenlabs.io)
  • STT languages (includes Hungarian) and recommendation to use Scribe v2 Realtime for real‑time. (elevenlabs.io)

Sources:
Realtime Speech to Text | ElevenLabs Documentation
Language detection | ElevenLabs Documentation
Transcription | ElevenLabs Documentation
Realtime Speech to Text | ElevenLabs Documentation
Scribe v2 Realtime Speech to Text - 150ms Latency API
Language detection | ElevenLabs Documentation
Transcription | ElevenLabs Documentation

thorn fox
#

how can i use elevenlabs agents in my python project for real-time speech recognition?