voirs-sdk 0.1.0-rc.1

Unified SDK and public API for VoiRS speech synthesis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Trait adapters for integrating VoiRS component crates with the SDK.
//!
//! This module provides adapter implementations that bridge the differences
//! between component crate traits and SDK traits, enabling seamless integration
//! of individual VoiRS components into the unified SDK pipeline.

pub mod acoustic;
pub mod g2p;
pub mod vocoder;

pub use acoustic::AcousticAdapter;
pub use g2p::G2pAdapter;
pub use vocoder::VocoderAdapter;