Addis AI

Speech to Text (Transcription)

Transcribe audio into text for Amharic and Afan Oromo.

Our Speech-to-Text (STT) technology is powered by specialized models trained to accurately recognize African languages. Unlike generic transcription services, our models are optimized for the specific phonemes, accents, and dialects of Amharic and Afan Oromo.

Usage Guide

Speech-to-text uploads use multipart/form-data. The SDK handles the transport format when you pass an audio file and language.

Transcribe a File

Upload an audio file to get the text transcription.

import AddisAI, { fileFromPath } from "addisai";

const addis = new AddisAI();
const result = await addis.speech.transcribe({
  audio: await fileFromPath("audio.wav"),
  language: "am",
});

console.log(result.text);
console.log(result.confidence);
from addisai import AddisAI

addis = AddisAI()
with open("audio.wav", "rb") as audio:
    result = addis.speech.transcribe(audio=audio, language="am")

print(result["text"])
print(result.get("confidence"))
curl --location 'https://api.addisassistant.com/api/v2/stt' \\
  --header 'x-api-key: $ADDIS_API_KEY' \\
  --form 'audio=@"audio.wav"' \\
  --form 'request_data="{ \"language_code\": \"am\" }"'

API Reference

Form Data Parameters

These fields are sent as multipart form data.

Prop

Type

Request Data Object

These parameters go inside the request_data JSON string.

Prop

Type

Response Schema

{
  "status": "success",
  "data": {
    "transcription": "ሰላም እንኳን ደህና መጣችሁ",
    "usage_metadata": {
      "totalBilledDuration": "15s",
      "requestId": "69b60667-0000-2a1e-b6d3-d4f547fe6724"
    }
  },
  "confidence": 0.982
}

Supported Formats

We support standard audio containers. For the fastest processing, we recommend WAV.

FormatContent Types (MIME)
WAVaudio/wav, audio/x-wav, audio/wave
MP3audio/mpeg, audio/mp3
M4Aaudio/mp4, audio/x-m4a
WebMaudio/webm

Best Practices

To ensure high accuracy (WER < 10%), follow these recording guidelines.

Audio Specs

Sample Rate: 16kHz or higher is recommended for clarity.

Channel: Mono is preferred. Stereo files are supported but mixed down before processing.

Environment

Noise: Background noise significantly degrades accuracy. Record in quiet environments.

Distance: Keep the speaker 10-30cm from the microphone for optimal volume levels.

Constraints

Max Duration60 Seconds
Max File Size10 MB

Limitations

Speakers: The model is optimized for single-speaker audio. Overlapping voices may result in skipped words.

Technical Terms: Rare technical jargon or code-switching (mixing English heavily) may have lower accuracy.

On this page