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

# Playing Audio Files

> Play audio files from URLs on smart glasses

Play audio files from URLs using `session.audio.playAudio()`. Stream sound effects, music, or pre-recorded messages to the user's device.

## Basic Usage

```typescript theme={null}
const result = await session.audio.playAudio({
  audioUrl: 'https://example.com/sound.mp3'
});

if (result.success) {
  session.logger.info('Audio played successfully');
}
```

## How It Works

1. Provide a URL to an audio file
2. MentraOS downloads and streams the file
3. Audio plays through glasses speakers or phone
4. Promise resolves when playback completes

## Supported Formats

* **MP3** - Most common, recommended
* **WAV** - Uncompressed, larger files
* **OGG** - Open format, good compression
* **M4A** - Apple format

<Info>
  MP3 format is recommended for best compatibility and file size.
</Info>

## Audio Options

### Volume Control

```typescript theme={null}
await session.audio.playAudio({
  audioUrl: 'https://example.com/notification.mp3',
  volume: 0.5  // 0.0 - 1.0
});
```

### Stop Other Audio

```typescript theme={null}
await session.audio.playAudio({
  audioUrl: 'https://example.com/alert.mp3',
  stopOtherAudio: true  // Default: true
});
```

## Options Reference

| Option           | Type    | Default  | Description                  |
| ---------------- | ------- | -------- | ---------------------------- |
| `audioUrl`       | string  | required | URL to audio file            |
| `volume`         | number  | 1.0      | Volume level (0.0-1.0)       |
| `stopOtherAudio` | boolean | true     | Stop currently playing audio |

## Common Patterns

### Sound Effects

```typescript theme={null}
async function playClickSound(session: AppSession) {
  await session.audio.playAudio({
    audioUrl: 'https://cdn.example.com/sounds/click.mp3',
    volume: 0.8
  });
}

// Use on button press
session.events.onButtonPress(async (data) => {
  await playClickSound(session);
  // Handle button action
});
```

### Notification Sounds

```typescript theme={null}
const SOUNDS = {
  success: 'https://cdn.example.com/success.mp3',
  error: 'https://cdn.example.com/error.mp3',
  warning: 'https://cdn.example.com/warning.mp3'
};

async function notify(session: AppSession, type: keyof typeof SOUNDS) {
  await session.audio.playAudio({
    audioUrl: SOUNDS[type],
    volume: 0.7
  });
}

// Usage
await notify(session, 'success');
```

### Background Music

```typescript theme={null}
protected async onSession(session: AppSession, sessionId: string, userId: string) {
  // Play ambient background music
  await session.audio.playAudio({
    audioUrl: 'https://cdn.example.com/ambient.mp3',
    volume: 0.3
  });
}
```

### Error Handling

```typescript theme={null}
async function playAudioSafe(session: AppSession, url: string) {
  try {
    const result = await session.audio.playAudio({
      audioUrl: url
    });

    if (!result.success) {
      session.logger.error('Audio failed:', result.error);
      // Fallback to TTS
      await session.audio.speak('Audio notification');
    }
  } catch (error) {
    session.logger.error('Audio error:', error);
  }
}
```

### Sequential Audio

```typescript theme={null}
async function playSequence(session: AppSession) {
  // Play sounds in sequence
  await session.audio.playAudio({
    audioUrl: 'https://cdn.example.com/beep1.mp3'
  });

  await session.audio.playAudio({
    audioUrl: 'https://cdn.example.com/beep2.mp3'
  });

  await session.audio.playAudio({
    audioUrl: 'https://cdn.example.com/beep3.mp3'
  });
}
```

### Conditional Audio

```typescript theme={null}
session.events.onTranscription(async (data) => {
  if (!data.isFinal) return;

  const text = data.text.toLowerCase();

  if (text.includes('success')) {
    await session.audio.playAudio({
      audioUrl: 'https://cdn.example.com/success.mp3'
    });
  } else if (text.includes('error')) {
    await session.audio.playAudio({
      audioUrl: 'https://cdn.example.com/error.mp3'
    });
  }
});
```

## Stopping Audio

**Stop all currently playing audio:**

```typescript theme={null}
session.audio.stopAudio();
```

**Stop before playing new audio:**

```typescript theme={null}
// Automatically stops other audio (default behavior)
await session.audio.playAudio({
  audioUrl: 'https://example.com/new-sound.mp3',
  stopOtherAudio: true
});

// Allow overlap
await session.audio.playAudio({
  audioUrl: 'https://example.com/background.mp3',
  stopOtherAudio: false
});
```

## Best Practices

<AccordionGroup>
  <Accordion title="Use CDN for Audio Files" icon="cloud">
    Host audio on a CDN for fast, reliable access:

    ```typescript theme={null}
    // ✅ Good - CDN URL
    audioUrl: 'https://cdn.example.com/sounds/click.mp3'

    // ❌ Avoid - slow origin server
    audioUrl: 'https://slow-server.com/large-file.wav'
    ```
  </Accordion>

  <Accordion title="Keep Files Small" icon="compress">
    Smaller files = faster loading = better UX:

    ```typescript theme={null}
    // ✅ Good - short sound effect
    // click.mp3 - 50KB, 0.5 seconds

    // ❌ Avoid - huge file for simple sound
    // click.wav - 5MB, 0.5 seconds
    ```
  </Accordion>

  <Accordion title="Handle Failures Gracefully" icon="circle-exclamation">
    Always check the result:

    ```typescript theme={null}
    const result = await session.audio.playAudio({ audioUrl: url });

    if (!result.success) {
      // Fallback: TTS or visual feedback
      await session.audio.speak('Notification');
      // or
      session.layouts.showTextWall('🔔 Alert');
    }
    ```
  </Accordion>

  <Accordion title="Provide Visual Feedback" icon="eye">
    Combine audio with visual cues:

    ```typescript theme={null}
    session.layouts.showTextWall('✓ Success');
    await session.audio.playAudio({
      audioUrl: 'https://cdn.example.com/success.mp3'
    });
    ```
  </Accordion>
</AccordionGroup>

## Audio Routing

**Audio automatically routes to the best available output:**

1. **Glasses with speakers** → Plays on glasses
2. **Glasses without speakers** → Plays on phone
3. **Phone Bluetooth** → Respects phone audio routing

<Info>
  Users can connect glasses to their phone via Bluetooth like regular headphones to route all audio through glasses speakers.
</Info>

## Performance Tips

<AccordionGroup>
  <Accordion title="Pre-load Common Sounds" icon="rocket">
    Cache frequently used audio:

    ```typescript theme={null}
    // Store audio URLs as constants
    const AUDIO_CACHE = {
      click: 'https://cdn.example.com/click.mp3',
      success: 'https://cdn.example.com/success.mp3',
      error: 'https://cdn.example.com/error.mp3'
    };

    // Reuse throughout your app
    await session.audio.playAudio({ audioUrl: AUDIO_CACHE.click });
    ```
  </Accordion>

  <Accordion title="Optimize File Size" icon="gauge">
    Use appropriate bitrate and format:

    * **Sound effects**: 128kbps MP3
    * **Voice**: 64-96kbps MP3
    * **Music**: 192-256kbps MP3
  </Accordion>

  <Accordion title="Use Short Durations" icon="clock">
    Keep audio brief for better UX:

    ```typescript theme={null}
    // ✅ Good - 0.2-1 second for UI sounds
    // ✅ Good - 2-5 seconds for notifications
    // ❌ Avoid - 30+ seconds blocks interaction
    ```
  </Accordion>
</AccordionGroup>

## Return Value

```typescript theme={null}
interface AudioPlayResult {
  success: boolean;
  error?: string;
  duration?: number;  // Audio duration in seconds
}
```

**Example:**

```typescript theme={null}
const result = await session.audio.playAudio({
  audioUrl: 'https://example.com/sound.mp3'
});

console.log('Success:', result.success);
console.log('Duration:', result.duration);

if (!result.success) {
  console.log('Error:', result.error);
}
```

## Troubleshooting

<AccordionGroup>
  <Accordion title="Audio Not Playing" icon="volume-xmark">
    **Check URL accessibility:**

    ```typescript theme={null}
    // Verify URL is publicly accessible
    // Test in browser first

    // Ensure HTTPS (not HTTP)
    audioUrl: 'https://example.com/sound.mp3'  // ✅
    audioUrl: 'http://example.com/sound.mp3'   // ❌ May fail
    ```
  </Accordion>

  <Accordion title="Playback Errors" icon="triangle-exclamation">
    **Common issues:**

    * **CORS errors**: Ensure CDN allows cross-origin requests
    * **File format**: Use MP3 for best compatibility
    * **File size**: Large files may timeout (60s limit)
    * **URL access**: Must be publicly accessible
  </Accordion>

  <Accordion title="Volume Too Low" icon="volume-low">
    **Adjust volume:**

    ```typescript theme={null}
    await session.audio.playAudio({
      audioUrl: url,
      volume: 1.0  // Maximum volume
    });
    ```
  </Accordion>
</AccordionGroup>

## Example: Sound Library

```typescript theme={null}
class SoundLibrary {
  private baseUrl = 'https://cdn.example.com/sounds';

  private sounds = {
    click: 'click.mp3',
    success: 'success.mp3',
    error: 'error.mp3',
    notification: 'notification.mp3',
    confirm: 'confirm.mp3'
  };

  async play(session: AppSession, sound: keyof typeof this.sounds, volume = 0.8) {
    const url = `${this.baseUrl}/${this.sounds[sound]}`;

    try {
      const result = await session.audio.playAudio({
        audioUrl: url,
        volume
      });

      if (!result.success) {
        session.logger.warn(`Sound ${sound} failed:`, result.error);
      }

      return result.success;
    } catch (error) {
      session.logger.error(`Error playing ${sound}:`, error);
      return false;
    }
  }
}

// Usage
const sounds = new SoundLibrary();

session.events.onButtonPress(async (data) => {
  await sounds.play(session, 'click');
  // Handle button action
});
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Text-to-Speech" icon="comment" href="/app-devs/core-concepts/speakers/text-to-speech">
    Generate speech from text
  </Card>

  <Card title="Speech-to-Text" icon="microphone" href="/app-devs/core-concepts/microphone/speech-to-text">
    Capture user voice input
  </Card>

  <Card title="Audio Manager" icon="book" href="/app-devs/reference/managers/audio-manager">
    Complete audio API reference
  </Card>

  <Card title="Device Control" icon="microchip" href="/app-devs/core-concepts/app-session/device-control">
    All device control features
  </Card>
</CardGroup>
