Package-level declarations

Types

Link copied to clipboard
data class AndroidTtsDefaults(val language: Language? = null, val pitch: Double? = null, val speed: Double? = null)

Default values for the Android TTS engine.

Link copied to clipboard

Default TtsEngine implementation using Android's native text to speech engine.

Link copied to clipboard
Link copied to clipboard
@Serializable
data class AndroidTtsPreferences(val language: Language? = null, val pitch: Double? = null, val speed: Double? = null, val voices: Map<Language, AndroidTtsEngine.Voice.Id>? = null) : TtsEngine.Preferences<AndroidTtsPreferences>

Preferences for the the Android built-in TTS engine.

Link copied to clipboard

Editor for a set of AndroidTtsPreferences.

Link copied to clipboard

Suggested filter to keep only publication-specific AndroidTtsPreferences.

Link copied to clipboard
data class AndroidTtsSettings(val language: Language, val overrideContentLanguage: Boolean, val pitch: Double, val speed: Double, val voices: Map<Language, AndroidTtsEngine.Voice.Id>) : TtsEngine.Settings

Settings values of the Android built-in TTS engine.