> ## Documentation Index
> Fetch the complete documentation index at: https://docs.evidence.studio/llms.txt
> Use this file to discover all available pages before exploring further.

# Audio

> Embed an audio player for mp3, wav, and other audio formats

```liquid theme={null}
{% audio url="https://files.example.com/podcast/episode-01.mp3" /%}
```

## Examples

### Basic Audio Player

```liquid theme={null}
{% audio url="https://files.example.com/podcast/episode-01.mp3" /%}
```

### WAV File with Title

```liquid theme={null}
{% audio url="https://files.example.com/recordings/call.wav" type="wav" title="Call Recording" /%}
```

## Attributes

<ResponseField name="url" type="string" required>
  URL of the audio file (may include query parameters such as SAS tokens)
</ResponseField>

<ResponseField name="type" type="string" default="mpeg">
  MIME subtype of the audio file (e.g. mpeg, wav, ogg, mp4). Mapped to audio/\[type] for the browser.
</ResponseField>

<ResponseField name="title" type="string">
  Accessible label for the audio player
</ResponseField>
