# \<desc>

## \<desc> <a href="#desc" id="desc"></a>

Provides a description of a non-speech audio source in `<audio>`.

### Attributes

None

### Notes

None

### Example

```markup
<?xml version="1.0"?>
<vxml version="2.0">
  <form>
    <block>
      <prompt>
        I'm going to play an audio file.
      </prompt>
      <audio src="http://nonexistent.domain.com/test.wav">
        Oops, the audio file could not be retrieved!
        <desc>
        If the wave file at the location specified by the "src" attribute can not be retrieved, 
        the text within the "audio" tag will be read by the TTS engine.
        </desc>
      </audio>
    </block>
  </form>
</vxml>
```

The output of the above script would be:

> Computer: I'm going to play an audio file.\
> Computer: (plays audio file if available)

### Child Tags

None

### Parent Tags

[\<audio>](/dev/voicexml/tags/audio-tag.md)


---

# Agent Instructions: 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/tags/desc-tag.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.
