Nôl Data Trawssgrifiad

Pori Dogfennaeth
Nôl data o drosysgrifiadau ar y gweill neu wedi'u cwblhau. Mae hyn yn cynnwys y llinell amser trosglwyddo, allweddair, crynodeb, a rhannau paragraff.
Nôl y Trawssgrifiadau
Trosysgrifo Sain o URL
Trosysgrifo iaith o sain wedi'i recordio'n barod mewn URL i destun plaen. Cynhelir fformatau ffeil mawr, gan gynnwys MP3, WAV, FLAC, a OGG.
Trosysgrifo o'r Meicroffon neu LiveStream
Trosysgrifo siarad byw o microffon neu llif byw. Cyfuno â Polyglot i greu cysylltiad cyhoeddus rhannadwy ar gyfer y trosysgrifiad y gall defnyddwyr ei ddarllen mewn unrhyw iaith.
Trosysgrifo a Chyflwyno Sesiwn PolyglotName
Creu sesiwn y gellir ei ddefnyddio i ddarlledu trosglwyddiad byw drwy gyswllt cyhoeddus rhannadwy. Gall defnyddwyr ddarllen trosysgrifiadau byw yn eu hoff iaith, a hyd yn oed trosysgrifiadau o'r gorffennol pan fo'ch sesiwn yn anweithredol.
o' r SDK VocalStack:TranscriptionsDerbyn Trawssgrifiad Sengl
JavaScript
import { 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); });
o'r trosglwyddiad hwnnw. Y id yn dychwelyd bob tro y cychwynnir proses trosglwyddo am y tro cyntaf. Fodd bynnag, gellir ei gael hefyd drwy edrych ar bob un o'r trosysgrifiadau gan ddefnyddio'r API uchod. idI gael traethawd penodol defnyddiwch
o' r SDK VocalStack:TranscriptionsTrawssgrifiadau
JavaScript
import { 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); }
Trawssgrifiadau wedi' u gwblhautimeline.
,, keywords a summaryCam nesafparagraphs.
từ VocalStack SDK:
Cais a Ymateb Trawssgrifiad
Dewisiadau cyffredin cais a chwynion am bob gweithrediad trosglwyddo. Defnyddiwch opsiynau i ffurfweddu gosodiadau trosglwyddo.
Scroll Up