blob: 925ccd4cb77db5e59f0daec82edcfcdf11033cd9 (
plain)
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
|
use crate::config::CONFIG;
use reqwest::header::AUTHORIZATION;
/// Create a new sound from a text
pub async fn tts(text: &String) -> Result<bytes::Bytes, String> {
let url = "https://api.v7.unrealspeech.com/stream";
let api_key = format!("Bearer {}", CONFIG.unrealspeech_token);
let body = serde_json::json!({
"Text": text,
"VoiceId": "Will",
"Bitrate": "192k",
"Speed": "0",
"Pitch": "0.92",
"Codec": "libmp3lame",
});
let client = reqwest::Client::new();
let response = client
.post(url)
.header(AUTHORIZATION, api_key)
.json(&body)
.send()
.await
.map_err(|e| format!("Error creating new audio: {}", e))?;
if response.status().is_success() {
let content = response
.bytes()
.await
.map_err(|e| format!("Failed to get response bytes: {}", e))?;
Ok(content)
} else {
Err(format!("Failed to fetch the audio: {}", response.status()))
}
}
|