Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface TTSPluginSpeechConfig

Additional configuration for speech output (TTS: Text To Speech) for mmir plugins: extend configuration specified in (language specific) speech.json.

NOTE for applying a value to all speech configurations (i.e. for language codes): use a simple string

 {voice: 'female'}
 
or, if combined with specific settings, use "apply-to-all-configs" as language code
 {voice: {
     en: 'Hedda',
     'apply-to-all-configs': 'male'
 }}
 
which would set "Hedda" as voice for "en", and voice "male" for all other language codes

see

SimpleSpeechConfig

Hierarchy

  • TTSPluginSpeechConfig

Index

Properties

Properties

Optional language

language: string | {}

local with 2-letter language- and country-code, separated with "-", e.g. "de-DE" or "en-US"

Optional long

long: string | {}

local with 3-letter language- and country-code, separated with "-", e.g. "deu-DEU" or "eng-USA"

Optional voice

voice: "male" | "female" | string | {}

voice name or feature (may not be supported by selected TTS plugin)

Generated using TypeDoc