माइक्रोफोन वा प्रत्यक्ष प्रवाहबाट प्रत्यक्ष भाषण प्रतिलिपि गर्नुहोस्। प्रयोगकर्ता कुनै पनि भाषामा पढ्न सक्छ जो अनुवाद लागि एक सार्वजनिक shareable लिङ्क सिर्जना गर्न Polyglot संग एकीकृत
सत्रहरूसँग अनुगमन र प्रतिलिपि स्थिति प्रबन्ध गर्नुहोस् । सत्र प्रयोग गरेर तपाईँले पहिले सिर्जना गरिएको अतुल्यकालिक जडानमा पुन: जडान गर्न सक्नुहुन्छ ।
अन्य भाषामा प्रतिलिपि गरिएको पाठ अनुवाद गर्नुहोस् । यो कुनै पनि लिखित वा अलिखित नियम, नियमावली वा नियमावलीको प्रतिलिपि हुन सक्छ।
यूआरएलमा पूर्वरेकर्ड गरिएको अडियोबाट सादा पाठमा भाषण प्रतिलिपि गर्नुहोस् । MP3, WAV, FLAC, र OGG सहित प्रमुख फाइल ढाँचा समर्थन गरिन्छ।
क्लाइन्ट पक्ष अनुरोधका लागि अस्थायी प्रमाणीकरण टोकन सिर्जना गर्नुहोस् । सुरक्षित आफ्नो एपीआई कुञ्जीहरू खुला बिना वेब ब्राउजरहरूमा एपीआई अनुरोधहरू कार्यान्वयन गर्नुहोस्।
सबै प्रतिलिपि सञ्चालनका लागि साझा अनुरोध विकल्प र प्रतिक्रिया । प्रतिलिपि सेटिङ कन्फिगर गर्न विकल्प प्रयोग गर्नुहोस् ।
सार्वजनिक साझेदारीयोग्य लिङ्क मार्फत प्रत्यक्ष प्रतिलिपि प्रसारण गर्न प्रयोग गर्न सकिने सत्र सिर्जना गर्नुहोस् । प्रयोगकर्ता आफ्नो मनपर्ने भाषामा प्रत्यक्ष प्रतिलिपि पढ्न सक्छ, र पनि आफ्नो सत्र निष्क्रिय छ जब पछिल्लो प्रतिलिपि
Transcriptionsएकल प्रतिलिपि प्राप्त गर्दै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 जब एक अनुवाद प्रक्रिया पहिलो सुरु हुन्छ फर्काइएको छ। यद्यपि, यो पनि माथिको API प्रयोग गरेर सबै transcriptions हेरेर प्राप्त गर्न सकिन्छ। idएउटा निश्चित प्रतिलिपि प्रयोग प्राप्त गर्न Transcriptionsप्रतिक्षा गरिएको प्रतिलिपि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 र summaryपछिल्लो चरणparagraphs.