Skip to content

Commit 7e9188f

Browse files
authored
Update real-time-transcription-tutorial.md
acrolinx fixes
1 parent 5e17b1e commit 7e9188f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/communication-services/how-tos/call-automation/real-time-transcription-tutorial.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ This guide helps you better understand the different ways you can use Azure Comm
2626
- Create a new web service application using the [Call Automation SDK](../../quickstarts/call-automation/quickstart-make-an-outbound-call.md).
2727

2828
## Setup a WebSocket Server
29-
Azure Communication Services requires your server application to setup a WebSocket server to stream transcription in real-time. WebSocket is a standardized protocol that provides a full-duplex communication channel over a single TCP connection. You can optionally use Azure services Azure WebApps that allows you to create an application to receive transcripts over a websocket connection. Follow this [quickstart](https://azure.microsoft.com/blog/introduction-to-websockets-on-windows-azure-web-sites/).
29+
Azure Communication Services requires your server application to set up a WebSocket server to stream transcription in real-time. WebSocket is a standardized protocol that provides a full-duplex communication channel over a single TCP connection. You can optionally use Azure services Azure WebApps that allows you to create an application to receive transcripts over a websocket connection. Follow this [quickstart](https://azure.microsoft.com/blog/introduction-to-websockets-on-windows-azure-web-sites/).
3030

3131
## Establish a call
32-
In this quickstart, we assume that you're already familiar with starting calls. If you need to learn more about starting and establishing calls, you can follow our [quickstart](../../quickstarts/call-automation/quickstart-make-an-outbound-call.md). For the purposes of this quickstart, we are going through the process of starting transcription for both incoming calls and outbound calls.
32+
In this quickstart, we assume that you're already familiar with starting calls. If you need to learn more about starting and establishing calls, you can follow our [quickstart](../../quickstarts/call-automation/quickstart-make-an-outbound-call.md). For the purposes of this quickstart, we're going through the process of starting transcription for both incoming calls and outbound calls.
3333

3434
When working with real-time transcription, you have a couple of options on when and how to start transcription:
3535

3636
**Option 1 -** Starting at time of answering or creating a call
3737

3838
**Option 2 -** Starting transcription during an ongoing call
3939

40-
In this tutorial we are demonstrating option 2, starting transcription during an ongoing call. By default the 'startTranscription' is set to false at time of answering or creating a call.
40+
In this tutorial, we're demonstrating option 2, starting transcription during an ongoing call. By default the 'startTranscription' is set to false at time of answering or creating a call.
4141

4242
::: zone pivot="programming-language-csharp"
4343
[!INCLUDE [Real-time transcription with .NET](./includes/real-time-transcription-csharp.md)]
@@ -48,7 +48,7 @@ In this tutorial we are demonstrating option 2, starting transcription during an
4848
::: zone-end
4949

5050
::: zone pivot="programming-language-javascript"
51-
[!INCLUDE [Real-time transcription with javaScript](./includes/real-time-transcription-js.md)]
51+
[!INCLUDE [Real-time transcription with JavaScript](./includes/real-time-transcription-js.md)]
5252
::: zone-end
5353

5454
::: zone pivot="programming-language-python"
@@ -62,7 +62,7 @@ In this tutorial we are demonstrating option 2, starting transcription during an
6262
| TranscriptionStarted | 200 | 0 | Action completed successfully. |
6363
| TranscriptionStopped | 200 | 0 | Action completed successfully. |
6464
| TranscriptionUpdated | 200 | 0 | Action completed successfully. |
65-
| TranscriptionFailed | 500 | 8578 | Action failed, not able to establish WebsSocket connection. |
65+
| TranscriptionFailed | 500 | 8578 | Action failed, not able to establish WebSocket connection. |
6666
| TranscriptionFailed | 400 | 8581 | Action failed, StreamUrl isn't valid. |
6767
| TranscriptionFailed | 500 | 8580 | Action failed, transcription service was shut down. |
6868
| TranscriptionFailed | 500 | 8579 | Action failed, transcription was canceled. |

0 commit comments

Comments
 (0)