Transcribe live speech from a microphone or live stream
Kiểm tra và quản lý trạng thái phiên dịch với các phiên
Dịch văn bản được phiên âm sang ngôn ngữ khác
Transcribe speech from pre-recorded audio in a URL to plain text (bằng tiếng Anh)
Tạo một ký hiệu xác thực tạm thời cho các yêu cầu bên máy khách
Tùy chọn yêu cầu và đáp ứng chung cho tất cả các thao tác phiên âm
Tạo một phiên họp có thể được sử dụng để phát sóng một bản ghi trực tiếp thông qua một liên kết chia sẻ công cộng
Transcriptions
từ 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
của bản dịch đó. id
được trả lại mỗi khi một quá trình phiên mã được khởi động. Tuy nhiên, nó cũng có thể được thu được bằng cách xem xét tất cả các phiên âm sử dụng API trên. Transcriptions
Bản dịch đang chờ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
và summary
Bước tiếp theoparagraphs
.