> For the complete documentation index, see [llms.txt](https://docs.plumvoice.com/dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.plumvoice.com/dev/voicexml/properties/normalizeaudio.md).

# normalizeaudio

## normalizeaudio <a href="#normalizeaudio" id="normalizeaudio"></a>

**Default Value:** true

The normalizeaudio property, when enabled, attempts to normalize a recording or utterance by boosting the gain of the audio to bring the average or peak amplitude to a target level (norm).

### Example

```markup
<?xml version="1.0"?>
<vxml version="2.0">
  <form>
    <!-- TURN OFF AUDIO NORMALIZATION -->
    <property name="normalizeaudio" value="false"/>
    <record name="response">
      <prompt>
        Say something.
      </prompt>
      <filled>
        <prompt>
          You recorded: <value expr="response"/>
        </prompt>
	<exit/>
      </filled>
    </record>
  </form>
</vxml>
```

### Explanation

From this example, “normalizeaudio” is set to false, which disables normalization. You should notice that the recording played back should be significantly quieter than regular, noramlized audio. The same applies if you were to save the recording to an audio file. A noramlized audio file will appear to be much louder than an audio file that has not been normalized.

### Notes

None


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.plumvoice.com/dev/voicexml/properties/normalizeaudio.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
