VocalStack의 API를 통해 Polyglot 세션을 기존 웹사이트 또는 인프라에 통합할 수 있습니다. 또한 API를 사용하여 VocalStack의 강력한 AI 녹음 및 번역 기능을 활용하는 맞춤형 애플리케이션을 만들 수 있습니다.
문서 읽기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); });