Ubuntu 20.04 turns on hidden recording noise reduction function (recommended)

Ubuntu 20.04 turns on hidden recording noise reduction function (recommended)

Recently, when using kazam in Ubuntu 20.04 for recording, I found a problem:

When recording using the system's default configuration, the recorded audio has noticeable noise . I remember that there is a microphone noise reduction option in the WIndow system, but I have never found it on Ubuntu. Later, I found a solution to this problem on ask ubuntu. This is a hidden setting that needs to be enabled by modifying the configuration file.

To enable the noise reduction function, we need to modify our system configuration file ( /etc/pulse/default.pa configuration file).
Before modifying it, we need to back up this file.

sudo cp /etc/pulse/default.pa /etc/pulse/default.pa._bak

After the backup is complete, we start to modify this configuration file. Modifying the configuration file is also very simple. We just need to paste the configuration information to the end of the configuration file. Let's first use vim to open this configuration file:

sudo vim /etc/pulse/dafult.pa

After opening the file, use shift + g to jump to the end of the file, and then copy our configuration information into it.
The detailed configuration information is as follows:

#ActiveNoiseRemoval
.ifexists module-echo-cancel.so
load-module module-echo-cancel aec_method=webrtc source_name=mic source_properties=device.description=MicHD
set-default-source "mic"
.endif

After completion, we reboot the system sudo reboot .
Then open the settings panel. At this time, we can see that there is one more option ( MicHD ) in the drop-down list of設置-聲音-輸入.

insert image description here

Switch the screen recording software kazam to MicHD

insert image description here

At this time, we select MicHD and then use the microphone to record. The recorded audio will basically have no background noise.

Summarize

This is the end of this article about turning on the hidden recording noise reduction function in Ubuntu 20.04. For more related Ubuntu 20.04 hidden recording noise reduction content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Ubuntu 20.04 sets a static IP address (including different versions)
  • Ubuntu 20.04 Best Configuration Guide (Newbie Essential)
  • How to change the domestic source of Ubuntu 20.04 apt
  • What to do after installing Ubuntu 20.04 (beginner's guide)
  • Detailed steps to install Sogou input method on Ubuntu 20.04
  • How to Install Pycharm 2020.1 in Ubuntu 20.04

<<:  How to delete node_modules and reinstall

>>:  A brief discussion on the corresponding versions of node node-sass sass-loader

Recommend

Front-end AI cutting tips (experience)

AI image cutting needs to be coordinated with PS....

How CSS affects the white screen time during initial loading

Rendering pipeline with external css files In the...

Example code of vue custom component to implement v-model two-way binding data

In the project, you will encounter custom public ...

Mysql slow query optimization method and optimization principle

1. For comparison of date size, the date format p...

Detailed explanation of nginx optimization in high concurrency scenarios

In daily operation and maintenance work, nginx se...

Summary of how to add root permissions to users in Linux

1. Add a user . First, use the adduser command to...

Specific operations of MYSQL scheduled clearing of backup data

1|0 Background Due to project requirements, each ...

CSS implements Google Material Design text input box style (recommended)

Hello everyone, today I want to share with you ho...

Detailed explanation of the loop form item example in Vue

Sometimes we may encounter such a requirement, th...

Mysql query database capacity method steps

Query the total size of all databases Here’s how:...