内容简介:With people doing video conferencing all day, good audio has recently become much more important. The best option is obviously a proper audio studio. Unfortunately, this is not something you will always have and you might need to make do with a much simple
With people doing video conferencing all day, good audio has recently become much more important. The best option is obviously a proper audio studio. Unfortunately, this is not something you will always have and you might need to make do with a much simpler setup.
In such situations, a noise reduction filter that keeps your voice but filters out ambient noises (street noise, keyboard, …) can be very helpful. In this article, we will take a look at how to integrate such a filter into PulseAudio so that it can easily be used in all applications with no additional requirements on their part.
The Idea
We set up PulseAudio for live noise-reduction using an LADSPA filter .
This creates a new PulseAudio source which can be used as a virtual microphone. Other applications will not even realize that they are not dealing with physical devices and you can select it as if you had an additional microphone connected.
Terminology
Before we start, it is good to know the following two PulseAudio terms to better understand what we are doing:
- source – represents a source from which audio can be obtained. Like a microphone
- sink – represents a consumer of audio like a speaker
Each PulseAudio sink also has a source called monitor which can be used to get the audio put into that sink. For example, you could have audio put out by your headphones while using the monitor of your headphone device to record the output.
Installation
While PulseAudio is usually pre-installed, we need to get the LADSPA filter for noise reduction. You can build and install the filter manually , but it is much easier to install the filter via Fedora Copr:
sudo dnf copr enable -y lkiesow/noise-suppression-for-voice sudo dnf install -y ladspa-realtime-noise-suppression-plugin
Note that the Copr projects are not maintained and quality-controlled by Fedora directly.
Enable Noise Reduction Filter
First, you need to identify the name of the device you want to apply the noise reduction to. In this example, we’ll use the RODE NT-USB microphone as input.
$ pactl list sources short 0 alsa_input.usb-RODE_Microphones_RODE_NT-USB-00.iec958-stereo … 1 alsa_output.usb-0c76_USB_Headphone_Set-00.analog-stereo.monitor …
Next, we create a new PulseAudio sink, the filter and a loopback between microphone and filter. That way, the output from the microphone is used as input for the noise reduction filter. The output from this filter will then be available via the null sink monitor.
To visualize this, here is the path the audio will travel from the microphone to, for example, a browser:
mic → loopback → ladspa filter → null sink [monitor] → browser
While this sounds complicated, it is set up with just a few simple commands:
pacmd load-module module-null-sink \ sink_name=mic_denoised_out pacmd load-module module-ladspa-sink \ sink_name=mic_raw_in \ sink_master=mic_denoised_out \ label=noise_suppressor_stereo \ plugin=librnnoise_ladspa \ control=50 pacmd load-module module-loopback \ source=alsa_input.usb-RODE_Microphones_RODE_NT-USB-00.iec958-stereo \ sink=mic_raw_in \ channels=2
That’s it. You should now be able to select the new device.
Chromium
Unfortunately, browsers based on Chromium will hide monitor devices by default. This means, that we cannot select the newly created noise-reduction device in the browser. One workaround is to select another device first, then use pavucontrol to assign the noise-reduction device afterward.
But if you do this on a regular basis, you can work around the issue by using the remap-source module to convert the null sink monitor to a regular PulseAudio source. The module is actually meant for remapping audio channels – e.g. swapping left and right channel on stereo audio – but we can just ignore these additional capabilities and create a new source similar to the monitor:
pacmd load-module module-remap-source \ source_name=denoised \ master=mic_denoised_out.monitor \ channels=2
The remapped device delivers audio identical to the original one so that assigning this with PulseAudio will yield no difference. But this device does now show up in Chromium:
Improvements
While the guide above should help you with all the basics and will get you a working setup, there are a few things you can improve.
But while the commands above should generally work, you might need to experiment with the following suggestions.
Latency
By default, the loopback module will introduce a slight audio latency. You can hear this by running an echo test:
gst-launch-1.0 pulsesrc ! pulsesink
You might be able to reduce this latency by using the latency_msec option when loading the loopback module:
pacmd load-module module-loopback \ latency_msec=1 \ source=alsa_input.usb-RODE_Microphones_RODE_NT- USB-00.iec958-stereo \ sink=mic_raw_in \ channels=2
Voice Threshold
The noise reduction library provides controls for a voice threshold. The filter will return silence if the probability for sound being voice is lower than this threshold. In other words, the higher you set this value, the more aggressive the filter becomes.
You can pass different thresholds to the filter by supplying them as control argument when the ladspa-sink module is being loaded.
pacmd load-module module-ladspa-sink \ sink_name=mic_raw_in \ sink_master=mic_denoised_out \ label=noise_suppressor_stereo \ plugin=librnnoise_ladspa \ control=95
Mono vs Stereo
The example above will work with stereo audio. When working with a simple microphone, you may want to use a mono signal instead.
For switching to mono, use the following values instead when loading the different modules:
- label=noise_suppressor_mono – when loading the ladspa-sink module
- channels=1 – when loading the loopback and remap-source modules
Persistence
Using the pacmd command for the setup, settings are not persistent and will disappear if PulseAudio is restarted. You can add these commands to your PulseAudio configuration file if you want them to be persistent. For that, edit ~/.config/pulse/default.pa and add your commands like this:
.include /etc/pulse/default.pa load-module module-null-sink sink_name=mic_denoised_out load-module module-ladspa-sink … …
Limitations
If you listen to the example above, you will notice that the filter reliably reduces background noise. But unfortunately, depending on the situation, it can also cause a loss in voice quality.
The following example shows the results with some street noise. Activating the filter reliably removes the noise, but in this example, the voice quality noticeably drops as well:
As a conclusion, we can say that this can help if you find yourself in less than ideal audio scenarios. It is also very effective if you are not the main speaker in a video conference and you do not want to constantly mute yourself.
Still, good audio equipment and a quiet environment will always be better.
Have fun.
以上所述就是小编给大家介绍的《Real-time noise suppression for video conferencing》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
像计算机科学家一样思考Python (第2版)
[美] 艾伦 B. 唐尼 / 赵普明 / 人民邮电出版社 / 2016-7 / 49.00
本书以培养读者以计算机科学家一样的思维方式来理解Python语言编程。贯穿全书的主体是如何思考、设计、开发的方法,而具体的编程语言,只是提供了一个具体场景方便介绍的媒介。 全书共21章,详细介绍Python语言编程的方方面面。本书从基本的编程概念开始讲起,包括语言的语法和语义,而且每个编程概念都有清晰的定义,引领读者循序渐进地学习变量、表达式、语句、函数和数据结构。书中还探讨了如何处理文件和......一起来看看 《像计算机科学家一样思考Python (第2版)》 这本书的介绍吧!