首页 > 其他分享 >SciTech-AV-Audio-DAP(Digital Audio Processing)-Loudness Normalization(响度规范化)

SciTech-AV-Audio-DAP(Digital Audio Processing)-Loudness Normalization(响度规范化)

时间:2024-10-16 20:43:48浏览次数:13  
标签:Audio track mono Processing will DAP Loudness audio Normalization

Loudness Normalization

Use the Loudness Normalization to change the level of the audio (normally reduce it to recommended limits).
It is based on EBU R 128 recommendations on limiting the loudness of audio signals.
See Perceived Loudness for the technical details about it.

Why use Loudness Normalization rather than Normalize or Amplify?

Using Loudness Normalization rather than Normalize or Amplify helps you more easily set the required LUFS loudness target when normalizing.

When preparing audio for television/radio programmes, podcasts and some websites you may be subject to loudness restrictions for the audio.
Loudness is usually measure in LUFS (Loudness Units Full Scale). The LUFS level restrictions can vary by application. For example:

  • the level for television in the US is normally -24 LUFS
  • the EBU(European Broadcasting Union) recommends -23LUFS.

Out of all the standards, this one is the most serious in that a television network can get its broadcast license revoked for a violation. Send in a program with a higher level, and it will be returned for a revision.

Another use case is creating an equally loud playlist from different sources.

Normalize

There are two available options "perceived loudness" (default) and RMS:

  • perceived loudness: the default -23LUFS(the EBU standard) will produce audio that is approximately 25% of full scale.
  • RMS: This will change the amplitude such that the result has the desired RMS level, The default setting is -20dB which will also produce low level audio.

Both LUFS and RMS normalization ensures that different audio projects come out at a relatively uniform volume.


Normalize stereo channels independently

When this box is unchecked (the default), Loudness Normalization will work on the channels of a stereo track as a pair and change the level of both channels by the same amount. Use this if your audio is already correctly balanced as this mode will preserve its original stereo balance.

When this box is checked, Loudness Normalization will adjust the amplitude separately for the left and right channels of a stereo track. This is useful for correcting stereo recordings of LPs and cassettes which may be unbalanced, as long as significant clicks are removed first.


Treat mono as dual-mono

"Dual mono" is when a 2 channel track has identical audio in both left and right channels. A "dual mono" track will sound identical to a (1 channel) mono track that has the same audio as either channel of the "dual mono". However, the EBU R 128 specification does not take account of this, and the 2 channel "dual mono" track will measure at 3 dB higher than the 1 channel version, even though they sound identical on playback.
To counter this effect, Audacity allow you to measure a mono track as if it were a dual stereo track, thus giving the same loudness measurement for a mono recording whether it is one channel mono, or 2 channel mono.

When this box is checked (the default), Loudness will internally double the amplitude of pure mono signals during the LUFS calculation. This is necessary to make mono tracks sound equally loud as dual-mono or stereo tracks on all known audio drivers since they ignore pan law.


Advice

However, this differs from many other LUFS meters. set this "off" if you require compatibility with meters that measure mono tracks 3 LU lower.

Workflow order
Adjusting the audio's maximum amplitude with this effect is normally best performed as a final editing step prior to export of the production audio.

标签:Audio,track,mono,Processing,will,DAP,Loudness,audio,Normalization
From: https://www.cnblogs.com/abaelhe/p/18470887

相关文章

  • YT to WAV - A Handy Tool for Audio Conversion
    Intoday'sdigitalworld,weoftenhavetheneedtoconvertaudioformats.Maybeyou'vecomeacrossagreatsongoraninterestingspeechonYouTubeandwantedtosaveitinadifferentaudioformatforvariousreasons.Well,that'swhereY......
  • PyQt5 使用 Pyinstaller+multiprocessing 打包多进程应用时,引发的一些问题
    解决Pyinstaller打包PyQt5+multiprocessing多进程应用时,引发的一些问题,包括反复启动主进程,以及:AttributeError:'NoneType'objecthasnoattribute'write'本文提供一些解决方案,您可能需要根据自己的实际情况,逐个尝试,直到自己的multiprocessing多进程应用正常运行一、解决......
  • I2C相关结构体讲解:i2c_adapter、i2c_algorithm、i2c_msg
    往期内容I2C子系统专栏:I2C(IIC)协议讲解SMBus协议详解总线和设备树专栏:专栏地址导航篇–专栏未篇1.框图建议右击图片在新标签页打开预览i2c_transfer函数就是读取i2c设备的信息或者输出信息给i2c设备的函数比如发送app发送数据给i2c设备,i2c设备的驱动程序......