Created
February 7, 2022 12:23
-
-
Save pgrepds/b78d8ca1914414a4219d71a26bd6b247 to your computer and use it in GitHub Desktop.
Test microphone on Linux via loopback
This file contains 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
Install PulseAudio Volume Control (pavucontrol). | |
Execute the following command. | |
``` | |
pactl load-module module-loopback latency_msec=1 | |
``` | |
The above will route the microphone output back to the input. | |
``` | |
pactl unload-module module-loopback | |
``` | |
stops it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment