Spaces:
Sleeping
Sleeping
File size: 11,965 Bytes
44e95cf bb6818c 6647d0d bb6818c 2bb7b57 6647d0d 2bb7b57 af79bf4 b0c7520 6647d0d 44e95cf af79bf4 44e95cf 2bb7b57 44e95cf 3569cbd 44e95cf 2bb7b57 44e95cf 2bb7b57 44e95cf b0c7520 44e95cf 2bb7b57 44e95cf af79bf4 44e95cf af79bf4 2bb7b57 af79bf4 44e95cf af79bf4 6647d0d af79bf4 6647d0d af79bf4 44e95cf 2bb7b57 44e95cf af79bf4 6647d0d 44e95cf 2bb7b57 6647d0d 44e95cf af79bf4 44e95cf af79bf4 44e95cf b0c7520 44e95cf af79bf4 44e95cf b0c7520 44e95cf 2bb7b57 44e95cf af79bf4 44e95cf 2bb7b57 44e95cf 2bb7b57 44e95cf 2bb7b57 b0c7520 af79bf4 6647d0d af79bf4 6647d0d af79bf4 26d4ce5 2bb7b57 af79bf4 44e95cf af79bf4 44e95cf af79bf4 2bb7b57 44e95cf af79bf4 44e95cf af79bf4 2bb7b57 af79bf4 44e95cf af79bf4 2bb7b57 44e95cf af79bf4 bb6818c af79bf4 44e95cf 2bb7b57 44e95cf 2bb7b57 44e95cf bb6818c 44e95cf 2bb7b57 af79bf4 44e95cf af79bf4 44e95cf af79bf4 bb6818c af79bf4 44e95cf af79bf4 bb6818c af79bf4 bb6818c af79bf4 2bb7b57 af79bf4 44e95cf af79bf4 44e95cf bb6818c 44e95cf bb6818c 44e95cf 2449bb5 bb6818c 2bb7b57 bb6818c 2bb7b57 bb6818c 2bb7b57 bb6818c b0c3f88 bb6818c |
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
use aws_config::SdkConfig;
use aws_sdk_polly::primitives::ByteStream;
use aws_sdk_polly::types::{Engine, OutputFormat, SpeechMarkType, VoiceId};
use aws_sdk_transcribestreaming::types::{LanguageCode};
use futures_util::future::try_join;
use serde::{Deserialize, Serialize};
use std::collections::BTreeMap;
use std::fmt::{Display};
use std::io::BufRead;
use std::sync::{Arc, Weak};
use tokio::sync::RwLock;
use tokio::select;
use crate::asr::Event;
#[derive(Clone, Debug)]
pub struct LessonsManager {
translate_client: aws_sdk_translate::Client,
polly_client: aws_sdk_polly::Client,
lessons: Arc<RwLock<BTreeMap<u32, Lesson>>>,
}
impl LessonsManager {
pub(crate) fn new(sdk_config: &SdkConfig) -> Self {
let translate_client = aws_sdk_translate::Client::new(sdk_config);
let polly_client = aws_sdk_polly::Client::new(sdk_config);
LessonsManager {
translate_client,
polly_client,
lessons: Arc::new(RwLock::new(BTreeMap::new())),
}
}
pub(crate) async fn create_lesson(&self, id: u32, speaker_lang: LanguageCode) -> Lesson {
let mut map = self.lessons.write().await;
let lesson: Lesson = InnerLesson::new(self.clone(), speaker_lang).into();
map.insert(id, lesson.clone());
lesson
}
pub(crate) async fn get_lesson(&self, id: u32) -> Option<Lesson> {
let map = self.lessons.read().await;
map.get(&id).cloned()
}
}
#[derive(Clone, Debug)]
pub(crate) struct Lesson {
inner: Arc<InnerLesson>,
}
impl Lesson {
pub(crate) async fn get_or_init(&self, lang: String) -> LangLesson {
{
let map = self.inner.lang_lessons.read().await;
if let Some(lang_lesson) = map.get(&lang).and_then(|weak| weak.upgrade()) {
return lang_lesson.into();
}
}
{
let mut map = self.inner.lang_lessons.write().await;
if let Some(lang_lesson) = map.get(&lang).and_then(|weak| weak.upgrade()) {
lang_lesson.into()
} else {
let lang_lesson = LangLesson::new(self.clone(), lang.clone());
map.insert(lang.clone(), Arc::downgrade(&lang_lesson.inner));
lang_lesson
}
}
}
pub(crate) async fn send(&self, frame: Vec<i16>) -> anyhow::Result<()> {
Ok(self.inner.speaker_voice_channel.send(frame).await?)
}
pub(crate) fn transcript_channel(&self) -> tokio::sync::broadcast::Receiver<Event> {
self.inner.speaker_transcript.subscribe()
}
}
impl From<InnerLesson> for Lesson {
fn from(inner: InnerLesson) -> Self {
Lesson {
inner: Arc::new(inner),
}
}
}
#[derive(Debug)]
struct InnerLesson {
parent: LessonsManager,
speaker_lang: LanguageCode,
speaker_voice_channel: tokio::sync::mpsc::Sender<Vec<i16>>,
speaker_transcript: tokio::sync::broadcast::Sender<Event>,
lang_lessons: RwLock<BTreeMap<String, Weak<InnerLangLesson>>>,
drop_handler: Option<tokio::sync::oneshot::Sender<Signal>>,
}
impl InnerLesson {
fn new(parent: LessonsManager, speaker_lang: LanguageCode) -> InnerLesson {
let (speaker_transcript, _) = tokio::sync::broadcast::channel::<Event>(128);
let (speaker_voice_channel, mut speaker_voice_rx) = tokio::sync::mpsc::channel(128);
let (drop_handler, drop_rx) = tokio::sync::oneshot::channel::<Signal>();
InnerLesson {
parent,
speaker_lang,
speaker_voice_channel,
speaker_transcript,
lang_lessons: RwLock::new(BTreeMap::new()),
drop_handler: Some(drop_handler),
}
}
}
impl Drop for InnerLesson {
fn drop(&mut self) {
if let Some(tx) = self.drop_handler.take() {
let _ = tx.send(Signal::Stop);
}
}
}
struct InnerLangLesson {
parent: Lesson,
translated_tx: tokio::sync::broadcast::Sender<String>,
voice_lessons: RwLock<BTreeMap<VoiceId, Weak<InnerVoiceLesson>>>,
drop_handler: Option<tokio::sync::oneshot::Sender<Signal>>,
}
impl Drop for InnerLangLesson {
fn drop(&mut self) {
if let Some(tx) = self.drop_handler.take() {
let _ = tx.send(Signal::Stop);
}
}
}
#[derive(Clone)]
pub(crate) struct LangLesson {
inner: Arc<InnerLangLesson>,
}
impl LangLesson {
pub(crate) fn translated_channel(&self) -> tokio::sync::broadcast::Receiver<String> {
self.inner.translated_tx.subscribe()
}
}
impl From<InnerLangLesson> for LangLesson {
fn from(inner: InnerLangLesson) -> Self {
LangLesson {
inner: Arc::new(inner),
}
}
}
impl From<Arc<InnerLangLesson>> for LangLesson {
fn from(inner: Arc<InnerLangLesson>) -> Self {
LangLesson { inner }
}
}
impl LangLesson {
fn new(parent: Lesson, lang: String) -> Self {
let shared_lang = lang.clone();
let shared_speaker_lang = parent.inner.speaker_lang.clone();
let (translated_tx, _) = tokio::sync::broadcast::channel::<String>(128);
let shared_translated_tx = translated_tx.clone();
let mut transcript_rx = parent.inner.speaker_transcript.subscribe();
let translate_client = parent.inner.parent.translate_client.clone();
let (drop_handler, drop_rx) = tokio::sync::oneshot::channel::<Signal>();
tokio::spawn(async move {
let fut = async {
while let Ok(evt) = transcript_rx.recv().await {
let output = translate_client
.translate_text()
.text(evt.transcript)
.source_language_code(shared_speaker_lang.as_str())
.target_language_code(shared_lang.clone())
.send()
.await;
match output {
Ok(res) => {
let _ = shared_translated_tx.send(res.translated_text);
}
Err(e) => {
return Err(e);
}
}
}
Ok(())
};
select! {
res = fut => {
if let Err(e) = res {
println!("Error: {:?}", e);
}
}
_ = drop_rx => {}
}
});
InnerLangLesson {
parent,
translated_tx,
voice_lessons: RwLock::new(BTreeMap::new()),
drop_handler: Some(drop_handler),
}
.into()
}
pub(crate) async fn get_or_init(&mut self, voice: VoiceId) -> VoiceLesson {
{
let map = self.inner.voice_lessons.read().await;
if let Some(voice_lesson) = map.get(&voice).and_then(|weak| weak.upgrade()) {
return voice_lesson.into();
}
}
{
let mut map = self.inner.voice_lessons.write().await;
if let Some(voice_lesson) = map.get(&voice).and_then(|weak| weak.upgrade()) {
voice_lesson.into()
} else {
let voice_lesson = Arc::new(InnerVoiceLesson::new(self.clone(), voice.clone()));
map.insert(voice, Arc::downgrade(&voice_lesson));
voice_lesson.into()
}
}
}
}
#[derive(Clone)]
pub(crate) struct VoiceLesson {
inner: Arc<InnerVoiceLesson>,
}
impl VoiceLesson {
pub(crate) fn voice_channel(&self) -> tokio::sync::broadcast::Receiver<Vec<u8>> {
self.inner.voice_lesson.subscribe()
}
pub(crate) fn lip_sync_channel(&self) -> tokio::sync::broadcast::Receiver<Vec<Viseme>> {
self.inner.lip_sync_tx.subscribe()
}
}
impl From<InnerVoiceLesson> for VoiceLesson {
fn from(inner: InnerVoiceLesson) -> Self {
VoiceLesson {
inner: Arc::new(inner),
}
}
}
impl From<Arc<InnerVoiceLesson>> for VoiceLesson {
fn from(inner: Arc<InnerVoiceLesson>) -> Self {
VoiceLesson { inner }
}
}
struct InnerVoiceLesson {
lip_sync_tx: tokio::sync::broadcast::Sender<Vec<Viseme>>,
voice_lesson: tokio::sync::broadcast::Sender<Vec<u8>>,
drop_handler: Option<tokio::sync::oneshot::Sender<Signal>>,
}
#[derive(Debug)]
enum Signal {
Stop,
}
impl InnerVoiceLesson {
fn new(parent: LangLesson, voice: VoiceId) -> InnerVoiceLesson {
let shared_voice_id: VoiceId = voice.clone();
let (tx, rx) = tokio::sync::oneshot::channel::<Signal>();
let mut translate_rx = parent.inner.translated_tx.subscribe();
let (voice_lesson, _) = tokio::sync::broadcast::channel::<Vec<u8>>(128);
let shared_voice_lesson = voice_lesson.clone();
let (lip_sync_tx, _) = tokio::sync::broadcast::channel::<Vec<Viseme>>(128);
let shared_lip_sync_tx = lip_sync_tx.clone();
let client = parent.inner.parent.inner.parent.polly_client.clone();
// let lang: LanguageCode = parent.inner.lang.clone().parse().expect("Invalid language code");
tokio::spawn(async move {
let fut = async {
while let Ok(translated) = translate_rx.recv().await {
let res = synthesize_speech(&client, translated, shared_voice_id.clone()).await;
match res {
Ok((vec, mut audio_stream)) => {
let _ = shared_lip_sync_tx.send(vec);
while let Some(Ok(bytes)) = audio_stream.next().await {
let _ = &shared_voice_lesson.send(bytes.to_vec());
}
}
Err(e) => {
return Err(e);
}
}
}
Ok(())
};
select! {
res = fut => match res {
Ok(_) => {}
Err(e) => {
println!("Error: {:?}", e);
}
},
_ = rx => {}
}
});
InnerVoiceLesson {
lip_sync_tx,
voice_lesson,
drop_handler: Some(tx),
}
}
}
impl Drop for InnerVoiceLesson {
fn drop(&mut self) {
if let Some(tx) = self.drop_handler.take() {
let _ = tx.send(Signal::Stop);
}
}
}
// {"time":180,"type":"viseme","value":"r"}
#[derive(Debug, Deserialize, Clone, Serialize)]
pub(crate) struct Viseme {
time: u32,
value: String,
}
#[derive(Debug)]
enum SynthesizeError {
Polly(aws_sdk_polly::Error),
Transmitting(aws_sdk_polly::error::BoxError),
}
async fn synthesize_speech(
client: &aws_sdk_polly::Client,
text: String,
voice_id: VoiceId,
) -> Result<(Vec<Viseme>, ByteStream), SynthesizeError> {
let audio_fut = client
.synthesize_speech()
.engine(Engine::Neural)
.set_text(Some(text.clone()))
.voice_id(voice_id.clone())
.output_format(OutputFormat::Pcm)
.send();
let visemes_fut = client
.synthesize_speech()
.engine(Engine::Neural)
.set_text(Some(text))
.voice_id(voice_id)
.speech_mark_types(SpeechMarkType::Viseme)
.output_format(OutputFormat::Json)
.send();
let (audio, visemes) = try_join(audio_fut, visemes_fut)
.await
.map_err(|e| SynthesizeError::Polly(e.into()))?;
let visemes = visemes
.audio_stream
.collect()
.await
.map_err(|e| SynthesizeError::Transmitting(e.into()))?
.to_vec();
let parsed: Vec<Viseme> = visemes
.lines()
.flat_map(|line| Ok::<Viseme, anyhow::Error>(serde_json::from_str::<Viseme>(&line?)?))
.collect();
Ok((parsed, audio.audio_stream))
}
|