<@U084APK40NS> how can i adjust AudioCaptureOption...
# ask-ai
s
@millions-hair-24956 how can i adjust AudioCaptureOptions
g
To adjust
AudioCaptureOptions
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.
Copy code
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.