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

# SE - Voice Isolation

> Real-time voice isolation for any acoustic environment.

The Voice Isolation SE (`VI_G_SE`) is a best-in-class model for denoising audio and clarifying speech. It extracts voices from any noisy environment in real time, removing unwanted background noise and background speech while preserving natural voice quality. With low latency and minimal computing cost, SE delivers clean speech waveforms suitable for human communication.

## Hear the Difference

Voice Isolation SE preserves only the primary speaker by removing background voices, noise, and chatter.

<div style={{ display:"flex", gap:"0", width:"100%" }}>
  <div style={{ flex:1, paddingRight:"16px", borderRight:"1px solid #E3E3E3" }}>
    **Before** · Primary speaker + background noise

    <video controls={true} src="https://d3uqx5l8cluzaz.cloudfront.net/Source_Single_Restaurant.wav" style={{ width:"100%",height:"54px" }} />
  </div>

  <div style={{ flex:1, paddingLeft:"16px" }}>
    **After** · Primary speaker only

    <video controls={true} src="https://d3uqx5l8cluzaz.cloudfront.net/Enhanced_Single_Restaurant.wav" style={{ width:"100%",height:"54px" }} />
  </div>
</div>

## Key Features

<CardGroup cols={3}>
  <Card title="Removes background noise" icon="volume-slash">
    Environmental noise, background speech, HVAC, keyboard, traffic — all removed without affecting the primary speaker.
  </Card>

  <Card title="Preserves voice quality" icon="microphone">
    Natural voice quality preservation. Optimized for single-speaker scenarios.
  </Card>

  <Card title="Real-time, low cost" icon="bolt">
    Minimal latency across any acoustic environment. Low compute cost for high concurrency.
  </Card>
</CardGroup>

## Specifications

**Model ID:** `VI_G_NC3.0`<br />**Category:** Speech Enhancement<br />**Type:** Human ↔ Human

<CardGroup cols={3}>
  <Card title="~40ms" icon="bolt">
    Streaming latency
  </Card>

  <Card title="24kHz" icon="waveform-lines">
    Max sample rate
  </Card>

  <Card title="~1m" icon="signal">
    Primary speaker range
  </Card>
</CardGroup>

## Use Cases

<CardGroup cols={2}>
  <Card title="Contact Centers" icon="headset">
    Agent-customer calls. Clear communication in noisy call centers.
  </Card>

  <Card title="Remote Work" icon="laptop">
    Video conferences. Professional audio from home offices.
  </Card>

  <Card title="Gaming" icon="gamepad">
    Voice chat. Crystal-clear team communication.
  </Card>

  <Card title="Telemedicine" icon="stethoscope">
    Doctor-patient calls. Private, distraction-free consultations.
  </Card>
</CardGroup>

## Code Example

Create an audio processor with the Voice Isolation SE model:

```python theme={null}
audio_params = sanas_remote_sdk.AudioParams()
audio_params.modelName = "VI_G_SE"
audio_params.sampleRate = 16000  # Or up to 24kHz

processor, create_result = sdk.CreateAudioProcessor(audio_params)
```

For full setup and initialization, see the [Quick Start →](/Docs/Getting-Started/Quick-Start)

## Next Steps

<CardGroup cols={3}>
  <Card title="Quick Start" icon="rocket" href="/Docs/Getting-Started/Quick-Start">
    Get up and running with Sanas SDK in under 5 minutes.
  </Card>

  <Card title="API Reference" icon="book" href="/API-Reference/Overview">
    Full SDK documentation for classes, enums, and callbacks.
  </Card>

  <Card title="Processing Multiple Streams" icon="layer-group" href="/Docs/Tutorials/Processing-Multiple-Streams">
    Handle multiple concurrent audio streams.
  </Card>
</CardGroup>
