interface RoomOutputOptions {
    audioEnabled: boolean;
    audioNumChannels: number;
    audioPublishOptions: TrackPublishOptions;
    audioSampleRate: number;
    syncTranscription: boolean;
    transcriptionEnabled: boolean;
}

Properties

audioEnabled: boolean

If not given, default to True.

audioNumChannels: number
audioPublishOptions: TrackPublishOptions

The name of the audio track to publish. If not provided, default to "roomio_audio".

audioSampleRate: number
syncTranscription: boolean

False to disable transcription synchronization with audio output. Otherwise, transcription is emitted as quickly as available.

transcriptionEnabled: boolean

If not given, default to True.