VocalStack Logo

Documentation

ट्रांसक्रिप्शन माहिती प्राप्त करा

या योजनेत निवृत्तीनंतर मिळणारे अनुदान या योजनेत समाविष्ट केले जाते

मायक्रोफोन किंवा लाइव स्ट्रीम पासून ट्रान्सक्रिप्शन कराName

या वृत्तपत्रात रवींद्रनाथ टागोर यांचा जीवनपट छापला गेला

ट्रान्सक्रिप्शन सत्र

Monitor and manage transcription state with sessions

URL पासून ऑडिओ ट्रान्सक्राइब करा

या पुस्तकात त्यांनी मराठीतील एकमेव मराठी चित्रपट 'अभिनय' या विषयावर लिहिलेले पुस्तक प्रकाशित केले आहे

क्लाऐंट बाजूचे अधिप्रमाणन टोकन

ग्राहक बाजूच्या विनंतींसाठी तात्पुरते प्रमाणीकरण टोकन बनवा

ट्रांसक्रिप्शन विनंती व प्रतिसाद

सर्व ट्रांसक्रिप्शन क्रिया करीता सामान्य विनंती पर्याय व प्रतिसाद

पॉलीग्लोट सत्रचे रूपांतर व सादरीकरणName

एक सत्र तयार करा जे सार्वजनिक शेअरिंग लिंकद्वारे लाइव्ह ट्रान्सक्रिप्शन प्रसारित करण्यासाठी वापरले जाऊ शकते

मराठी भाषेतील इतर भाषांत अनुवादित केले. याशिवाय, या योजनेत, प्रवासी, मालवाहतूक, प्रवासी वाहतूक, प्रवासी वाहतूक या सर्व प्रकारचे प्रवास समाविष्ट आहेत.
You can use the VocalStack API to translate any transcription, whether it is finished or still processing. If you have not yet started transcribing audio, you can do so with any of the following methods:
URL पासून ऑडिओ ट्रान्सक्राइब करा
या पुस्तकात त्यांनी मराठीतील एकमेव मराठी चित्रपट 'अभिनय' या विषयावर लिहिलेले पुस्तक प्रकाशित केले आहे. MP3, WAV, FLAC, आणि OGG सारख्या प्रमुख फाइल स्वरूपांना समर्थन आहे.
मायक्रोफोन किंवा लाइव स्ट्रीम पासून ट्रान्सक्रिप्शन कराName
या वृत्तपत्रात रवींद्रनाथ टागोर यांचा जीवनपट छापला गेला. पॉलीग्लोटसह एकत्रित करा जेणेकरून वापरकर्ते कोणत्याही भाषेत वाचू शकतात अशा लिप्यंतरणासाठी सार्वजनिकपणे शेअर करण्याची लिंक तयार करा.
पॉलीग्लोट सत्रचे रूपांतर व सादरीकरणName
एक सत्र तयार करा जे सार्वजनिक शेअरिंग लिंकद्वारे लाइव्ह ट्रान्सक्रिप्शन प्रसारित करण्यासाठी वापरले जाऊ शकते. मराठी भाषेतील सर्वच वृत्तपत्रे मराठीतच प्रकाशित होतात, पण मराठी वृत्तपत्रे मराठीतच लिहिली जातात.
If you need to load your translations as soon as they become available then you will want to listen to the translation request asynchronously:
JavaScript
import { Transcriptions } from '@vocalstack/js-sdk'; const sdk = new Transcriptions({ apiKey: 'YOUR-API-KEY' }); const translation = await sdk.addTranslationAsync({ id: 'TRANSCRIPTION-ID', language: 'de', }); translation.onData((response) => { // 'waiting', 'processing', 'done', or 'error' console.log(response.status); // the translated timeline console.log(response.data?.timeline); });
This method for translating simply sends the translation request, but does not wait for a response. This method can be useful if:
  • You don't need the translation right now, but you want to cache it for quick access in the future. (see Performance Caching)
  • There is a transcription in a live Polyglot session that you're already monitoring in another process, and you simply want to add a new translation to this transcription.
JavaScript
import { Transcriptions } from '@vocalstack/js-sdk'; const sdk = new Transcriptions({ apiKey: 'YOUR-API-KEY' }); // This is a synchronous request, so we cannot listen for the response sdk.addTranslation({ id: 'TRANSCRIPTION-ID', language: 'de' });
As translations execute on the backend, the persisted transcription data is updated to include the new translations. The persisted transcriptions get updated with each timeline segment translated, so API calls requesting transcription data will always return timeline objects with the most recent translations available.
This also means that you will only need to issue one translation request per language. (Additional requests will have no effect as the translations are already persisted.)
Scroll Up