Transkriber live tale fra en mikrofon eller live stream
Overvåk og administrer transkripsjonsstatus med økter
Oversett transkribert tekst til et annet språk
Transkriber tale fra forhåndsinnspilt lyd i en URL til ren tekst
Opprett et midlertidig autentiseringsmerke for forespørsler fra klientsiden
Vanlige forespørselsvalg og svar for alle transkripsjonsoperasjoner
Opprett en økt som kan brukes til å kringkaste en direktetranskripsjon via en offentlig delbar kobling
Transcriptions
Få en enkelt transkripsjonJavaScriptimport { Transcriptions } from '@vocalstack/js-sdk'; const sdk = new Transcriptions({ apiKey: 'YOUR-API-KEY' }); const transcriptions = await sdk.getAllTranscriptions(); transcriptions.data?.forEach((transcription) => { // the transcription ID (use this to get more details about the transcription) console.log(transcription.id); // 'waiting', 'processing', 'done', or 'error' console.log(transcription.status); // the time the transcription started console.log(transcription.start); // the time the transcription finalized console.log(transcription.end); // the keywords associated with the transcription console.log(transcription.keywords); // the length of the transcription in seconds console.log(transcription.duration); });
id
returneres når en transkripsjonsprosess først er igangsatt. Det kan imidlertid også oppnås ved å se på alle transkripsjonene ved hjelp av API-et ovenfor. id
For å få en spesifikk transkripsjon, bruk Transcriptions
Ventende transkripsjonerJavaScriptimport { Transcriptions } from '@vocalstack/js-sdk'; const sdk = new Transcriptions({ apiKey: 'YOUR-API-KEY' }); const transcription = await sdk.getTranscription({ id: 'TRANSCRIPTION-ID' }); const data = transcription.data; if (data) { // the transcription ID (use this to get more details about the transcription) console.log(data.id); // 'waiting', 'processing', 'done', or 'error' console.log(data.status); // the time the transcription started console.log(data.start); // the time the transcription finalized console.log(data.end); // the keywords associated with the transcription console.log(data.keywords); // the length of the transcription in seconds console.log(data.duration); // an object with the transcription timeline console.log(data.timeline); // a summary of the transcription console.log(data.summary); // the entire transcription in paragraph form console.log(data.paragraphs); }
timeline
.keywords
, summary
og paragraphs
.