Have you turned on your favorite track or video, but instead of powerful bass you hear a barely audible whisper? The problem of quiet sound on a laptop is familiar to many - from owners of budget Lenovo IdeaPad up to bonus MacBook Pro. The reasons may lie either in trivial system settings or in serious hardware malfunctions. But before you take the device to a service center, you should figure it out yourself.

In this article, we won't just list standard tips like "check your volume." We'll go deeper into hidden sound driver settings, let's deal with hardware limitations specific laptop models and show you how to bypass manufacturers' software locks. And also tests that will help accurately diagnose the problem without unnecessary guesswork.

Why the laptop speakers became quiet: 5 main reasons

The first thing to understand is that a quiet sound rarely occurs on its own. This is usually the result of a combination of factors, from Windows updates to physical wear and tear on components. Here are the key culprits:

  • 🔊 Software glitches: Damaged drivers, audio service conflicts, or viruses changing system settings. For example, after updating to Windows 11 23H2 Many users have experienced automatic volume reduction due to the new feature Audio Enhancements.
  • ⚙️ Hardware limitations: Cheap speakers in laptops under RUB 50,000 are physically unable to reproduce low frequencies loudly. B HP Pavilion 15 And Acer Aspire 3 Often there are speakers with a power of just 1.5 W - this is 5 times weaker than in MacBook Air M2.
  • 🎛️ Hidden BIOS/UEFI settings: Some manufacturers (for example, Dell in the lineup Inspiron) lock the maximum volume at the firmware level to avoid distortion.
  • 🔋 Energy saving: Modes Battery or Quiet in Windows/macOS automatically limit the power of the sound card. B Linux the module is responsible for this powertop.
  • 🛠️ Physical damage: Dust in the speakers, loose contacts or damaged membranes. A common problem after falls or overheating (for example, in ASUS TUF Gaming speakers are located next to the ventilation holes).

Interesting fact: in ThinkPad X1 Carbon speakers from Dolby Atmos with technology Smart Amp, which automatically adjusts the volume depending on the temperature of the case. When overheated, the sound may be “muffled” by 30-40%.

📊 How long ago did you notice the problem with the quiet sound?
  • Less than a week
  • 1-3 weeks
  • More than a month
  • Always been quiet

Diagnostics: how to determine the source of the problem

Before you fix anything, you need to understand where exactly the problem lies. Go through this checklist in order - it will help narrow down the circle of “suspects”:

Check the physical volume (F1-F12 buttons or side controls)

Connect headphones - if the sound is loud, the problem is with the speakers

Run a sound test in Control Panel → Sound → Speaker Properties

Update your sound card drivers via Device Manager

Check equalizer settings in applications (Spotify, VLC, Windows Media Player)

Turn off all sound effects in Settings → System → Sound → Output Device

Boot into Safe Mode (Safe Mode) - if the sound becomes normal, the software is to blame-->

If after all the manipulations the sound remains quiet, try hardware limitation test:

  1. Download a file with test frequencies (for example, here).
  2. Play frequencies from 20 Hz to 20 kHz.
  3. If low frequencies (50-100 Hz) are almost inaudible - the problem is in the speakers or amplifier.
  4. If all frequencies are quiet, the sound card or system settings are to blame.
⚠️ Attention: On laptops with Dolby Audio (For example, Lenovo Yoga) frequency test may show distorted results due to built-in audio processing. Disable all effects before testing!

Setting up sound in Windows 10/11: hidden options

Windows hides many useful options behind several layers of menus. Here's what really works to increase volume:

1. Disable audio enhancements

Function Audio Enhancements often lowers the volume in an attempt to “improve” the sound. To disable it:

  1. Right click on the speaker icon in the tray → Open sound options.
  2. In the section Output device select your speakers.
  3. Click Device properties → scroll to Additional device settings.
  4. Uncheck Enable audio enhancements.

2. Increase volume via "Application Volume"

Some programs (for example, Zoom or Discord) independently limit the sound. To fix this:

  1. Go to Settings → System → Sound → Application volume.
  2. Find a program whose sound is quiet and move the slider to the right.
  3. If there is no slider, click Additional options.

3. Windows Registry: Raising Maximum Volume

This method increases the volume limit beyond the standard 100%. Warning: Incorrectly editing the registry can lead to system crashes. Make a backup!

1. Нажмите Win + R → введите regedit → Enter.

2. Перейдите по пути:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render

3. Найдите папку с GUID ваших динамиков (можно определить по имени в правой панели).

4. В этой папке создайте новый параметр DWORD (32 бита) с именем AudioEnhancements и значением 0.

5. Перезагрузите ПК.

💡

If after changes in the registry the sound becomes distorted, return the parameter value to 1 or remove it completely.

macOS: why the MacBook became quieter and how to fix it

Owners MacBook often encounter a quiet sound after updates or due to features Apple Silicon. Here's what to check first:

1. “Sound” settings in System Settings

B macOS Ventura and newer, Apple has hidden some options. To see them:

  1. Open System Settings → Sound → Output.
  2. Click on the three dots () next to your speakers.
  3. Turn on Use as Default Device and turn off Automatic Switching.

2. Reset the System Management Controller (SMC)

This procedure helps if the sound becomes quiet after sleep or updating:

  • 🔌 For MacBook with removable battery:
    1. Turn off your MacBook.
    2. Disconnect the power adapter.
    3. Remove the battery.
    4. Press the power button for 5 seconds.
    5. Put it back together and turn it on.
  • 💻 For MacBook with non-removable battery:
    1. Turn off your MacBook.
    2. Clamp Shift + Control + Option and the power button for 10 seconds.
    3. Release and turn on your MacBook.

3. Terminal commands to reset sound

If the standard methods do not help, try these commands in Terminal:

# Сброс звуковых настроек

sudo killall coreaudiod

# Увеличение ограничения громкости (требует прав администратора)

sudo nvram boot-args="alc-volume=100"

⚠️ Attention: Team nvram changes boot options. After doing this, the sound in the headphones will also become louder - be careful not to damage your hearing!

Linux: setting up sound via ALSA and PulseAudio

On Linux, the quiet sound problem is often related to the drivers or sound server configuration. Here's how to fix it:

1. Check current ALSA settings

Open a terminal and enter:

alsamixer

Please note:

  • Master — main volume.
  • PCM — digital signal volume.
  • Speaker — speaker volume (sometimes disabled by default!).
  • Use the keys ←→ for navigation and ↑↓ to change the level. Click Mto turn on disabled channels.

    2. Increasing the volume limit in PulseAudio

    PulseAudio limits the volume to 100% by default, but this limitation can be bypassed:

    1. Open the configuration file:
      nano ~/.config/pulse/daemon.conf
    2. Find the lines:
      flat-volumes = no
      

      default-fragments = 5

      default-fragment-size-msec = 2

    3. Add to the end of the file:
      enable-remixing = yes
      

      avoid-resampling = no

      flat-volumes = no

    4. Restart PulseAudio:
      pulseaudio -k && pulseaudio --start

    3. Setting a uniform equalizer

    To fine-tune the sound, set PulseEffects or EasyEffects:

    # Для Debian/Ubuntu
    

    sudo apt install pulseeffects

    # Для Arch Linux

    sudo pacman -S pulseeffects

    After installation, open the program and enable the module Limiter - This will help avoid distortion at high volumes.

    Hardware solutions: when software methods don't help

    If you've tried all the settings and the speakers are still quiet, there may be a hardware problem. Here's what to check:

    Symptom Possible reason Solution
    The sound is quiet only in the left/right speaker Loose contact or damaged membrane Disassembling the laptop and checking the speaker cable
    Sound becomes quieter as it warms up Thermal throttling of the sound card Cleaning dust, replacing thermal paste
    Crackling or distortion at high volumes Worn out speakers or amplifier Replacing speakers (for example, with JBL or Harman Kardon)
    Quiet sound in headphones, but normal in speakers Faulty audio jack Cleaning the connector with alcohol or replacing the audio chip

    Replacing speakers yourself

    If you decide to renovate, here's what you'll need:

    • 🔧 Screwdriver PH00 (for most laptops).
    • 🔍 Plastic picks for disassembling the case.
    • 🎵 New speakers (for example, for Lenovo Legion will fit AAC 2W 8Ohm).
    • 📏 Double-sided tape or glue 3M VHB for fixation.

    Step-by-step instructions for HP Pavilion:

    How to replace speakers in HP Pavilion 15

    1. Turn off the laptop and remove the battery (if removable).

    2. Unscrew the 10 screws on the bottom cover (note: 2 screws are shorter than the others - they secure the SSD).

    3. Carefully pry the cover with a plastic pick, starting from the corner near the audio jack.

    4. Disconnect the speaker cable from the motherboard (the connector is usually labeled SPK).

    5. Remove the old speakers and clean the seats from dust.

    6. Install new speakers, connect the cable and reassemble the laptop in reverse order.

    When to contact the service?

    If the sound remains quiet after replacing the speakers, the problem may be:

    • 🔌 Audiochip (For example, Realtek ALC256 often fails after overheating).
    • 🔄 South Bridge motherboard (repair will cost 50-70% of the cost of the laptop).
    • 🔋 Capacitors in the power supply circuit of the sound card (swollen capacitors are visible to the naked eye).
    💡

    Before visiting the service, ask for diagnostics using an oscilloscope - this will help determine exactly which component is faulty.

    External solutions: how to improve sound without repair

    If repair is not an option, but you still want to improve the sound, here are some proven methods:

    1. External speakers and subwoofers

    Even budget speakers Logitech Z120 (about 1,500 ₽) sound 3-4 times louder than the built-in speakers. A subwoofer is suitable for bass Edifier T5.

    2. USB sound cards

    External DACs (Digital to Analog Converters) bypass the built-in sound card. Popular models:

    • 🎧 Creative Sound Blaster Play! 3 - improves sound in games and movies.
    • 🎵 FiiO K3 - for audiophiles (supports 32-bit/384kHz).
    • 💻 Sabrent USB External Stereo Sound Adapter - budget option for 800 ₽.

    3. Equalizer settings

    Programs like Equalizer APO (Windows) or Boom 3D (macOS) allow you to raise individual frequencies. For example, for ASUS ROG These settings are good:

    • 📈 60 Hz: +6 dB (for bass).
    • 📊 250 Hz: +3 dB (for body sound).
    • 📉 8 kHz: -2 dB (removes hiss).

    4. Portable Bluetooth speakers

    Modern speakers seem to JBL Charge 5 or Ultimate Ears Boom 3 Connect in seconds and produce powerful sound. The main thing is to check the sound delay (latency): for films it should be less 100 ms.

    FAQ: answers to frequently asked questions

    Can you damage your speakers if you turn up the volume too much?

    Yes, but the risk depends on the model. Most laptops have overload protection, but cheap devices (eg. Acer Extensa) speakers may wheeze or break at volumes above 80%. If you hear distortion, immediately turn down the volume.

    Why is the sound only quiet in certain applications (for example, Zoom)?

    This is due to the settings of a specific program. B Zoom check:

    1. Settings → Audio → Advanced → disable Suppress background noise.
    2. Make sure your microphone is not enabled in your settings. Automatically adjust microphone volume.

    B Discord similar options are in User Settings → Voice & Video → Advanced.

    How to check if your antivirus is blocking sound?

    Some antiviruses (for example, Kaspersky Internet Security) have a device control module that can restrict access to the audio system. To check:

    1. Temporarily disable your antivirus.
    2. Restart your PC.
    3. If the sound becomes normal, add the audio driver to the antivirus exceptions.

    B Avast this is done in Menu → Settings → General → Exceptions.

    Does reinstalling Windows help with the quiet sound problem?

    In 60% of cases - yes, but only if the problem is software. Reinstalling will reset all sound settings, drivers and conflicting programs. However, if the quiet sound is caused by:

    • Hardware malfunction (for example, a loose cable),
    • BIOS settings,
    • Worn out speakers

    reinstalling won't help. Before doing this, try creating a new user in Windows - if his sound is normal, the problem is in the profile.

    Is there a difference in sound between AMD and Intel laptops?

    Yes, but it is indirect. Laptops on AMD Ryzen (For example, Lenovo Legion 5) are often equipped with more powerful sound chips (for example, Realtek ALC1220 instead of ALC236 in budget models on Intel). However, the main influence is not the processor, but:

    • Speaker quality (in MacBook Pro 6 speakers with power stations are used, and in Acer Swift 3 - 2 low-power),
    • Having a dedicated audio DSP (e.g. Waves MaxxAudio in Dell XPS),
    • Body design (metal body resonates better than plastic).