காத்திருக்கும் அல்லது முடிந்த எழுத்து மாற்றங்களிலிருந்து தரவைப் பெறுக
அமர்வுகளுடன் மொழிபெயர்ப்பு நிலையை கண்காணிக்கவும் நிர்வகிக்கவும்
மொழிபெயர்க்கப்பட்ட உரையை வேறு மொழிக்கு மொழிபெயர்க்கவும்
ஒரு URL இல் முன் பதிவு செய்யப்பட்ட ஒலியைப் பேசுவதை வெறும் உரைகளாக மாற்றவும்
பயனர் பக்க கோரிக்கைகளுக்கான தற்காலிக உரிமம் வழங்கும் குறியீட்டை உருவாக்கு
பொதுவான கோரிக்கை விருப்பத்தேர்வுகள் மற்றும் அனைத்து மொழிபெயர்ப்பு செயல்பாடுகளுக்கு பதில்கள்
ஒரு பொது பகிரக்கூடிய இணைப்பின் மூலம் நேரடியாக ஒரு எழுத்துப் பரிமாற்றத்தை ஒளிபரப்ப பயன்படுத்தக்கூடிய ஒரு அமர்வை உருவாக்கவும்
JavaScriptimport { LiveTranscription } from '@vocalstack/js-sdk'; const sdk = new LiveTranscription({ apiKey: 'YOUR-API-KEY' }); const stream = await sdk.connect({ // Optional: Integrate this stream with a Polyglot session polyglot_id: 'YOUR-POLYGLOT-SESSION-ID', // Optional: language of the speech spoken // (this can be used to improve the transcription accuracy) language: 'en', // Optional: Translate the transcription to these languages translations: ['de'], // Optional: Stop the stream after this many seconds of inactivity timeout_period_s: 60, // Optional: Hard stop the stream after this many seconds max_duration_s: 300, }); // Start the stream stream.start(); // Get audio data from a microphone and send it to the stream // stream.sendBuffer(buffer); // *** This is a placeholder for the actual implementation *** // Manually stop the stream (in this example, after 60 seconds) // If max_duration_s is set, stopping the stream is optional setTimeout(() => stream.stop(), 60000); // Listen for stream transcription data stream.onData((response) => { const { status, data } = response; console.log(status); // 'waiting', 'processing', 'done', 'stopping' or 'error' if (data) { console.log(data.timeline); // an object with the transcription timeline } if (status === 'done') { console.log(data.summary); // a summary of the transcription console.log(data.keywords); // an array of keywords console.log(data.paragraphs); // the entire transcription in paragraph form } });
JavaScriptconst mic = require('mic'); // Create a new instance of the microphone utility const micInstance = mic(); // Get the audio input stream const micStream = micInstance.getAudioStream(); // Capture the audio data from the microphone micStream.on('data', (data) => { stream.sendBuffer(data); // send the buffer data to the VocalStack API }); // Start capturing audio from the microphone micInstance.start();
ஊடக பதிவிறக்கி
பின்வரும் உதாரணத்தில் காணப்படும் API. (இது போன்ற ஒரு தொகுப்பை பயன்படுத்துவதும் ஒரு நல்ல யோசனை ஆகும் ) பதிவு
which improves browser compatibility) JavaScript// Request access to the microphone const mediaStream = await navigator.mediaDevices.getUserMedia({ audio: true }); // Create a MediaRecorder instance to capture audio data const mediaRecorder = new MediaRecorder(mediaStream); // Event handler to process audio data packets mediaRecorder.ondataavailable = async (event) => { const blob = event.data; // this is the audio packet (Blob) const buffer = await blob.arrayBuffer(); // convert the Blob to a Buffer stream.sendBuffer(buffer); // send the buffer data to the VocalStack API }; // Start capturing audio, and send it to the stream every second mediaRecorder.start(1000);
.m3u8
ஒரு செல்லுபடியாகும் HLS (HTTP நேரடி ஒளிபரப்பு) பாடல் பட்டியைக் குறிக்கும் கோப்பு விரிவாக்கம்.JavaScriptimport { LiveTranscription } from '@vocalstack/js-sdk'; const sdk = new LiveTranscription({ apiKey: 'YOUR-API-KEY' }); const stream = await sdk.connect({ // must be a valid HLS streaming protocol livestream_url: 'http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/nonuk/sbr_low/ak/bbc_world_service.m3u8', // The rest of these options are the same as for microphone live transcriptons }); stream.start(); stream.onData((response) => { // The response object is the same as the one // returned by microphone transcriptions });
பலமொழி அடையாளம் (_i)
மேலே உள்ள உதாரணங்களில் காட்டப்பட்டுள்ளபடி, எழுத்து மாற்றம் செய்யும் கோரிக்கைக்கான விருப்பம்.