API VocalStack به شما اجازه میدهد تا جلسات Polyglot را در وب سایت یا زیرساخت موجود خود ادغام کنید. همچنین میتوانید از API برای ایجاد برنامههای سفارشی استفاده کنید که از قابلیتهای رونویسی و ترجمه هوش مصنوعی VocalStack بهره میبرند.
مستندات را بخوانیدJavaScriptimport { 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); });