Interface IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder
- All Superinterfaces:
ComponentBuilder<org.apache.camel.component.ibm.watson.stt.WatsonSpeechToTextComponent>
- All Known Implementing Classes:
IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilderImpl
- Enclosing interface:
IbmWatsonSpeechToTextComponentBuilderFactory
public static interface IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder
extends ComponentBuilder<org.apache.camel.component.ibm.watson.stt.WatsonSpeechToTextComponent>
Builder for the IBM Watson Speech to Text component.
-
Method Summary
Modifier and TypeMethodDescriptionThe IBM Cloud API key for authentication.autowiredEnabled(boolean autowiredEnabled) Whether autowiring is enabled.configuration(org.apache.camel.component.ibm.watson.stt.WatsonSpeechToTextConfiguration configuration) Component configuration.contentType(String contentType) The audio format (MIME type).healthCheckConsumerEnabled(boolean healthCheckConsumerEnabled) Used for enabling or disabling all consumer based health checks from this component.healthCheckProducerEnabled(boolean healthCheckProducerEnabled) Used for enabling or disabling all producer based health checks from this component.lazyStartProducer(boolean lazyStartProducer) Whether the producer should be started lazy (on the first message).The language model to use for recognition.operation(org.apache.camel.component.ibm.watson.stt.WatsonSpeechToTextOperations operation) The operation to perform.serviceUrl(String serviceUrl) The service endpoint URL.speakerLabels(boolean speakerLabels) Whether to identify different speakers in the audio.timestamps(boolean timestamps) Whether to include timestamps for each word in the transcription.wordConfidence(boolean wordConfidence) Whether to include confidence scores for each word.Methods inherited from interface org.apache.camel.builder.component.ComponentBuilder
build, build, doSetProperty, register
-
Method Details
-
configuration
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder configuration(org.apache.camel.component.ibm.watson.stt.WatsonSpeechToTextConfiguration configuration) Component configuration. The option is a: <code>org.apache.camel.component.ibm.watson.stt.WatsonSpeechToTextConfiguration</code> type. Group: producer- Parameters:
configuration- the value to set- Returns:
- the dsl builder
-
serviceUrl
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder serviceUrl(String serviceUrl) The service endpoint URL. If not specified, the default URL will be used. The option is a: <code>java.lang.String</code> type. Group: common- Parameters:
serviceUrl- the value to set- Returns:
- the dsl builder
-
contentType
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder contentType(String contentType) The audio format (MIME type). Default is audio/wav. Supported formats: audio/wav, audio/mp3, audio/flac, audio/ogg, audio/webm. The option is a: <code>java.lang.String</code> type. Default: audio/wav Group: producer- Parameters:
contentType- the value to set- Returns:
- the dsl builder
-
lazyStartProducer
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder lazyStartProducer(boolean lazyStartProducer) Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a: <code>boolean</code> type. Default: false Group: producer- Parameters:
lazyStartProducer- the value to set- Returns:
- the dsl builder
-
model
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder model(String model) The language model to use for recognition. Default is en-US_BroadbandModel. Examples: en-US_NarrowbandModel, en-GB_BroadbandModel, es-ES_BroadbandModel, fr-FR_BroadbandModel. The option is a: <code>java.lang.String</code> type. Default: en-US_BroadbandModel Group: producer- Parameters:
model- the value to set- Returns:
- the dsl builder
-
operation
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder operation(org.apache.camel.component.ibm.watson.stt.WatsonSpeechToTextOperations operation) The operation to perform. The option is a: <code>org.apache.camel.component.ibm.watson.stt.WatsonSpeechToTextOperations</code> type. Group: producer- Parameters:
operation- the value to set- Returns:
- the dsl builder
-
speakerLabels
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder speakerLabels(boolean speakerLabels) Whether to identify different speakers in the audio. Default is false. The option is a: <code>boolean</code> type. Default: false Group: producer- Parameters:
speakerLabels- the value to set- Returns:
- the dsl builder
-
timestamps
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder timestamps(boolean timestamps) Whether to include timestamps for each word in the transcription. Default is false. The option is a: <code>boolean</code> type. Default: false Group: producer- Parameters:
timestamps- the value to set- Returns:
- the dsl builder
-
wordConfidence
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder wordConfidence(boolean wordConfidence) Whether to include confidence scores for each word. Default is false. The option is a: <code>boolean</code> type. Default: false Group: producer- Parameters:
wordConfidence- the value to set- Returns:
- the dsl builder
-
autowiredEnabled
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder autowiredEnabled(boolean autowiredEnabled) Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. The option is a: <code>boolean</code> type. Default: true Group: advanced- Parameters:
autowiredEnabled- the value to set- Returns:
- the dsl builder
-
healthCheckConsumerEnabled
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder healthCheckConsumerEnabled(boolean healthCheckConsumerEnabled) Used for enabling or disabling all consumer based health checks from this component. The option is a: <code>boolean</code> type. Default: true Group: health- Parameters:
healthCheckConsumerEnabled- the value to set- Returns:
- the dsl builder
-
healthCheckProducerEnabled
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder healthCheckProducerEnabled(boolean healthCheckProducerEnabled) Used for enabling or disabling all producer based health checks from this component. Notice: Camel has by default disabled all producer based health-checks. You can turn on producer checks globally by setting camel.health.producersEnabled=true. The option is a: <code>boolean</code> type. Default: true Group: health- Parameters:
healthCheckProducerEnabled- the value to set- Returns:
- the dsl builder
-
apiKey
default IbmWatsonSpeechToTextComponentBuilderFactory.IbmWatsonSpeechToTextComponentBuilder apiKey(String apiKey) The IBM Cloud API key for authentication. The option is a: <code>java.lang.String</code> type. Group: security- Parameters:
apiKey- the value to set- Returns:
- the dsl builder
-