Skip to content

Commit 1496372

Browse files
committed
retire conversation transcription multichannel diarization
1 parent cffa1c4 commit 1496372

14 files changed

+21
-526
lines changed

articles/ai-services/.openpublishing.redirection.ai-services.json

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -465,8 +465,6 @@
465465
"redirect_url": "/azure/ai-services/speech-service/how-to-custom-speech-create-project",
466466
"redirect_document_id": false
467467
},
468-
469-
470468
{
471469
"source_path_from_root": "/articles/ai-services/anomaly-detector/how-to/postman.md",
472470
"redirect_url": "/azure/ai-services/anomaly-detector/overview",
@@ -866,6 +864,21 @@
866864
"source_path_from_root": "/articles/ai-services/ai-services-and-ecosystem.md",
867865
"redirect_url": "/azure/ai-services/what-are-ai-services",
868866
"redirect_document_id": false
867+
},
868+
{
869+
"source_path_from_root": "/articles/ai-services/speech-service/meeting-transcription.md",
870+
"redirect_url": "/azure/ai-services/speech-service/multi-device-conversation",
871+
"redirect_document_id": false
872+
},
873+
{
874+
"source_path_from_root": "/articles/ai-services/speech-service/how-to-use-meeting-transcription.md",
875+
"redirect_url": "/azure/ai-services/speech-service/multi-device-conversation",
876+
"redirect_document_id": false
877+
},
878+
{
879+
"source_path_from_root": "/articles/ai-services/speech-service/how-to-async-meeting-transcription.md",
880+
"redirect_url": "/azure/ai-services/speech-service/multi-device-conversation",
881+
"redirect_document_id": false
869882
}
870883
]
871-
}
884+
}

articles/ai-services/speech-service/how-to-async-meeting-transcription.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

articles/ai-services/speech-service/how-to-use-meeting-transcription.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

articles/ai-services/speech-service/includes/how-to/meeting-transcription/real-time-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ This sample code does the following:
104104
* Creates a `MeetingTranscriber` using the constructor, and subscribes to the necessary events.
105105
* Adds participants to the meeting. The strings `voiceSignatureStringUser1` and `voiceSignatureStringUser2` should come as output from the steps above from the function `GetVoiceSignatureString()`.
106106
* Joins the meeting and begins transcription.
107-
* If you want to differentiate speakers without providing voice samples, enable the `DifferentiateGuestSpeakers` feature as in [Meeting Transcription Overview](../../../meeting-transcription.md).
107+
* If you want to differentiate speakers without providing voice samples, enable the `DifferentiateGuestSpeakers` feature.
108108

109109
> [!NOTE]
110110
> `AudioStreamReader` is a helper class you can get on [GitHub](https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/quickstart/csharp/dotnet/meeting-transcription/helloworld/AudioStreamReader.cs).

articles/ai-services/speech-service/includes/how-to/meeting-transcription/real-time-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This sample code does the following:
7272
* Creates a `MeetingTranscriber` using the constructor.
7373
* Adds participants to the meeting. The strings `voiceSignatureStringUser1` and `voiceSignatureStringUser2` should come as output from the steps above.
7474
* Registers to events and begins transcription.
75-
* If you want to differentiate speakers without providing voice samples, enable `DifferentiateGuestSpeakers` feature as in [Meeting Transcription Overview](../../../meeting-transcription.md).
75+
* If you want to differentiate speakers without providing voice samples, enable `DifferentiateGuestSpeakers` feature.
7676

7777
If speaker identification or differentiate is enabled, then even if you have already received `transcribed` results, the service is still evaluating them by accumulated audio information. If the service finds that any previous result was assigned an incorrect `speakerId`, then a nearly identical `Transcribed` result is sent again, where only the `speakerId` and `UtteranceId` are different. Since the `UtteranceId` format is `{index}_{speakerId}_{Offset}`, when you receive a `transcribed` result, you could use `UtteranceId` to determine if the current `transcribed` result is going to correct a previous one. Your client or UI logic could decide behaviors, like overwriting previous output, or to ignore the latest result.
7878

articles/ai-services/speech-service/includes/how-to/meeting-transcription/real-time-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Here's what the sample does:
7373
* Meeting identifier for creating meeting.
7474
* Adds participants to the meeting. The strings `voiceSignatureStringUser1` and `voiceSignatureStringUser2` should come as output from the previous steps.
7575
* Read the whole wave files at once and stream it to SDK and begins transcription.
76-
* If you want to differentiate speakers without providing voice samples, you enable the `DifferentiateGuestSpeakers` feature as in [Meeting Transcription Overview](../../../meeting-transcription.md).
76+
* If you want to differentiate speakers without providing voice samples, you enable the `DifferentiateGuestSpeakers` feature.
7777

7878
If speaker identification or differentiate is enabled, then even if you received `transcribed` results, the service is still evaluating them by accumulated audio information. If the service finds that any previous result was assigned an incorrect `speakerId`, then a nearly identical `Transcribed` result is sent again, where only the `speakerId` and `UtteranceId` are different. Since the `UtteranceId` format is `{index}_{speakerId}_{Offset}`, when you receive a `transcribed` result, you could use `UtteranceId` to determine if the current `transcribed` result is going to correct a previous one. Your client or UI logic could decide behaviors, like overwriting previous output, or to ignore the latest result.
7979

articles/ai-services/speech-service/includes/how-to/remote-meeting/csharp/examples.md

Lines changed: 0 additions & 141 deletions
This file was deleted.

0 commit comments

Comments
 (0)