Skip to content

Releases: grisov/Unmute

v1.5.8

09 Mar 20:55
Compare
Choose a tag to compare

Features:

  • updated module psutil;
  • updated addon template;
  • added nesesary information to the addon release template.

Compatible with NVDA 2013

19 Apr 18:27
Compare
Choose a tag to compare

Version 1.5.7

  • the add-on has been tested for compatibility with NVDA 2023.1.

NVDA Unmute is adapted for NVDA 2022.1

21 May 19:10
Compare
Choose a tag to compare

NVDA Unmute

Version 1.5.6

  • the add-on has been tested for compatibility with NVDA 2022.1;
  • updated third-party module psutil;
  • the add-on is adapted to support Python versions 3.7 and 3.8;
  • MyPy type annotations added to the add-on source code;
  • added "Switch to the default output audio device" feature;
  • the add-on parameters are always stored in the base configuration profile;
  • added Spanish and Galician translations (thanks to Ivan Novegil Cancelas and Jose Manuel);
  • updated translation into Vietnamese (thanks to Dang Manh Cuong).

The discussion is here.

Unmute Windows sound system when NVDA starts

08 Mar 17:49
Compare
Choose a tag to compare

NVDA Unmute

  • Author: Oleksandr Gryshchenko
  • NVDA compatibility: 2019.3 and beyond

This add-on checks the status of the Windows audio system when NVDA starts. And, if it turns out that the sound is muted - the add-on forcibly turns it on.
At the same time, the volume level is checked separately for the NVDA process.
The add-on also checks the status of the speech synthesizer. If there are problems with its initialization, attempts are made to start the synthesizer, which is specified in the NVDA settings.
There is an additional opportunity to check on which audio device the NVDA sound is output. And, if this device differs from the default device, the output automatically switches to the audio device installed in the system as the main one.

Note: If the add-on startup sound always plays even if the NVDA volume is online. That is, the add-on switches the output to the main audio device each time you start NVDA.
This occurs when the audio output device is in the NVDA settings is differ from the default output device or "Microsoft Sound Mapper".
This can be easily solved in one of the following ways:

  1. After restarting NVDA, just save the current configuration using NVDA+Ctrl+C. The default audio device will be saved in the NVDA settings and switching will not occur each time when NVDA starts.
  2. If you don't want to change the NVDA configuration - just disable the function of switching audio devices in the Unmute settings panel.

Add-on settings dialog

To open the add-on settings panel, follow these steps:

  • Press NVDA+N to open NVDA menu.
  • Then go to "Preferences" -> "Settings..." and in the categories list find and open "Unmute Windows Audio".
    That's it, you can now use the Tab key to move between add-on settings.

The following options are available in the add-on settings dialog:

  1. The first slider in the add-on settings dialog allows you to specify the volume level of Windows, which will be set when you start NVDA if the sound was previously muted or was too low.

  2. The minimum Windows volume level at which the volume up procedure will be applied. This slider allows you to adjust the sensitivity level of the add-on.
    If the volume level drops to less than the value specified here, the volume will be increased the next time you start NVDA.
    Otherwise, if the volume level remains higher than the value specified here, then when you restart NVDA, its level will not change.
    And, of course, if the sound was previously turned off, when restarts add-on will turn it on anyway.

  3. The following check box allows to enable re-initialization of the voice synthesizer driver.
    This procedure will only start if it is detected at NVDA startup that the voice synthesizer driver has not been initialized.

  4. In this field you can specify the number of attempts to re-initialize the voice synthesizer driver. Attempts are performed cyclically with an interval of 1 second. A value of 0 means that attempts will be performed indefinitely until the procedure is successfully completed.

  5. The "Switch to the default output audio device" option allows to check at startup the audio device on which NVDA sound is output. And, if this device differs from the default device, the output automatically switches to the audio device installed in the system as the main one.

  6. The next checkbox turns on or off playing the startup sound when the operation is successful.

Third Party components

The add-on uses the following third-party components:

  • For interaction with the Windows Core Audio API - PyCaw module that is distributed under the MIT license.
  • For getting the information about running processes and using the PyCaw component - psutil module that is distributed under BSD-3 license.

Change log

Version 1.5.5

  • the add-on has been tested for compatibility with NVDA 2021.1;
  • updated third-party module psutil;
  • the add-on is adapted to support Python versions 3.7 and 3.8;
  • MyPy type annotations added to the add-on source code;
  • added "Switch to the default output audio device" feature;
  • the add-on parameters are always stored in the base configuration profile.

Version 1.4

  • added a method to increase the startup volume separately for the NVDA process;
  • changed the sound notification of a successful operation (thanks to Manolo);
  • all manual volume control functions have been transferred to the NVDA Volume Adjustment add-on.