या वृत्तपत्रात रवींद्रनाथ टागोर यांचा जीवनपट छापला गेला
Monitor and manage transcription state with sessions
मराठी भाषेतील इतर भाषांत अनुवादित केले
या पुस्तकात त्यांनी मराठीतील एकमेव मराठी चित्रपट 'अभिनय' या विषयावर लिहिलेले पुस्तक प्रकाशित केले आहे
ग्राहक बाजूच्या विनंतींसाठी तात्पुरते प्रमाणीकरण टोकन बनवा
सर्व ट्रांसक्रिप्शन क्रिया करीता सामान्य विनंती पर्याय व प्रतिसाद
एक सत्र तयार करा जे सार्वजनिक शेअरिंग लिंकद्वारे लाइव्ह ट्रान्सक्रिप्शन प्रसारित करण्यासाठी वापरले जाऊ शकते
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
प्रत्येक वेळी transcription प्रक्रिया प्रथम सुरू होते तेव्हा परत येते. परंतु हे सुद्धा वरील 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
.