மைக்ரோபோனில் இருந்து நேரடி உரையை அல்லது நேரடி ஒலியை பதிவு செய்க
அமர்வுகளுடன் மொழிபெயர்ப்பு நிலையை கண்காணிக்கவும் நிர்வகிக்கவும்
மொழிபெயர்க்கப்பட்ட உரையை வேறு மொழிக்கு மொழிபெயர்க்கவும்
ஒரு URL இல் முன் பதிவு செய்யப்பட்ட ஒலியைப் பேசுவதை வெறும் உரைகளாக மாற்றவும்
பயனர் பக்க கோரிக்கைகளுக்கான தற்காலிக உரிமம் வழங்கும் குறியீட்டை உருவாக்கு
பொதுவான கோரிக்கை விருப்பத்தேர்வுகள் மற்றும் அனைத்து மொழிபெயர்ப்பு செயல்பாடுகளுக்கு பதில்கள்
ஒரு பொது பகிரக்கூடிய இணைப்பின் மூலம் நேரடியாக ஒரு எழுத்துப் பரிமாற்றத்தை ஒளிபரப்ப பயன்படுத்தக்கூடிய ஒரு அமர்வை உருவாக்கவும்
Transcriptions
VocalStack SDK யிலிருந்து: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
ஒரு மாற்று செயல்முறை முதலில் தொடங்கும் போது திரும்பி வருகிறது. எனினும், மேலே உள்ள API ஐப் பயன்படுத்தி அனைத்து மொழிபெயர்ப்புகளையும் பார்ப்பதன் மூலம் அதைப் பெற முடியும். Transcriptions
VocalStack SDK யிலிருந்து: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
.