Afritaðu lifandi ræðu úr hljóðnema eða lifandi straumi
Fylgjast með og stjórna ritun stöðu með setum
Þýddu afrituð texta á annað tungumál
Umrita ræðu frá fyrirfram upptöku hljóð í vefslóð í venjulegum texta
Búa til tímabundið auðkennistákn fyrir beiðnir frá biðlara
Algengar beiðnir og svör fyrir allar afritunaraðgerðir
Búa til setu sem hægt er að nota til að senda út lifandi afritun í gegnum opinberan tengil
Transcriptions
frá VocalStack SDK:JavaScriptimport { 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
af þeirri afritun. The id
er skilað þegar ritun ferli er fyrst hafin. Einnig er hægt að nota táknmyndir til að sýna allar þær myndir sem eru í boði. Þessi grein er stubbur. Transcriptions
Afritunarvinna í biðJavaScriptimport { 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
og summary
Næstu skrefparagraphs
.