1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Advanced synthesis features for VoiRS CLI.
//!
//! This module provides high-level synthesis capabilities that extend beyond
//! basic text-to-speech, including voice cloning, emotion control, and
//! multimodal synthesis features. These features enable more natural and
//! expressive speech synthesis.
//!
//! ## Features
//!
//! - **Voice Cloning**: Create custom voices from reference audio samples
//! - **Emotion Control**: Add emotional expression to synthesized speech
//! - **Multimodal Synthesis**: Integrate text, audio, and visual information
//!
//! ## Modules
//!
//! - [`cloning`]: Voice cloning and adaptation functionality
//! - [`emotion`]: Emotion control and expression synthesis
//! - [`multimodal`]: Multimodal synthesis combining different input types
//!
//! ## Example
//!
//! ```rust,no_run
//! use voirs_cli::synthesis::emotion::{EmotionSynthesizer, EmotionType};
//!
//! # async fn example() -> anyhow::Result<()> {
//! let mut synthesizer = EmotionSynthesizer::new();
//! synthesizer.set_current_emotion(EmotionType::Joy);
//! let emotion = synthesizer.analyze_text_emotion("Hello world!");
//!
//! // Use with synthesis pipeline...
//! # Ok(())
//! # }
//! ```
pub use *;
pub use *;
pub use *;
pub use *;