SpeechConfig class
Speech configuration.
Properties
authorization |
Gets the authorization token. |
endpoint |
Gets the endpoint ID of a customized speech model that is used for speech recognition. |
output |
Gets speech recognition output format (simple or detailed). Note: This output format is for speech recognition result, use [SpeechConfig.speechSynthesisOutputFormat] to get synthesized audio output format. |
region | |
speech |
Returns the configured language. |
speech |
Gets the language of the speech synthesizer. Added in version 1.11.0. |
speech |
Gets the speech synthesis output format. Added in version 1.11.0. |
speech |
Gets the voice of the speech synthesizer. Added in version 1.11.0. |
subscription |
Methods
close() | Closes the configuration. |
enable |
Enable audio logging in service. Audio and content logs are stored either in Microsoft-owned storage, or in your own storage account linked to your Cognitive Services subscription (Bring Your Own Storage (BYOS) enabled Speech resource). The logs will be removed after 30 days. Added in version 1.7.0. |
enable |
Enable dictation. Only supported in speech continuous recognition. Added in version 1.7.0. |
from |
Creates an instance of the speech factory with specified initial authorization token and region. Note: The caller needs to ensure that the authorization token is valid. Before the authorization token expires, the caller needs to refresh it by calling this setter with a new valid token. Note: Please use a token derived from your LanguageUnderstanding subscription key in case you want to use the Intent recognizer. As configuration values are copied when creating a new recognizer, the new token value will not apply to recognizers that have already been created. For recognizers that have been created before, you need to set authorization token of the corresponding recognizer to refresh the token. Otherwise, the recognizers will encounter errors during recognition. |
from |
Creates an instance of the speech config with specified endpoint and subscription key. This method is intended only for users who use a non-standard service endpoint or parameters. Note: Please use your LanguageUnderstanding subscription key in case you want to use the Intent recognizer. Note: The query parameters specified in the endpoint URL are not changed, even if they are set by any other APIs. For example, if language is defined in the uri as query parameter "language=de-DE", and also set by SpeechConfig.speechRecognitionLanguage = "en-US", the language setting in uri takes precedence, and the effective language is "de-DE". Only the parameters that are not specified in the endpoint URL can be set by other APIs. Note: To use authorization token with fromEndpoint, pass an empty string to the subscriptionKey in the fromEndpoint method, and then set authorizationToken="token" on the created SpeechConfig instance to use the authorization token. |
from |
Creates an instance of the speech config with specified host and subscription key. This method is intended only for users who use a non-default service host. Standard resource path will be assumed. For services with a non-standard resource path or no path at all, use fromEndpoint instead. Note: Query parameters are not allowed in the host URI and must be set by other APIs. Note: To use an authorization token with fromHost, use fromHost(URL), and then set the AuthorizationToken property on the created SpeechConfig instance. Note: Added in version 1.9.0. |
from |
Static instance of SpeechConfig returned by passing subscriptionKey and service region. Note: Please use your LanguageUnderstanding subscription key in case you want to use the Intent recognizer. |
get |
Returns the current value of an arbitrary property. |
request |
Includes word-level timestamps. Added in version 1.7.0. |
set |
Sets profanity option. Added in version 1.7.0. |
set |
Sets an arbitrary property. |
set |
Sets the proxy configuration. Only relevant in Node.js environments. Added in version 1.4.0. |
set |
Sets the proxy configuration. Only relevant in Node.js environments. Added in version 1.4.0. |
set |
Sets a property value that will be passed to service using the specified channel. Added in version 1.7.0. |
Property Details
authorizationToken
Gets the authorization token.
string authorizationToken
Property Value
string
endpointId
Gets the endpoint ID of a customized speech model that is used for speech recognition.
string endpointId
Property Value
string
The endpoint ID
outputFormat
Gets speech recognition output format (simple or detailed). Note: This output format is for speech recognition result, use [SpeechConfig.speechSynthesisOutputFormat] to get synthesized audio output format.
OutputFormat outputFormat
Property Value
Returns the output format.
region
string region
Property Value
string
The region set on the config.
speechRecognitionLanguage
Returns the configured language.
string speechRecognitionLanguage
Property Value
string
speechSynthesisLanguage
Gets the language of the speech synthesizer. Added in version 1.11.0.
string speechSynthesisLanguage
Property Value
string
Returns the speech synthesis language.
speechSynthesisOutputFormat
Gets the speech synthesis output format. Added in version 1.11.0.
SpeechSynthesisOutputFormat speechSynthesisOutputFormat
Property Value
Returns the speech synthesis output format
speechSynthesisVoiceName
Gets the voice of the speech synthesizer. Added in version 1.11.0.
string speechSynthesisVoiceName
Property Value
string
Returns the speech synthesis voice.
subscriptionKey
string subscriptionKey
Property Value
string
The subscription key set on the config.
Method Details
close()
Closes the configuration.
function close()
enableAudioLogging()
Enable audio logging in service. Audio and content logs are stored either in Microsoft-owned storage, or in your own storage account linked to your Cognitive Services subscription (Bring Your Own Storage (BYOS) enabled Speech resource). The logs will be removed after 30 days. Added in version 1.7.0.
function enableAudioLogging()
enableDictation()
Enable dictation. Only supported in speech continuous recognition. Added in version 1.7.0.
function enableDictation()
fromAuthorizationToken(string, string)
Creates an instance of the speech factory with specified initial authorization token and region. Note: The caller needs to ensure that the authorization token is valid. Before the authorization token expires, the caller needs to refresh it by calling this setter with a new valid token. Note: Please use a token derived from your LanguageUnderstanding subscription key in case you want to use the Intent recognizer. As configuration values are copied when creating a new recognizer, the new token value will not apply to recognizers that have already been created. For recognizers that have been created before, you need to set authorization token of the corresponding recognizer to refresh the token. Otherwise, the recognizers will encounter errors during recognition.
static function fromAuthorizationToken(authorizationToken: string, region: string): SpeechConfig
Parameters
- authorizationToken
-
string
The initial authorization token.
- region
-
string
The region name (see the region page).
Returns
A speech factory instance.
fromEndpoint(URL, string)
Creates an instance of the speech config with specified endpoint and subscription key. This method is intended only for users who use a non-standard service endpoint or parameters. Note: Please use your LanguageUnderstanding subscription key in case you want to use the Intent recognizer. Note: The query parameters specified in the endpoint URL are not changed, even if they are set by any other APIs. For example, if language is defined in the uri as query parameter "language=de-DE", and also set by SpeechConfig.speechRecognitionLanguage = "en-US", the language setting in uri takes precedence, and the effective language is "de-DE". Only the parameters that are not specified in the endpoint URL can be set by other APIs. Note: To use authorization token with fromEndpoint, pass an empty string to the subscriptionKey in the fromEndpoint method, and then set authorizationToken="token" on the created SpeechConfig instance to use the authorization token.
static function fromEndpoint(endpoint: URL, subscriptionKey?: string): SpeechConfig
Parameters
- endpoint
-
URL
The service endpoint to connect to.
- subscriptionKey
-
string
The subscription key. If a subscription key is not specified, an authorization token must be set.
Returns
A speech factory instance.
fromHost(URL, string)
Creates an instance of the speech config with specified host and subscription key. This method is intended only for users who use a non-default service host. Standard resource path will be assumed. For services with a non-standard resource path or no path at all, use fromEndpoint instead. Note: Query parameters are not allowed in the host URI and must be set by other APIs. Note: To use an authorization token with fromHost, use fromHost(URL), and then set the AuthorizationToken property on the created SpeechConfig instance. Note: Added in version 1.9.0.
static function fromHost(hostName: URL, subscriptionKey?: string): SpeechConfig
Parameters
- hostName
-
URL
- subscriptionKey
-
string
The subscription key. If a subscription key is not specified, an authorization token must be set.
Returns
A speech factory instance.
fromSubscription(string, string)
Static instance of SpeechConfig returned by passing subscriptionKey and service region. Note: Please use your LanguageUnderstanding subscription key in case you want to use the Intent recognizer.
static function fromSubscription(subscriptionKey: string, region: string): SpeechConfig
Parameters
- subscriptionKey
-
string
The subscription key.
- region
-
string
The region name (see the region page).
Returns
The speech factory
getProperty(string, string)
Returns the current value of an arbitrary property.
function getProperty(name: string, def?: string): string
Parameters
- name
-
string
The name of the property to query.
- def
-
string
The value to return in case the property is not known.
Returns
string
The current value, or provided default, of the given property.
requestWordLevelTimestamps()
Includes word-level timestamps. Added in version 1.7.0.
function requestWordLevelTimestamps()
setProfanity(ProfanityOption)
Sets profanity option. Added in version 1.7.0.
function setProfanity(profanity: ProfanityOption)
Parameters
- profanity
- ProfanityOption
setProperty(string | PropertyId, string)
Sets an arbitrary property.
function setProperty(name: string | PropertyId, value: string)
Parameters
- name
-
string | PropertyId
The name of the property to set.
- value
-
string
The new value of the property.
setProxy(string, number)
Sets the proxy configuration. Only relevant in Node.js environments. Added in version 1.4.0.
function setProxy(proxyHostName: string, proxyPort: number)
Parameters
- proxyHostName
-
string
The host name of the proxy server.
- proxyPort
-
number
The port number of the proxy server.
setProxy(string, number, string, string)
Sets the proxy configuration. Only relevant in Node.js environments. Added in version 1.4.0.
function setProxy(proxyHostName: string, proxyPort: number, proxyUserName: string, proxyPassword: string)
Parameters
- proxyHostName
-
string
The host name of the proxy server, without the protocol scheme (http://)
- proxyPort
-
number
The port number of the proxy server.
- proxyUserName
-
string
The username of the proxy server.
- proxyPassword
-
string
The password of the proxy server.
setServiceProperty(string, string, UriQueryParameter)
Sets a property value that will be passed to service using the specified channel. Added in version 1.7.0.
function setServiceProperty(name: string, value: string, channel: UriQueryParameter)
Parameters
- name
-
string
- value
-
string
- channel
- UriQueryParameter