மாதம்
மாதம்தோறும் கட்டணம்ஆண்டுக்கு ஒருமுறை கட்டணம்
VocalStack இன் API உங்கள் ஏற்கனவே உள்ள இணையதளம் அல்லது கட்டமைப்பில் Polyglot அமர்வுகளை ஒருங்கிணைக்க அனுமதிக்கிறது. VocalStack இன் சக்திவாய்ந்த AI மொழிபெயர்ப்பு மற்றும் மொழிபெயர்ப்பு திறன்களை பயன்படுத்தும் தனிப்பயன் பயன்பாடுகளை உருவாக்கவும் நீங்கள் API ஐப் பயன்படுத்தலாம்.
ஆவணமாக்கலை படிக்கவும்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); });