> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# stop_denoise

> Stop noise reduction.

Stop noise reduction (which was started with [`denoise`](/docs/swml/reference/calling/denoise)).

An empty object that accepts no parameters.

## **Variables**

Set by the method:

* **denoise\_result:** (out) `off`

## **Examples**

### Stop denoise

```yaml
version: 1.0.0
sections:
  main:
    - stop_denoise: {}
    - play:
        url: 'say: Denoising ${denoise_result}'
```

```json
{
  "version": "1.0.0",
  "sections": {
    "main": [
      {
        "stop_denoise": {}
      },
      {
        "play": {
          "url": "say: Denoising ${denoise_result}"
        }
      }
    ]
  }
}
```