Tag Archives: Audio

How to lower USB headphone audio levels on Windows

When connecting my headphones via a simple USB-plug, the audio levels are often way, way, too loud. Today I had to turn the volume all the way down to 2% for the audio just to be OK’ish. That’s not very usable, and also kind of scary…

Finally found something to fix it!

  1. Install Equalizer APO
  2. Open up “C:\Program Files\EqualizerAPO\config\config.txt”
  3. Replace its contents with:
    Preamp: -30 dB
  4. And adjust that level as necessary…

Now I can finally use the volume bar in Windows, and the volume media keys on my keyboard properly. And no longer do I need to be afraid of suddenly having my eardrums shattered if the audio were to move a percentage or two… or, even worse, reset to max…

Simple MP3 to Video for sharing on Facebook

Wanted to share a short sample audio file (MP3) on Facebook, but they only accept images or video. So, found a quick and simple way to convert an MP3 to a black video with sound. 😛

> ffmpeg ^
    -f lavfi ^
    -i color=s=160x120:r=2 ^
    -i AudioFile.mp3 ^
    -c:v libx264 ^
    -preset ultrafast ^
    -c:a copy ^
    -shortest ^
    VideoFile.mp4

Settings for VLC dynamic range compression

Kept Googling for this, so finally figured I should note it down on my own blog. The dynamic range compressor in VLC is a very handy tool I discovered recently. You can use it to even out movies which have both very quiet and very loud scenes so you can hear what people say and not damage your ears when the action scenes kick in.

You find the thing in VLC under Tools, Effects and Filters, Audio Effects, Compressor. Or simply just press Ctrl+E.

Update: To make the Compressor settings persist through VLC restarts, select the Write changes to config option on the Compressor setting tab.

Update: To make the Compressor on by default when you launch VLC, go to Preferences, All, Audio and Filters, and check the Dynamic range compressor box.

Following are some good initial settings you can use. Remember to hit the Enable dynamic range compressor checkbox, or it won’t do much good 😉

RMS/peak

0.0

If threshold should apply to peaks (machine-like) or RMS values (human-ear-like)
Attack

50 ms

How quick to react
Release

300 ms

How slow to release
Threshold

-20.0 dB

When to react
Ratio

20.0:1

How much to compress levels above the treshold
Knee radius

1.0 dB

How soft the compressor should kick in. Zero will apply ratio immediately when level hits threshold. Higher values leads to softer compression closer to the threshold.
Makeup gain

12.0 dB

Fixed audio boost

As you see, I’m not quite sure what all these does, but these settings are a good start which usually gives a good result in my experience. I usually only adjust the makeup gain and leave the others as specified above.

If you know exactly what they do, don’t hesitate to leave a comment and explain it to me cause I’d love to know!

Source: ariandy1.wordpress.com