Տվյալների վերցում սպասվող կամ կատարված թարգմանություններից։ Այստեղ ներառված են տեքստի ժամանակային գիծը, հիմնական բառերը, ամփոփումը և կետի հատվածները։
Զրույցը միկրոֆոնից կամ ուղիղ ալիքից ձայնագրել : Ինտեգրել Polyglot-ի հետ՝ ստեղծելու համար հանրային կիսում ունեցող հղում, որը օգտագործողները կարող են կարդալ ցանկացած լեզվով։
Հաշվարկել և կառավարել թարգմանության վիճակը դասընթացների միջոցով։ Օգտագործելով նստաշրջանները դուք կարող եք վերամիավորվել նախորդ ստեղծված ասինկրոնիկ կապին։
Թարգմանել թարգմանված տեքստը այլ լեզվով ։ Սա կարող է արվել ցանկացած թարգմանության համար, ներառյալ նախօրոք ձայնագրված թարգմանությունները, կենդանի թարգմանությունները կամ Polyglot session transcribes
Ընտրեք ՝ արդյոք ցանկանում եք ստեղծել ժամանակավոր հեղինակավորման տոկոսադրույք ՝ հաճախորդի կողմից ներկայացված խնդրանքների համար ։ Անվտանգորեն իրականացրեք API խնդրանքները վեբ զննարկիչներում՝ առանց ձեր API կոդերը հայտնաբերելու։
Ընդհանուր խնդրանքի ընտրանքներ և պատասխաններ բոլոր փոխանցման գործողությունների համար։ Կիրառեք ընտրանքները փոխանցման պարամետրերը կիրառելու համար։
Ընտրեք ընթացիկ ընթերցումը, որը կարող է օգտագործվել ուղիղ ձայնագրության տարածման համար հանրային կիսում ունեցող հղման միջոցով։ Օգտագործողները կարող են կարդալ կենդանի թարգմանությունները իրենց նախընտրած լեզվով, և նույնիսկ անցյալ թարգմանությունները, երբ ձեր սեանսը անակտիվ է։
JavaScriptimport { UrlTranscription } from '@vocalstack/js-sdk'; const sdk = new UrlTranscription({ apiKey: 'YOUR-API-KEY' }); const transcription = await sdk.connect({ url: 'http://example.com/files/meaningless.mp3', }); transcription.start(); // This will print the transcription data as it comes in transcription.onData(console.log); /* { status: 'processing', data: { id: 'd1e7b3b0-7b3b-4b3b-8b3b-0b3b7b3b3b3b', operation: 'transcription-prerecorded', progress: 0.1, timeline: [ { start: 0, end: 7.52, text: 'Meaningless, meaningless, says the teacher, utterly meaningless, everything is meaningless.', language: 'en', translations: { ... }, }, ... ] } } */
JavaScript// Run "npm install @voca l-stack/js-sdk" to install the package import { UrlTranscription } from '@vocalstack/js-sdk'; // Get your key here ⇢ https://www.vocalstack.com/dashboard/api-keys const sdk = new UrlTranscription({ apiKey: 'YOUR-API-KEY' }); const transcription = await sdk.connect({ // URL to the audio file url: 'http://example.com/files/audio.mp3', // Optional: language of the speech spoken // (this can be used to improve the transcription accuracy) language: 'en', // Optional: the maximum duration to transcribe, in seconds // (if not provided, the entire audio file will be transcribed) max_duration_s: 1800, // Optional: the actual duration of the audio file, in seconds // (the transcription starts only if the audio file matches this duration) duration_s: 3600, }); // Start the transcription transcription.start(); // Listen for transcription data transcription.onData((response) => { const { status, data } = response; console.log(status); // 'waiting', 'processing', 'done', or 'error' if (data) { console.log(data.progress); // a value between 0 and 1 console.log(data.timeline); // an object with the transcription timeline } if (status === 'done') { console.log(data.summary); // a summary of the transcription console.log(data.keywords); // an array of keywords console.log(data.paragraphs); // the entire transcription in paragraph form } });