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
Kiểm tra và quản lý trạng thái phiên dịch với các phiên
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
JavaScriptimport { Transcriptions } from '@vocalstack/js-sdk'; const sdk = new Transcriptions({ apiKey: 'YOUR-API-KEY' }); const translation = await sdk.addTranslationAsync({ id: 'TRANSCRIPTION-ID', language: 'de', }); translation.onData((response) => { // 'waiting', 'processing', 'done', or 'error' console.log(response.status); // the translated timeline console.log(response.data?.timeline); });
JavaScriptimport { Transcriptions } from '@vocalstack/js-sdk'; const sdk = new Transcriptions({ apiKey: 'YOUR-API-KEY' }); // This is a synchronous request, so we cannot listen for the response sdk.addTranslation({ id: 'TRANSCRIPTION-ID', language: 'de' });
timeline
objects with the most recent translations available.