An unofficial Rust API client for ElevenLabs text-to-speech software.
| API | Support | | ---------- | ------- | | Add Voice | ❌ | | Edit Voice | ❌ |
ELEVEN_API_KEY
```rust use elevenlabs_rs::{Speech, Result};
async fn main() -> Result<()> { let speech = Speech::new( "This is the way the world ends, not with a bang but a whimper", "Clyde", "elevenmonolingualv1", 0, ).await?; speech.play()?; Ok(()) } ```
```rust use elevenlabs_rs::{Speech, Result};
async fn main() -> Result<()> { let speech = Speech::fromfile( "sonnet11.txt", "Glinda", "elevenmultilingualv1", 0, ).await?; speech.play()?; Ok(()) } ```
```rust use elevenlabsrs::{getvoices, Speech, Result};
async fn main() -> Result<()> { let voices = getvoices().await?; let clonedvoices = voices.all_clones();
let speech = Speech::new(
"'I haven't the slightest idea', said the Hatter.",
&cloned_voices[0].name,
"eleven_monolingual_v1",
0,
).await?;
speech.play()?;
println!("Voices: {:#?}", voices);
Ok(())
} ```