mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-12 17:13:39 +00:00
24 lines
795 B
Plaintext
24 lines
795 B
Plaintext
---
|
|
title: Create SIP Audio Response
|
|
sidebar:
|
|
label: Create
|
|
order: 1
|
|
---
|
|
import SchemaInfo from '../../../../../../components/SchemaInfo.astro';
|
|
|
|
This processor will create a SIP response message with an audio file as the payload. If this message is output to a SIP module using the [module.output](/processors/module/output) processor, then the SIP module will send the response to the caller and play the audio file included in the response.
|
|
|
|
<SchemaInfo type="processor" id="sip.response.audio.create"/>
|
|
|
|
### Example
|
|
|
|
This example will create a SIP response that will wait 1 second then play `response.wav` then wait another second before completing the response.
|
|
|
|
```yaml
|
|
- type: sip.response.audio.create
|
|
params:
|
|
preWait: 1000
|
|
audioFile: "response.wav"
|
|
postWait: 1000
|
|
```
|