TranscriptionOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| TranscriptionOptions() |
Initializes a new instance of TranscriptionOptions. |
| TranscriptionOptions(Stream) |
Initializes a new instance of TranscriptionOptions with an audio stream. |
| TranscriptionOptions(Uri) |
Initializes a new instance of TranscriptionOptions with an audio URI. |
TranscriptionOptions()
- Source:
- TranscriptionOptions.cs
Initializes a new instance of TranscriptionOptions.
public TranscriptionOptions();
Public Sub New ()
Applies to
TranscriptionOptions(Stream)
- Source:
- TranscriptionOptions.cs
Initializes a new instance of TranscriptionOptions with an audio stream.
public TranscriptionOptions(System.IO.Stream audioStream);
new Azure.AI.Speech.Transcription.TranscriptionOptions : System.IO.Stream -> Azure.AI.Speech.Transcription.TranscriptionOptions
Public Sub New (audioStream As Stream)
Parameters
- audioStream
- Stream
The audio stream to be transcribed.
Applies to
TranscriptionOptions(Uri)
- Source:
- TranscriptionOptions.cs
Initializes a new instance of TranscriptionOptions with an audio URI.
public TranscriptionOptions(Uri audioUri);
new Azure.AI.Speech.Transcription.TranscriptionOptions : Uri -> Azure.AI.Speech.Transcription.TranscriptionOptions
Public Sub New (audioUri As Uri)
Parameters
- audioUri
- Uri
The URL of the audio to be transcribed.