ಮೈಕ್ರೋಫೋನ್ ಅಥವಾ ಲೈವ್ ಸ್ಟ್ರೀಮ್ ನಿಂದ ಸಜೀವ ಭಾಷಣವನ್ನು ಟ್ರಾನ್ಸ್ಕ್ರಿಪ್ಟ್ ಮಾಡಿ
ಅಧಿವೇಶನಗಳೊಂದಿಗೆ ಲಿಪ್ಯಂತರ ಸ್ಥಿತಿಯನ್ನು ಮೇಲ್ವಿಚಾರಣೆ ಮತ್ತು ನಿರ್ವಹಣೆ ಮಾಡು
ನಕಲಿಸಿ ಬರೆದ ಪಠ್ಯವನ್ನು ಬೇರೆ ಭಾಷೆಗೆ ಅನುವಾದಿಸಿ
URL ನಲ್ಲಿ ಮುಂಚಿತವಾಗಿ ರೆಕಾರ್ಡ್ ಮಾಡಲಾದ ಧ್ವನಿಗಳಿಂದ ಪಠ್ಯವನ್ನು ನಕಲಿಸು
ಗ್ರಾಹಕ ಬದಿಯ ಕೋರಿಕೆಗಳಿಗೆ ತಾತ್ಕಾಲಿಕ ದೃಢೀಕರಣ ಟೋಕನ್ ಅನ್ನು ರಚಿಸು
ಎಲ್ಲಾ ಲಿಪ್ಯಂತರ ಕಾರ್ಯಗಳಿಗೂ ಸಾಮಾನ್ಯವಾದ ಕೋರಿಕೆ ಆಯ್ಕೆಗಳು ಹಾಗು ಪ್ರತಿಕ್ರಿಯೆಗಳು
ಸಾರ್ವಜನಿಕ ಹಂಚಿಕೊಳ್ಳಬಹುದಾದ ಕೊಂಡಿಯ ಮೂಲಕ ಸಜೀವ ಲಿಪ್ಯಂತರವನ್ನು ಪ್ರಸಾರಿಸಲು ಬಳಸಬಹುದಾದ ಅಧಿವೇಶನವನ್ನು ರಚಿಸಿ
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
ಆ ಲಿಪ್ಯಂತರದ. 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
.