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

Graphic tutorial on configuring nginx file server in windows 10 system

Download the Windows version of Nginx from the Ng...

A detailed introduction to Linux memory management and addressing

Table of contents 1. Concept Memory management mo...

How to use the markdown editor component in Vue3

Table of contents Install Importing components Ba...

Comparison of two implementation methods of Vue drop-down list

Two implementations of Vue drop-down list The fir...

Comprehensive summary of Vue3.0's various listening methods

Table of contents Listener 1.watchEffect 2.watch ...

Analysis of MySQL's method of exporting to Excel

This article describes how to use MySQL to export...

A brief understanding of the three principles of adding MySQL indexes

1. The Importance of Indexes Indexes are used to ...

js+canvas realizes code rain effect

This article shares the specific code of js+canva...

Let's learn about the MySQL storage engine

Table of contents Preface 1. MySQL main storage e...

Detailed explanation of the execution process of JavaScript engine V8

Table of contents 1. V8 Source 2. V8 Service Targ...

jQuery plugin to implement floating menu

Learn a jQuery plugin every day - floating menu, ...

vue.config.js packaging optimization configuration

The information on Baidu is so diverse that it...

Detailed tutorial for installing mysql5.7.21 under Windows system

MySQL Installer provides an easy-to-use, wizard-b...