This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pactl load-module module-echo-cancel aec_method=webrtc sink_properties=device.description="Noise_Reduction" aec_args="analog_gain_control=0\ digital_gain_control=0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Directs audio input (e.g. mic) to audio output (e.g. speakers), | |
# then sleeps forever. Stops audio redirection when it is killed. | |
# So, for example, plug your phone into the PC's mic, run 'listen', | |
# and listen to phone audio through your computer's speakers. | |
set -e | |
module=$(pactl load-module module-loopback latency_msec=50) |