开发者

How do I De-Ess a sound file with SoX?

开发者 https://www.devze.com 2022-12-21 15:03 出处:网络
I am using SoX to create slow but pitch corrected audio files.The resulting files sound pretty good, but often have a very hard \"S\" sound that I would like to filter out.Many desktop programs includ

I am using SoX to create slow but pitch corrected audio files. The resulting files sound pretty good, but often have a very hard "S" sound that I would like to filter out. Many desktop programs include a "De-Essing" filter tha开发者_如何学运维t works well, but I would like to have a filter that works on the server side.

What SoX filter and parameters should I use to De-Ess an audio file?

Edit: I should add that this needs to work on Linux.


There is a LADSPA DeEsser plugin that can be used from SoX. You need to have tap plugins installed and properly configured on your system. On Archlinux this can be easily achieved with

pacman -S tap-plugins

You can specify threshold and frequency as first and second arguments. I succesfully used a variant of the following command

# -30: threshold (dB)
# 6200: hiss frequency (Hz)
sox from.wav to.wav ladspa tap_deesser tap_deesser -30 6200

The filter has a fistful of other options I did not analyzed. More details can be found here.


While far from perfect, you may be able to get sufficient results by a suitable low-pass filter. That should not affect other parts of a speech signal too much.


You could use a de-esser VST such as spitfish and a command-line VST host such as MissWatson. Sox has very limited plugin support, so if you need something more specific, you're better off going the VST route.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号