Share via


ConversationTranscriber Constructors

Definition

Overloads

ConversationTranscriber(SpeechConfig)

Creates a new instance of Conversation Transcriber.

ConversationTranscriber(SpeechConfig, AudioConfig)

Creates a new instance of ConversationTranscriber.

ConversationTranscriber(SpeechConfig, AutoDetectSourceLanguageConfig)

Creates a new instance of ConversationTranscriber that determines the source language from a list of options.

ConversationTranscriber(SpeechConfig, SourceLanguageConfig)

Creates a new instance of ConversationTranscriber.

ConversationTranscriber(SpeechConfig, AutoDetectSourceLanguageConfig, AudioConfig)

Creates a new instance of ConversationTranscriber.

ConversationTranscriber(SpeechConfig, SourceLanguageConfig, AudioConfig)

Creates a new instance of ConversationTranscriber.

ConversationTranscriber(SpeechConfig)

Creates a new instance of Conversation Transcriber.

public ConversationTranscriber (Microsoft.CognitiveServices.Speech.SpeechConfig speechConfig);
new Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber : Microsoft.CognitiveServices.Speech.SpeechConfig -> Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber
Public Sub New (speechConfig As SpeechConfig)

Parameters

speechConfig
SpeechConfig

Applies to

ConversationTranscriber(SpeechConfig, AudioConfig)

Creates a new instance of ConversationTranscriber.

public ConversationTranscriber (Microsoft.CognitiveServices.Speech.SpeechConfig speechConfig, Microsoft.CognitiveServices.Speech.Audio.AudioConfig audioConfig);
new Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber : Microsoft.CognitiveServices.Speech.SpeechConfig * Microsoft.CognitiveServices.Speech.Audio.AudioConfig -> Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber
Public Sub New (speechConfig As SpeechConfig, audioConfig As AudioConfig)

Parameters

speechConfig
SpeechConfig

Speech configuration

audioConfig
AudioConfig

Audio configuration

Applies to

ConversationTranscriber(SpeechConfig, AutoDetectSourceLanguageConfig)

Creates a new instance of ConversationTranscriber that determines the source language from a list of options.

public ConversationTranscriber (Microsoft.CognitiveServices.Speech.SpeechConfig speechConfig, Microsoft.CognitiveServices.Speech.AutoDetectSourceLanguageConfig autoDetectSourceLanguageConfig);
new Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber : Microsoft.CognitiveServices.Speech.SpeechConfig * Microsoft.CognitiveServices.Speech.AutoDetectSourceLanguageConfig -> Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber
Public Sub New (speechConfig As SpeechConfig, autoDetectSourceLanguageConfig As AutoDetectSourceLanguageConfig)

Parameters

speechConfig
SpeechConfig

Speech configuration

autoDetectSourceLanguageConfig
AutoDetectSourceLanguageConfig

Configuration that specifies the language(s) to look for in the source speech to recognize

Remarks

See also: Automatic language detection for speech to text

Applies to

ConversationTranscriber(SpeechConfig, SourceLanguageConfig)

Creates a new instance of ConversationTranscriber.

public ConversationTranscriber (Microsoft.CognitiveServices.Speech.SpeechConfig speechConfig, Microsoft.CognitiveServices.Speech.SourceLanguageConfig sourceLanguageConfig);
new Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber : Microsoft.CognitiveServices.Speech.SpeechConfig * Microsoft.CognitiveServices.Speech.SourceLanguageConfig -> Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber
Public Sub New (speechConfig As SpeechConfig, sourceLanguageConfig As SourceLanguageConfig)

Parameters

speechConfig
SpeechConfig

Speech configuration

sourceLanguageConfig
SourceLanguageConfig

The source language config

Applies to

ConversationTranscriber(SpeechConfig, AutoDetectSourceLanguageConfig, AudioConfig)

Creates a new instance of ConversationTranscriber.

public ConversationTranscriber (Microsoft.CognitiveServices.Speech.SpeechConfig speechConfig, Microsoft.CognitiveServices.Speech.AutoDetectSourceLanguageConfig autoDetectSourceLanguageConfig, Microsoft.CognitiveServices.Speech.Audio.AudioConfig audioConfig);
new Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber : Microsoft.CognitiveServices.Speech.SpeechConfig * Microsoft.CognitiveServices.Speech.AutoDetectSourceLanguageConfig * Microsoft.CognitiveServices.Speech.Audio.AudioConfig -> Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber
Public Sub New (speechConfig As SpeechConfig, autoDetectSourceLanguageConfig As AutoDetectSourceLanguageConfig, audioConfig As AudioConfig)

Parameters

speechConfig
SpeechConfig

Speech configuration

autoDetectSourceLanguageConfig
AutoDetectSourceLanguageConfig

An instance that specifies possible source languages in the speech.

audioConfig
AudioConfig

Audio configuration

Applies to

ConversationTranscriber(SpeechConfig, SourceLanguageConfig, AudioConfig)

Creates a new instance of ConversationTranscriber.

public ConversationTranscriber (Microsoft.CognitiveServices.Speech.SpeechConfig speechConfig, Microsoft.CognitiveServices.Speech.SourceLanguageConfig sourceLanguageConfig, Microsoft.CognitiveServices.Speech.Audio.AudioConfig audioConfig);
new Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber : Microsoft.CognitiveServices.Speech.SpeechConfig * Microsoft.CognitiveServices.Speech.SourceLanguageConfig * Microsoft.CognitiveServices.Speech.Audio.AudioConfig -> Microsoft.CognitiveServices.Speech.Transcription.ConversationTranscriber
Public Sub New (speechConfig As SpeechConfig, sourceLanguageConfig As SourceLanguageConfig, audioConfig As AudioConfig)

Parameters

speechConfig
SpeechConfig

Speech configuration

sourceLanguageConfig
SourceLanguageConfig

Language of the source speech, in BCP-47 format.

audioConfig
AudioConfig

Audio configuration

Applies to