salmon-lighter-12882
02/25/2025, 11:43 AMgray-monkey-83525
02/25/2025, 11:43 AMAudioCaptureOptions
in LiveKit, you can use the AudioCaptureOptions
constructor to set various properties such as deviceId
, noiseSuppression
, echoCancellation
, autoGainControl
, highPassFilter
, and typingNoiseDetection
. These options allow you to customize the audio capture settings according to your needs. For example, you can enable or disable noise suppression or echo cancellation based on your requirements.
const AudioCaptureOptions(
deviceId: 'your-device-id',
noiseSuppression: true,
echoCancellation: true,
autoGainControl: true,
highPassFilter: false,
typingNoiseDetection: true,
);
Would you like more details on any specific option or how to implement this in a particular SDK?
Sources:
- AudioCaptureOptions constructor 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.