Lấy dữ liệu từ các bản dịch đang chờ hoặc đã hoàn thành
Transcribe live speech from a microphone or live stream
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
connect
. Session only ends when transcription ends with a state of "done" or "error". Following calls to. connect
với cùng một yêu cầu phiên âm sẽ trả về transcription
object for the same transcription connection. JavaScript// Process 1: import { UrlTranscription } from '@vocalstack/js-sdk'; const sdk = new UrlTranscription({ apiKey: 'YOUR-API-KEY' }); const transcription = await sdk.connect({ file: 'speech.mp3' }); transcription.start(); // Process 2: import { UrlTranscription } from '@vocalstack/js-sdk'; const sdk = new UrlTranscription({ apiKey: 'YOUR-API-KEY' }); const transcription = await sdk.connect({ file: 'speech.mp3' }); transcription.onData((response) => { console.log(response.data); });