Spaces:
Runtime error
Runtime error
File size: 14,006 Bytes
4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 cc3d1d7 4e8fb20 cc3d1d7 4e8fb20 cc3d1d7 4e8fb20 cc3d1d7 4e8fb20 9899af7 cc3d1d7 4e8fb20 9899af7 4e8fb20 cc3d1d7 4e8fb20 cc3d1d7 4e8fb20 cc3d1d7 4e8fb20 9899af7 4e8fb20 1926418 4e8fb20 9899af7 4e8fb20 9899af7 4e8fb20 a28dc76 4e8fb20 bf1f2b6 a28dc76 4e8fb20 | 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 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 | import asyncio
import os
import re
import shutil
from concurrent.futures import ThreadPoolExecutor
from typing import Any
import numpy as np
from config import BASE_DIR, HF_WHISPER_MODEL, STT_BACKEND, WHISPER_MODEL
from state import CoachState
SAMPLE_RATE = 16000
CHUNK_SECONDS = 4
OVERLAP_SECONDS = 0.75
CHUNK_SAMPLES = int(CHUNK_SECONDS * SAMPLE_RATE)
OVERLAP_SAMPLES = int(OVERLAP_SECONDS * SAMPLE_RATE)
QUEUE_MAX_SIZE = 3
SILENCE_RMS_THRESHOLD = 0.003
QUESTION_PAUSE_SECONDS = 1.5
executor = ThreadPoolExecutor(max_workers=2)
_asr_pipeline = None
async def audio_node(state: CoachState) -> CoachState:
if "audio_queue" not in state:
state["audio_queue"] = asyncio.Queue(maxsize=QUEUE_MAX_SIZE)
return state
async def enqueue_audio(audio_queue: asyncio.Queue, chunk: Any) -> None:
await audio_queue.put(chunk)
def get_input_device() -> int | None:
try:
import sounddevice as sd
devices = sd.query_devices()
except Exception:
return None
for index, device in enumerate(devices):
name = str(device.get("name", ""))
max_inputs = int(device.get("max_input_channels", 0))
if "BlackHole" in name and max_inputs > 0:
return index
return None
class LiveAudioTranscriber:
def __init__(self, model: str = WHISPER_MODEL):
self.model = model
self.audio_queue: asyncio.Queue[np.ndarray] = asyncio.Queue(maxsize=QUEUE_MAX_SIZE)
self.stop_event = asyncio.Event()
self.capture_task: asyncio.Task | None = None
self.stream_id = 0
async def start(self) -> None:
if self.capture_task and not self.capture_task.done():
await self.stop()
self.stream_id += 1
self.stop_event = asyncio.Event()
self.audio_queue = asyncio.Queue(maxsize=QUEUE_MAX_SIZE)
device_index = get_input_device()
self.capture_task = asyncio.create_task(
capture_audio(
audio_queue=self.audio_queue,
stop_event=self.stop_event,
device_index=device_index,
)
)
async def stop(self) -> None:
self.stop_event.set()
if self.capture_task:
try:
await asyncio.wait_for(self.capture_task, timeout=2.0)
except asyncio.TimeoutError:
self.capture_task.cancel()
await asyncio.gather(self.capture_task, return_exceptions=True)
self.capture_task = None
drain_queue(self.audio_queue)
async def transcript_stream(self):
stream_id = self.stream_id
stop_event = self.stop_event
audio_queue = self.audio_queue
transcript = ""
last_text_at = asyncio.get_running_loop().time()
last_pause_transcript = ""
while not stop_event.is_set() and stream_id == self.stream_id:
try:
chunk = await asyncio.wait_for(audio_queue.get(), timeout=1.0)
except asyncio.TimeoutError:
now = asyncio.get_running_loop().time()
pause_seconds = now - last_text_at
if transcript and transcript != last_pause_transcript and pause_seconds >= QUESTION_PAUSE_SECONDS:
last_pause_transcript = transcript
yield transcript, True, pause_seconds
continue
try:
text = await transcribe_chunk(chunk, model=self.model)
except Exception as exc:
text = f"[live transcription error: {exc}]"
if text:
transcript = merge_chunk_text(transcript, text)
last_text_at = asyncio.get_running_loop().time()
last_pause_transcript = ""
yield transcript, False, 0.0
async def capture_audio(
audio_queue: asyncio.Queue[np.ndarray],
stop_event: asyncio.Event,
device_index: int | None = None,
) -> None:
try:
import sounddevice as sd
except Exception as exc:
raise RuntimeError(
"sounddevice is required for live audio capture. Install dependencies with "
"`python3 -m pip install -r requirements.txt`."
) from exc
loop = asyncio.get_running_loop()
buffer: list[float] = []
def callback(indata, frames, time, status):
if status:
return
buffer.extend(indata[:, 0].tolist())
while len(buffer) >= CHUNK_SAMPLES:
chunk = np.array(buffer[:CHUNK_SAMPLES], dtype=np.float32)
buffer[:] = buffer[CHUNK_SAMPLES - OVERLAP_SAMPLES :]
if is_silent(chunk):
continue
loop.call_soon_threadsafe(enqueue_chunk_nowait, audio_queue, chunk)
with sd.InputStream(
samplerate=SAMPLE_RATE,
channels=1,
dtype="float32",
device=device_index,
callback=callback,
blocksize=1024,
):
while not stop_event.is_set():
await asyncio.sleep(0.1)
def enqueue_chunk_nowait(audio_queue: asyncio.Queue[np.ndarray], chunk: np.ndarray) -> None:
if audio_queue.full():
try:
audio_queue.get_nowait()
except asyncio.QueueEmpty:
pass
audio_queue.put_nowait(chunk)
def drain_queue(audio_queue: asyncio.Queue[np.ndarray]) -> None:
while True:
try:
audio_queue.get_nowait()
except asyncio.QueueEmpty:
break
async def transcribe_chunk(audio: np.ndarray, model: str = WHISPER_MODEL) -> str:
if audio.size == 0 or is_silent(audio):
return ""
loop = asyncio.get_running_loop()
result = await loop.run_in_executor(
executor,
lambda: _transcribe_audio_array_sync(
audio,
model,
{
"language": "en",
"temperature": 0.0,
"condition_on_previous_text": False,
"compression_ratio_threshold": 1.8,
"logprob_threshold": -0.6,
"no_speech_threshold": 0.35,
},
),
)
return "" if is_repetitive_hallucination(result) else result
def is_silent(audio: np.ndarray, threshold: float = SILENCE_RMS_THRESHOLD) -> bool:
if audio.size == 0:
return True
rms = float(np.sqrt(np.mean(np.square(audio.astype(np.float32)))))
return rms < threshold
def merge_chunk_text(existing: str, incoming: str) -> str:
existing = " ".join(existing.split()).strip()
incoming = " ".join(incoming.split()).strip()
if not existing:
return incoming
if not incoming:
return existing
if incoming.lower().startswith(existing.lower()):
return incoming
if existing.lower().endswith(incoming.lower()):
return existing
existing_lower = existing.lower()
incoming_lower = incoming.lower()
max_overlap = min(len(existing), len(incoming), 120)
for size in range(max_overlap, 4, -1):
if existing_lower.endswith(incoming_lower[:size]):
return f"{existing}{incoming[size:]}".strip()
return f"{existing} {incoming}".strip()
def is_repetitive_hallucination(text: str) -> bool:
import re
words = re.findall(r"[a-zA-Z']+", text.lower())
if len(words) < 8:
return False
unique_words = set(words)
if len(unique_words) <= 2:
return True
most_common = max(words.count(word) for word in unique_words)
return most_common / len(words) >= 0.65
async def transcribe_audio_file(
audio_path: str,
model: str = WHISPER_MODEL,
backend: str | None = None,
hf_model: str = HF_WHISPER_MODEL,
) -> str:
if not audio_path:
return ""
return await asyncio.to_thread(_transcribe_audio_file_sync, audio_path, model, backend, hf_model)
async def transcribe_audio_array(
sample_rate: int,
audio: np.ndarray,
model: str = WHISPER_MODEL,
backend: str | None = None,
hf_model: str = HF_WHISPER_MODEL,
**decode_options: Any,
) -> str:
if audio.size == 0:
return ""
waveform = prepare_audio_array(sample_rate, audio)
return await asyncio.to_thread(
_transcribe_audio_array_sync,
waveform,
model,
decode_options,
backend,
hf_model,
)
async def warmup_transcriber(
model: str = WHISPER_MODEL,
backend: str | None = None,
hf_model: str = HF_WHISPER_MODEL,
) -> None:
await asyncio.to_thread(_warmup_transcriber_sync, model, backend, hf_model)
def _warmup_transcriber_sync(
model: str,
backend: str | None = None,
hf_model: str = HF_WHISPER_MODEL,
) -> None:
if (backend or STT_BACKEND) == "transformers":
get_asr_pipeline(hf_model)
return
import mlx_whisper
waveform = np.zeros(SAMPLE_RATE, dtype=np.float32)
mlx_whisper.transcribe(waveform, path_or_hf_repo=model, verbose=False)
def _transcribe_audio_file_sync(
audio_path: str,
model: str,
backend: str | None = None,
hf_model: str = HF_WHISPER_MODEL,
) -> str:
if (backend or STT_BACKEND) == "transformers":
return _transcribe_with_transformers(audio_path, hf_model)
try:
ensure_ffmpeg_on_path()
import mlx_whisper
result = mlx_whisper.transcribe(audio_path, path_or_hf_repo=model)
if isinstance(result, dict):
return clean_transcript_text(str(result.get("text", "")))
return clean_transcript_text(str(result))
except Exception as exc:
return f"[transcription unavailable: {exc}]"
def _transcribe_audio_array_sync(
waveform: np.ndarray,
model: str,
decode_options: dict[str, Any] | None = None,
backend: str | None = None,
hf_model: str = HF_WHISPER_MODEL,
) -> str:
if (backend or STT_BACKEND) == "transformers":
return _transcribe_with_transformers(
{"array": waveform.astype(np.float32), "sampling_rate": 16000},
hf_model,
)
try:
import mlx_whisper
result = mlx_whisper.transcribe(
waveform,
path_or_hf_repo=model,
verbose=False,
**(decode_options or {}),
)
if isinstance(result, dict):
return clean_transcript_text(str(result.get("text", "")))
return clean_transcript_text(str(result))
except Exception as exc:
return f"[transcription unavailable: {exc}]"
def _transcribe_with_transformers(audio_input: Any, model: str) -> str:
try:
pipeline = get_asr_pipeline(model)
result = pipeline(
audio_input,
chunk_length_s=20,
stride_length_s=3,
generate_kwargs={
"language": "english",
"task": "transcribe",
"num_beams": 1,
"temperature": 0.0,
},
)
if isinstance(result, dict):
return clean_transcript_text(str(result.get("text", "")))
return clean_transcript_text(str(result))
except Exception as exc:
return f"[transcription unavailable: {exc}]"
def clean_transcript_text(text: str) -> str:
text = re.sub(r"\s+", " ", text).strip()
text = normalize_percentage_phrases(text)
text = remove_adjacent_numeric_stutters(text)
text = re.sub(r"\b(\w+)(?:\s+\1\b)+", r"\1", text, flags=re.IGNORECASE)
text = re.sub(r"\b(\d+)(?:\s+\1\b)+", r"\1", text)
return text
def normalize_percentage_phrases(text: str) -> str:
text = re.sub(r"\b(\d+(?:\.\d+)?)\s*(?:percent|percentage)\b", r"\1%", text, flags=re.IGNORECASE)
text = re.sub(r"\b(\d+(?:\.\d+)?)\s+%\b", r"\1%", text)
return text
def remove_adjacent_numeric_stutters(text: str) -> str:
tokens = text.split()
cleaned: list[str] = []
for token in tokens:
current_number = normalized_number_token(token)
previous_number = normalized_number_token(cleaned[-1]) if cleaned else ""
if current_number and current_number == previous_number:
cleaned[-1] = prefer_percentage_token(cleaned[-1], token)
continue
cleaned.append(token)
return " ".join(cleaned)
def normalized_number_token(token: str) -> str:
match = re.fullmatch(r"(\d+(?:\.\d+)?)(?:%|[.,!?;:]*)", token.strip())
return match.group(1) if match else ""
def prefer_percentage_token(left: str, right: str) -> str:
if "%" in right and "%" not in left:
return right
return left
def get_asr_pipeline(model: str):
global _asr_pipeline
if _asr_pipeline is None:
import torch
from transformers import pipeline
_asr_pipeline = pipeline(
"automatic-speech-recognition",
model=model,
device=-1,
torch_dtype=torch.float32,
)
return _asr_pipeline
def prepare_audio_array(sample_rate: int, audio: np.ndarray) -> np.ndarray:
if audio.ndim > 1:
audio = audio.mean(axis=1)
if np.issubdtype(audio.dtype, np.integer):
audio = audio.astype(np.float32) / np.iinfo(audio.dtype).max
else:
audio = audio.astype(np.float32)
if sample_rate != 16000:
from scipy.signal import resample_poly
gcd = np.gcd(sample_rate, 16000)
audio = resample_poly(audio, 16000 // gcd, sample_rate // gcd).astype(np.float32)
return audio
def ensure_ffmpeg_on_path() -> None:
if shutil.which("ffmpeg"):
return
try:
import imageio_ffmpeg
ffmpeg = imageio_ffmpeg.get_ffmpeg_exe()
bin_dir = BASE_DIR / ".runtime" / "bin"
bin_dir.mkdir(parents=True, exist_ok=True)
shim = bin_dir / "ffmpeg"
if not shim.exists():
shim.symlink_to(ffmpeg)
os.environ["PATH"] = f"{bin_dir}{os.pathsep}{os.environ.get('PATH', '')}"
except Exception as exc:
raise RuntimeError(
"ffmpeg is required for audio decoding. Install it with `brew install ffmpeg` "
"or `python3 -m pip install imageio-ffmpeg`."
) from exc
|