Skip to content

Commit b2ea6e8

Browse files
Merge pull request #289196 from alvin-l-han/patch-1
Add audio streaming and real time transcription to mid call media actions
2 parents 4348b4f + 7799586 commit b2ea6e8

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

articles/communication-services/concepts/call-automation/call-automation.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ The following features are currently available in the Azure Communication Servic
5050
| | Stop continuous DTMF recognition | ✔️ | ✔️ | ✔️ | ✔️ |
5151
| | Send DTMF | ✔️ | ✔️ | ✔️ | ✔️ |
5252
| | Mute participant | ✔️ | ✔️ | ✔️ | ✔️ |
53+
| | Start/Stop audio streaming (public preview) | ✔️ | ✔️ | ✔️ | ✔️ |
54+
| | Start/Stop real-time transcription (public preview)| ✔️ | ✔️ | ✔️ | ✔️ |
5355
| | Remove one or more endpoints from an existing call| ✔️ | ✔️ | ✔️ | ✔️ |
5456
| | Blind Transfer a 1:1 call to another endpoint | ✔️ | ✔️ | ✔️ | ✔️ |
5557
| | Blind Transfer a participant from group call to another endpoint| ✔️ | ✔️ | ✔️ | ✔️ |
@@ -114,6 +116,11 @@ Your application can perform these actions on calls that are answered or placed
114116

115117
**Cancel media operations** – Based on business logic your application might need to cancel ongoing and queued media operations. Depending on the media operation canceled and the ones in queue, your application might receive a webhook event indicating that the action was canceled.
116118

119+
**Start/Stop audio streaming (public preview)** - Audio streaming allows you to subscribe to real-time audio streams from an ongoing call. For more detailed guidance on how to get started with audio streaming and information about audio streaming callback events, see our [concept](audio-streaming-concept.md) and our [quickstart](../../how-tos/call-automation/audio-streaming-quickstart.md).
120+
121+
**Start/Stop real-time transcription (public preview)** - Real-time transcription allows you to access live transcriptions for the audio of an ongoing call. For more detailed guidance on how to get started with real-time transcription and information about real-time transcription callback events, see our [concept](real-time-transcription.md) and our [quickstart](../../how-tos/call-automation/real-time-transcription-tutorial.md).
122+
123+
117124
### Query scenarios
118125

119126
**List participants** – Returns a list of all the participants in a call. Recording and transcription bots are omitted from this list.

articles/communication-services/how-tos/call-automation/control-mid-call-media-actions.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,3 +487,9 @@ call_connection_client.unhold(target_participant=PhoneNumberIdentifier(TARGET_PH
487487
'''
488488
```
489489
-----
490+
491+
### Audio streaming (public preview)
492+
Audio streaming allows you to subscribe to real-time audio streams from an ongoing call. For more detailed guidance on how to get started with audio streaming and information about audio streaming callback events, see [this page](audio-streaming-quickstart.md).
493+
494+
### Real-time transcription (public preview)
495+
Real-time transcription allows you to access live transcriptions for the audio of an ongoing call. For more detailed guidance on how to get started with real-time transcription and information about real-time transcription callback events, see [this page](real-time-transcription-tutorial.md).

0 commit comments

Comments
 (0)