droid_wrap::android::speech::tts

Struct TextToSpeech

Source
pub struct TextToSpeech { /* private fields */ }
Expand description

从文本合成语音以立即播放或创建声音文件。 TextToSpeech 实例只有在完成初始化后才可用于合成文本。实现 TextToSpeech.OnInitListener 以接收初始化完成的通知。使用完 TextToSpeech 实例后,调用 shutdown() 方法释放 TextToSpeech 引擎使用的原生资源。针对 Android 11 且使用文本转语音的应用应在其清单的查询元素中声明 TextToSpeech.Engine.INTENT_ACTION_TTS_SERVICE: <queries> … <intent> <action android:name=“android. intent. action. TTS_SERVICE” /> </intent> </queries>

Implementations§

Source§

impl TextToSpeech

Source

pub const ACTION_TTS_QUEUE_PROCESSING_COMPLETED: &'static str = "android.speech.tts.TTS_QUEUE_PROCESSING_COMPLETED"

广播操作:TextToSpeech 合成器已完成对语音队列中所有文本的处理。 请注意,当引擎完成文本数据处理时,这会通知呼叫者。此时音频播放可能尚未完成(甚至尚未开始)。如果您希望在发生这种情况时收到通知,请参阅 TextToSpeech.OnUtteranceCompletedListener。

Source

pub const ERROR: i32 = -1i32

表示一般操作失败。

Source

pub const ERROR_INVALID_REQUEST: i32 = -8i32

表示由无效请求导致的失败。

Source

pub const ERROR_NETWORK: i32 = -6i32

表示由网络连接问题导致的故障。

Source

pub const ERROR_NETWORK_TIMEOUT: i32 = -7i32

表示由于网络超时导致的失败。

Source

pub const ERROR_NOT_INSTALLED_YET: i32 = -9i32

表示由于语音数据未下载完成而导致的失败。

Source

pub const ERROR_OUTPUT: i32 = -5i32

表示与输出(音频设备或文件)相关的故障。

Source

pub const ERROR_SYNTHESIS: i32 = -3i32

表示 TTS 引擎无法合成给定的输入。

Source

pub const LANG_AVAILABLE: i32 = 0i32

表示该语言适用于该区域设置的语言,但不适用于该国家/地区和变体。

Source

pub const LANG_COUNTRY_AVAILABLE: i32 = 1i32

表示该语言适用于区域设置指定的语言和国家/地区,但不适用于变体。

Source

pub const LANG_COUNTRY_VAR_AVAILABLE: i32 = 2i32

表示该语言完全按照区域设置指定的方式提供。

Source

pub const LANG_MISSING_DATA: i32 = -1i32

表示缺少语言数据。

Source

pub const LANG_NOT_SUPPORTED: i32 = -2i32

表示不支持该语言。

Source

pub const QUEUE_ADD: i32 = 1i32

队列模式,新条目添加到播放队列的末尾。

Source

pub const QUEUE_DESTROY: i32 = 2i32

队列模式,其中整个播放队列都会被清除。这与 QUEUE_FLUSH 不同,因为所有条目都会被清除,而不仅仅是来自给定调用者的条目。

Source

pub const QUEUE_FLUSH: i32 = 0i32

队列模式,播放队列中的所有条目(要播放的媒体和要合成的文本)都将被删除并替换为新条目。队列会根据给定的调用应用进行刷新。队列中来自其他调用者的条目不会被丢弃。

Source

pub const STOPPED: i32 = -2i32

表示客户端请求停止。它仅在 API 的服务端使用,客户端不应该期望看到此结果代码。

Source

pub const SUCCESS: i32 = 0i32

表示操作成功。

Source

pub const ERROR_SERVICE: i32 = -4i32

表示 TTS 服务失败。

Source

pub fn new<L: TextToSpeech_OnInitListener>( context: &Context, listener: &L, ) -> Self

TextToSpeech 类的构造函数,使用默认的 TTS 引擎。如果尚未运行,这还将初始化关联的 TextToSpeech 引擎。 context 此实例正在运行的上下文。 listener 当 TextToSpeech 引擎初始化时将调用 TextToSpeech.OnInitListener。如果发生故障,可能会在 TextToSpeech 实例完全构造之前立即调用侦听器。

Source

pub fn stop(&self) -> i32

中断当前话语(无论是播放还是渲染到文件)并丢弃队列中的其他话语。 返回:错误或成功。

Source

pub fn is_speaking(&self) -> bool

检查 TTS 引擎是否正在讲话。请注意,一旦语音项目的音频数据被发送到音频混音器或写入文件,该语音项目即被视为完成。此时与音频硬件完成播放之间可能会有有限地滞后。如果 TTS 引擎正在讲话,则返回 true。

Source

pub fn shutdown(&self)

释放 TextToSpeech 引擎使用的资源。例如,在 Activity 的 onDestroy() 方法中调用此方法是一种很好的做法,这样 TextToSpeech 引擎就可以完全停止。

Source

pub fn set_pitch(&self, pitch: f32) -> i32

设置 TextToSpeech 引擎的语音音调。这对任何预录语音均无影响。 返回:ERROR 或 SUCCESS。 pitch 语音音调。1.0 为正常音调,值越低,合成语音的音调越低,值越高,合成语音的音调越高。

Source

pub fn set_speech_rate(&self, speech_rate: f32) -> i32

设置语速。这对任何预先录制的语音没有影响。 返回:ERROR 或 SUCCESS。 speech_rate 语速。1.0 是正常语速,较低的值会减慢语速(0.5 是正常语速的一半),较高的值会加快语速(2.0 是正常语速的两倍)。

Source

pub fn set_engine_by_package_name(&self, engine_package_name: String) -> i32

👎Deprecated: 这不会在 TTS 引擎初始化时通知调用者。TextToSpeech(Context, TextToSpeech.OnInitListener, String) 可以与适当的引擎名称一起使用。此外,不能保证指定的引擎将被加载。如果未安装或禁用,则将应用用户/系统范围的默认值。

设置要使用的 TTS 引擎。 返回:ERROR 或 SUCCESS。 engine_package_name 合成引擎的包名称(例如“com.svox.pico”)

Source

pub fn get_max_speech_input_length() -> i32

传递给 Speaking 和 SynthesizeToFile 的输入字符串的长度限制。

Source

pub fn get_default_engine(&self) -> String

获取默认语音合成引擎的包装名称。 返回:用户选择的TTS引擎的软件包名称作为其默认值。

Source

pub fn get_current_engine(&self) -> String

返回:此 TextToSpeech 实例当前使用的引擎。

Source

pub fn are_defaults_enforced(&self) -> bool

👎Deprecated: 从 Ice creamwich 版本开始,用户设置永远不会强制覆盖应用程序的设置。

检查用户的设置是否应覆盖调用应用程序请求的设置。

Source

pub fn speak<CS: CharSequence>( &self, text: &CS, queue_mode: i32, params: Option<Bundle>, utterance_id: String, ) -> i32

使用指定的排队策略和语音参数朗读文本,文本可能以 TtsSpans 为单位。此方法是异步的,即该方法只是将请求添加到 TTS 请求队列然后返回。当此方法返回时,合成可能尚未完成(甚至尚未开始!)。为了可靠地检测合成过程中的错误,我们建议设置一个发音进度监听器(参见 setOnUtteranceProgressListener)并使用 TextToSpeech.Engine.KEY_PARAM_UTTERANCE_ID 参数。 返回:排队发言操作的错误或成功。 text 要朗读的文本字符串。长度不超过 getMaxSpeechInputLength() 字符。 queue_mode 要使用的排队策略,QUEUE_ADD 或 QUEUE_FLUSH。 params 请求的参数。可以为 null。支持的参数名称:TextToSpeech.Engine.KEY_PARAM_STREAM、TextToSpeech.Engine.KEY_PARAM_VOLUME、TextToSpeech.Engine。KEY_PARAM_PAN。可以传入引擎特定参数,但参数键必须以它们所针对的引擎的名称作为前缀。例如,如果正在使用名为“com.svox.pico”的引擎,则键“com.svox.pico_foo”和“com.svox.pico:bar”将传递给该引擎。 utterance_id 此请求的唯一标识符。

Methods from Deref<Target = GlobalRef>§

Source

pub fn as_obj(&self) -> &JObject<'static>

Get the object from the global ref

This borrows the ref and prevents it from being dropped as long as the JObject sticks around.

Methods from Deref<Target = JObject<'static>>§

Source

pub fn as_raw(&self) -> *mut _jobject

Returns the raw JNI pointer.

Trait Implementations§

Source§

impl Debug for TextToSpeech

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for TextToSpeech

Source§

type Target = GlobalRef

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl From<&GlobalRef> for TextToSpeech

Source§

fn from(obj: &GlobalRef) -> Self

Converts to this type from the input type.
Source§

impl Into<GlobalRef> for &TextToSpeech

Source§

fn into(self) -> GlobalRef

Converts this type into the (usually inferred) input type.
Source§

impl JObjNew for TextToSpeech

Source§

type Fields = ()

字段类型
Source§

fn _new(this: &GlobalRef, fields: Self::Fields) -> Self

从java对象创建本地对象。 this java对象引用。
Source§

fn null() -> Self
where Self: Sized, Self::Fields: Default,

创建空对象。
Source§

impl JObjRef for TextToSpeech

Source§

fn java_ref(&self) -> GlobalRef

获取java对象引用。
Source§

impl JType for TextToSpeech

Source§

const CLASS: &'static str = "android/speech/tts/TextToSpeech"

java类的名称。
Source§

const OBJECT_SIG: &'static str = "Landroid/speech/tts/TextToSpeech;"

对象的签名描述。
Source§

type Error = Error

错误类型。
Source§

const DIM: u8 = 0u8

数组维度,0表示不是数组
Source§

impl PartialEq for TextToSpeech

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl ToString for TextToSpeech

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.