***
id: f4c73d42-ab4c-4efa-87f7-c3376956529b
title: stop\_denoise
slug: /reference/stop-denoise
description: Stop noise reduction.
max-toc-depth: 3
----------------
Stop noise reduction (which was started with [`denoise`](/docs/swml/reference/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}"
}
}
]
}
}
```