APIs d'Intelligence Audio et Vocale
Transcription streaming via WebSocket, diarisation précise des locuteurs, biométrie vocale et doublage studio.
Transcription Streaming en Temps Réel
Transcription bidirectionnelle via WebSocket avec latence inférieure à 250ms et horodatage par mot.
- Sub-250ms chunk latency with WebSocket streaming protocol
- Word-level timestamps with punctuate-and-capitalize normalization
- Multilingual acoustic coverage across 99 spoken languages
const ws = new WebSocket("wss://api.brainiall.com/v1/audio/stream", {
headers: { Authorization: `Bearer ${API_KEY}` }
});
ws.send(JSON.stringify({ config: { language: "en", interim_results: true } }));
audioSource.on("data", (chunk) => ws.send(chunk));
ws.on("message", (data) => {
const result = JSON.parse(data);
console.log("Transcript:", result.text, "Confidence:", result.confidence);
});Diarisation des Locuteurs
Segmentez réunions et appels en tours de parole avec une précision temporelle inférieure à la seconde.
- Accurate “who spoke when” segmentation with sub-second boundaries
- Handles overlapping speech, interruptions, and variable speaker counts
- Emits structured turns with speaker labels (SPEAKER_00, SPEAKER_01) and time ranges
curl -X POST https://api.brainiall.com/v1/audio/diarize \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-F "audio=@meeting_record.wav" \
-F "num_speakers=2"
# Response:
# {
# "segments": [
# { "speaker": "SPEAKER_00", "start": 0.0, "end": 4.12, "text": "Good morning team." },
# { "speaker": "SPEAKER_01", "start": 4.25, "end": 8.70, "text": "Morning, let us review Q3." }
# ]
# }Identification et Vérification Vocale
Vérification biométrique 1:1 et identification 1:N résistante aux bruits de fond.
- Biometric 1:1 voice verification against enrolled voiceprints
- 1:N speaker identification over millions of customer profile vectors
- Text-independent acoustic embeddings resilient to background acoustic noise
curl -X POST https://api.brainiall.com/v1/audio/voice-id/verify \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-F "user_id=usr_8921" \
-F "audio=@auth_sample.wav"
# Response:
# { "match": true, "similarity": 0.942, "threshold": 0.85, "verified": true }Restauration Acoustique et Débruitage
Isolation vocale de studio, élimination des réverbérations et restauration en 48 kHz.
- Suppresses HVAC, keyboard clicks, traffic rumble, and background chatter
- Removes room reverberation for clean, up-front vocal presence
- Outputs broadcast-ready 48 kHz normalized audio
curl -X POST https://api.brainiall.com/v1/audio/enhance \ -H "Authorization: Bearer $BRAINIALL_KEY" \ -F "audio=@noisy_mic.wav" \ -F "dereverb=true" \ --output enhanced_studio.wav
Doublage Automatisé
Doublage multilingue de vidéos et podcasts avec préservation du timbre vocal et synchronisation labiale.
- End-to-end automated video and podcast dubbing into 40+ languages
- Preserves original vocal tone, emotion, and speaker identity across languages
- Automatic timestamp duration alignment with video lip-sync pacing
curl -X POST https://api.brainiall.com/v1/audio/dub \ -H "Authorization: Bearer $BRAINIALL_KEY" \ -F "video=@course_video.mp4" \ -F "target_language=es" \ -F "voice_match=true" \ --output dubbed_spanish.mp4
Traduction Voix-à-Voix
Traduisez la parole directement en audio dans la langue cible en un seul flux continu.
- Spoken audio in, translated spoken audio out in a single orchestrated pass
- Streaming audio translation without intermediate text roundtrips
curl -X POST https://api.brainiall.com/v1/audio/speech-to-speech \ -H "Authorization: Bearer $BRAINIALL_KEY" \ -F "audio=@english_query.wav" \ -F "source_lang=en" \ -F "target_lang=pt-br" \ --output translated_speech.wav
Pipeline Unifié Speech Suite Pro
Pipeline complet combinant transcription, diarisation, traduction et anonymisation PII en un seul appel.
- Complete turnkey pipeline: Transcription + Diarization + PII Redaction + Translation in one call
- Saves up to 40% in latency and compute overhead vs chaining individual APIs
curl -X POST https://api.brainiall.com/v1/audio/pipeline \ -H "Authorization: Bearer $BRAINIALL_KEY" \ -F "audio=@call_center.wav" \ -F "features=transcribe,diarize,redact_pii,translate" \ -F "target_lang=es"