Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add info for AEC on linux #122

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,27 @@ https://hosted.weblate.org/projects/trifa-a-tox-client-for-android/trifa-materia
check instructions on how to do it here:
https://github.com/floe/backscrub

## Add Acoustic Echo Cancellation (AEC) to your microphone input (Linux only!)

you need to have an audio in source already plugged in (like a headset with a microphone)

```
pactl unload-module module-echo-cancel
pactl load-module module-echo-cancel \
aec_method=webrtc \
aec_args='noise_suppression=1,intelligibility_enhancer=0,comfort_noise=0' \
source_name=echocancel sink_name=echocancel1

pacmd set-default-source echocancel
pacmd set-default-sink echocancel1
```

to unload the AEC again
```
pactl unload-module module-echo-cancel
```


<br>
Any use of this project's code by GitHub Copilot, past or present, is done
without our permission. We do not consent to GitHub's use of this project's
Expand Down
Loading