Denoise

View as Markdown

The <Denoise> verb enables or disables noise reduction for call audio inbound to SignalWire. It reduces noise on calls before dialing into a conference or forwarding to another number.

Verb attributes

This verb does not accept attributes.

Nesting

No other verbs can be nested within <Denoise>.

Examples

Enable noise reduction

This example illustrates enabling noise reduction on an inbound phone call prior to forwarding the call.

1<?xml version="1.0" encoding="UTF-8"?>
2<Response>
3 <Denoise>on</Denoise>
4 <Dial><Sip>sip:user@example.com;transport=udp</Sip></Dial>
5</Response>

Disable noise reduction

This example illustrates disabling noise reduction prior to recording and transcribing.

1<?xml version="1.0" encoding="UTF-8"?>
2<Response>
3 <Denoise>off</Denoise>
4 <Record timeout="5" transcribe="true"/>
5</Response>