الحصول على بيانات من النصوص المستنسخة قيد النظر أو المكتملة
نسخ خطاب حي من ميكروفون أو تدفق حي
رصد وإدارة حالة النسخ مع الجلسات
نسخ الكلام من الصوت المسجل مسبقاً في عنوان URL إلى نص عادي
إنشاء رمز مؤقت للتحقق من الطلبات من جانب العميل
خيارات الطلب المشتركة والاستجابات لجميع عمليات النسخ
إنشاء جلسة يمكن استخدامها لبث نسخة حية من خلال وصلة عامة قابلة للتقاسم
JavaScriptimport { Transcriptions } from '@vocalstack/js-sdk'; const sdk = new Transcriptions({ apiKey: 'YOUR-API-KEY' }); const translation = await sdk.addTranslationAsync({ id: 'TRANSCRIPTION-ID', language: 'de', }); translation.onData((response) => { // 'waiting', 'processing', 'done', or 'error' console.log(response.status); // the translated timeline console.log(response.data?.timeline); });
JavaScriptimport { Transcriptions } from '@vocalstack/js-sdk'; const sdk = new Transcriptions({ apiKey: 'YOUR-API-KEY' }); // This is a synchronous request, so we cannot listen for the response sdk.addTranslation({ id: 'TRANSCRIPTION-ID', language: 'de' });
timeline
objects with the most recent translations available.