AudioAnalyzerPreset Constructors

Definition

Overloads

AudioAnalyzerPreset()

Initializes a new instance of the AudioAnalyzerPreset class.

AudioAnalyzerPreset(String, Nullable<AudioAnalysisMode>, IDictionary<String,String>)

Initializes a new instance of the AudioAnalyzerPreset class.

AudioAnalyzerPreset()

Initializes a new instance of the AudioAnalyzerPreset class.

public AudioAnalyzerPreset ();
Public Sub New ()

Applies to

AudioAnalyzerPreset(String, Nullable<AudioAnalysisMode>, IDictionary<String,String>)

Initializes a new instance of the AudioAnalyzerPreset class.

public AudioAnalyzerPreset (string audioLanguage = default, Microsoft.Azure.Management.Media.Models.AudioAnalysisMode? mode = default, System.Collections.Generic.IDictionary<string,string> experimentalOptions = default);
new Microsoft.Azure.Management.Media.Models.AudioAnalyzerPreset : string * Nullable<Microsoft.Azure.Management.Media.Models.AudioAnalysisMode> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.Media.Models.AudioAnalyzerPreset
Public Sub New (Optional audioLanguage As String = Nothing, Optional mode As Nullable(Of AudioAnalysisMode) = Nothing, Optional experimentalOptions As IDictionary(Of String, String) = Nothing)

Parameters

audioLanguage
String

The language for the audio payload in the input using the BCP-47 format of 'language tag-region' (e.g: 'en-US'). If you know the language of your content, it is recommended that you specify it. The language must be specified explicitly for AudioAnalysisMode::Basic, since automatic language detection is not included in basic mode. If the language isn't specified or set to null, automatic language detection will choose the first language detected and process with the selected language for the duration of the file. It does not currently support dynamically switching between languages after the first language is detected. The automatic detection works best with audio recordings with clearly discernable speech. If automatic detection fails to find the language, transcription would fallback to 'en-US'." The list of supported languages is available here: https://go.microsoft.com/fwlink/?linkid=2109463

mode
Nullable<AudioAnalysisMode>

Determines the set of audio analysis operations to be performed. If unspecified, the Standard AudioAnalysisMode would be chosen. Possible values include: 'Standard', 'Basic'

experimentalOptions
IDictionary<String,String>

Dictionary containing key value pairs for parameters not exposed in the preset itself

Applies to