Spaces:
Sleeping
Sleeping
File size: 21,672 Bytes
97a4ae5 e1de00e 7f7357a e1de00e 54ccef4 a905808 7f7357a e1de00e 7f7357a 54ccef4 e1de00e a905808 e1de00e a905808 e1de00e 54ccef4 b45f016 e1de00e b45f016 b9d6018 b45f016 e1de00e b9d6018 b45f016 b9d6018 b45f016 e1de00e b45f016 e1de00e b45f016 e1de00e 97a4ae5 54ccef4 b45f016 54ccef4 b9d6018 ed08f62 54ccef4 e1de00e 54ccef4 ed08f62 54ccef4 e1de00e 54ccef4 e1de00e 54ccef4 e1de00e 54ccef4 b9d6018 e1de00e b9d6018 e1de00e b9d6018 e1de00e b9d6018 e1de00e b9d6018 e1de00e b9d6018 e1de00e b9d6018 e1de00e 54ccef4 e1de00e 54ccef4 17cb251 e1de00e 54ccef4 e1de00e b9d6018 e1de00e 97a4ae5 e1de00e a905808 b45f016 7f7357a b45f016 7f7357a b45f016 ed08f62 7f7357a b45f016 7f7357a b9d6018 e1de00e 7f7357a |
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 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 |
import gradio as gr
from fastapi import FastAPI, WebSocket, WebSocketDisconnect
from fastapi.responses import JSONResponse, RedirectResponse
import asyncio
import json
import logging
from typing import Dict, List, Optional
import os
from datetime import datetime
import httpx
import websockets
from fastrtc import RTCComponent
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
class Config:
def __init__(self):
# URLs should not include http/https prefix as we add it contextually
self.hf_space_url = os.getenv("HF_SPACE_URL", "androidguy-speaker-diarization.hf.space")
self.render_url = os.getenv("RENDER_URL", "render-signal-audio.onrender.com")
self.default_threshold = float(os.getenv("DEFAULT_THRESHOLD", "0.7"))
self.default_max_speakers = int(os.getenv("DEFAULT_MAX_SPEAKERS", "4"))
self.max_speakers_limit = int(os.getenv("MAX_SPEAKERS_LIMIT", "8"))
config = Config()
class ConnectionManager:
"""Manage WebSocket connections"""
def __init__(self):
self.active_connections: List[WebSocket] = []
self.conversation_history: List[Dict] = []
async def connect(self, websocket: WebSocket):
await websocket.accept()
self.active_connections.append(websocket)
logger.info(f"Client connected. Total connections: {len(self.active_connections)}")
def disconnect(self, websocket: WebSocket):
if websocket in self.active_connections:
self.active_connections.remove(websocket)
logger.info(f"Client disconnected. Total connections: {len(self.active_connections)}")
async def send_personal_message(self, message: str, websocket: WebSocket):
try:
await websocket.send_text(message)
except Exception as e:
logger.error(f"Error sending message: {e}")
self.disconnect(websocket)
async def broadcast(self, message: str):
"""Send message to all connected clients"""
disconnected = []
for connection in self.active_connections:
try:
await connection.send_text(message)
except Exception as e:
logger.error(f"Error broadcasting to connection: {e}")
disconnected.append(connection)
# Clean up disconnected clients
for conn in disconnected:
self.disconnect(conn)
manager = ConnectionManager()
def create_gradio_app():
"""Create the Gradio interface"""
def get_client_js():
"""Return the client-side JavaScript"""
return f"""
<script>
class SpeakerDiarizationClient {{
constructor() {{
this.ws = null;
this.mediaStream = null;
this.mediaRecorder = null;
this.isRecording = false;
this.baseUrl = 'https://{config.hf_space_url}';
this.wsUrl = 'wss://{config.hf_space_url}/ws';
this.renderUrl = 'wss://{config.render_url}/stream';
this.rtcComponentSynced = false;
}}
async startRecording() {{
try {{
this.isRecording = true;
this.updateStatus('connecting', 'Connecting to server...');
// Connect to WebSocket for transcription updates
await this.connectWebSocket();
// Let the RTCComponent handle the audio streaming
// This will be handled by Gradio's WebRTC component
this.updateStatus('connected', 'Connected and listening');
}} catch (error) {{
console.error('Error starting recording:', error);
this.updateStatus('error', `Failed to start: ${{error.message}}`);
}}
}}
async connectWebSocket() {{
return new Promise((resolve, reject) => {{
// Only connect to the conversation updates WebSocket
this.ws = new WebSocket('wss://{config.hf_space_url}/ws_transcription');
this.ws.onopen = () => {{
console.log('WebSocket connected for transcription updates');
resolve();
}};
this.ws.onmessage = (event) => {{
try {{
const data = JSON.parse(event.data);
this.handleServerMessage(data);
}} catch (e) {{
console.error('Error parsing message:', e);
}}
}};
this.ws.onerror = (error) => {{
console.error('WebSocket error:', error);
reject(error);
}};
this.ws.onclose = () => {{
console.log('WebSocket closed');
if (this.isRecording) {{
// Try to reconnect after a delay
setTimeout(() => this.connectWebSocket(), 3000);
}}
}};
}});
}}
handleServerMessage(data) {{
switch(data.type) {{
case 'transcription':
this.updateConversation(data.conversation_html);
break;
case 'speaker_update':
this.updateStatus('connected', `Active: ${{data.speaker}}`);
break;
case 'error':
this.updateStatus('error', data.message);
break;
case 'status':
this.updateStatus(data.status, data.message);
break;
}}
}}
stopRecording() {{
this.isRecording = false;
if (this.mediaRecorder && this.mediaRecorder.state !== 'inactive') {{
this.mediaRecorder.stop();
}}
if (this.mediaStream) {{
this.mediaStream.getTracks().forEach(track => track.stop());
this.mediaStream = null;
}}
if (this.ws) {{
this.ws.close();
this.ws = null;
}}
this.updateStatus('disconnected', 'Recording stopped');
}}
async clearConversation() {{
try {{
const response = await fetch(`${{this.baseUrl}}/clear`, {{
method: 'POST'
}});
if (response.ok) {{
this.updateConversation('<i>Conversation cleared. Start speaking...</i>');
}}
}} catch (error) {{
console.error('Error clearing conversation:', error);
}}
}}
updateConversation(html) {{
const elem = document.getElementById('conversation');
if (elem) {{
elem.innerHTML = html;
elem.scrollTop = elem.scrollHeight;
}}
}}
updateStatus(status, message = '') {{
const statusText = document.getElementById('status-text');
const statusIcon = document.getElementById('status-icon');
if (!statusText || !statusIcon) return;
const colors = {{
'connected': '#4CAF50',
'connecting': '#FFC107',
'disconnected': '#9E9E9E',
'error': '#F44336',
'warning': '#FF9800'
}};
const labels = {{
'connected': 'Connected',
'connecting': 'Connecting...',
'disconnected': 'Disconnected',
'error': 'Error',
'warning': 'Warning'
}};
statusText.textContent = message ? `${{labels[status]}}: ${{message}}` : labels[status];
statusIcon.style.backgroundColor = colors[status] || '#9E9E9E';
}}
}}
// Global client instance
window.diarizationClient = new SpeakerDiarizationClient();
// Button event handlers
function startListening() {{
window.diarizationClient.startRecording();
}}
function stopListening() {{
window.diarizationClient.stopRecording();
}}
function clearConversation() {{
window.diarizationClient.clearConversation();
}}
// Initialize on page load
document.addEventListener('DOMContentLoaded', () => {{
window.diarizationClient.updateStatus('disconnected');
}});
</script>
"""
with gr.Blocks(
title="Real-time Speaker Diarization",
theme=gr.themes.Soft(),
css="""
.status-indicator { margin: 10px 0; }
.conversation-display {
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
padding: 20px;
min-height: 400px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow-y: auto;
}
"""
) as demo:
# Inject client-side JavaScript
gr.HTML(get_client_js())
# Header
gr.Markdown("# π€ Real-time Speaker Diarization")
gr.Markdown("Advanced speech recognition with automatic speaker identification")
# Status indicator
gr.HTML(f"""
<div class="status-indicator">
<span id="status-text" style="color:#666;">Ready to connect</span>
<span id="status-icon" style="width:12px; height:12px; display:inline-block;
background-color:#9E9E9E; border-radius:50%; margin-left:8px;"></span>
</div>
""")
with gr.Row():
with gr.Column(scale=2):
# Conversation display
gr.HTML(f"""
<div id="conversation" class="conversation-display">
<i>Click 'Start Listening' to begin real-time transcription...</i>
</div>
""")
# WebRTC component (hidden, but functional)
webrtc = RTCComponent(
url=f"wss://{config.render_url}/stream",
streaming=False,
modality="audio",
mode="send-receive",
audio_html_attrs="style='display:none;'", # Hide the audio element
visible=True, # Make component visible but hide audio element
elements=["video", "start", "stop"] # Don't include audio element
)
# Control buttons
with gr.Row():
start_btn = gr.Button(
"βΆοΈ Start Listening",
variant="primary",
size="lg",
elem_id="start-btn"
)
stop_btn = gr.Button(
"βΉοΈ Stop",
variant="stop",
size="lg",
elem_id="stop-btn"
)
clear_btn = gr.Button(
"ποΈ Clear",
variant="secondary",
size="lg",
elem_id="clear-btn"
)
# WebRTC control functions
def start_webrtc():
return {
webrtc: gr.update(streaming=True)
}
def stop_webrtc():
return {
webrtc: gr.update(streaming=False)
}
# Connect buttons to both WebRTC and JavaScript functions
start_btn.click(fn=start_webrtc, outputs=[webrtc], js="startListening()")
stop_btn.click(fn=stop_webrtc, outputs=[webrtc], js="stopListening()")
clear_btn.click(fn=None, js="clearConversation()")
with gr.Column(scale=1):
gr.Markdown("## βοΈ Settings")
threshold_slider = gr.Slider(
minimum=0.3,
maximum=0.9,
step=0.05,
value=config.default_threshold,
label="Speaker Change Sensitivity",
info="Lower = more sensitive to speaker changes"
)
max_speakers_slider = gr.Slider(
minimum=2,
maximum=config.max_speakers_limit,
step=1,
value=config.default_max_speakers,
label="Maximum Speakers"
)
# Instructions
gr.Markdown("""
## π How to Use
1. **Start Listening** - Grant microphone access
2. **Speak** - System transcribes and identifies speakers
3. **Stop** when finished
4. **Clear** to reset conversation
## π¨ Speaker Colors
- π΄ Speaker 1 - π’ Speaker 2 - π΅ Speaker 3 - π‘ Speaker 4
- β Speaker 5 - π£ Speaker 6 - π€ Speaker 7 - π Speaker 8
""")
return demo
def create_fastapi_app():
"""Create the FastAPI backend"""
app = FastAPI(title="Speaker Diarization API")
@app.websocket("/ws")
async def websocket_endpoint(websocket: WebSocket):
await manager.connect(websocket)
try:
while True:
# Receive audio data
data = await websocket.receive_bytes()
# Process audio data here
# This is where you'd integrate your actual speaker diarization model
result = await process_audio_chunk(data)
# Send result back to client
await manager.send_personal_message(
json.dumps(result),
websocket
)
except WebSocketDisconnect:
manager.disconnect(websocket)
except Exception as e:
logger.error(f"WebSocket error: {e}")
manager.disconnect(websocket)
@app.post("/clear")
async def clear_conversation():
"""Clear the conversation history"""
manager.conversation_history.clear()
await manager.broadcast(json.dumps({
"type": "conversation_cleared"
}))
return {"status": "cleared"}
@app.get("/health")
async def health_check():
"""Health check endpoint"""
return {
"status": "healthy",
"timestamp": datetime.now().isoformat(),
"active_connections": len(manager.active_connections)
}
@app.get("/status")
async def get_status():
"""Get system status"""
return {
"status": "online",
"connections": len(manager.active_connections),
"conversation_length": len(manager.conversation_history)
}
return app
async def process_audio_chunk(audio_data: bytes) -> dict:
"""
Process audio chunk by forwarding to the backend.
This function is only used for the direct WebSocket API, not for the WebRTC component.
Note: In production, you should primarily use the WebRTC component which has its own
audio processing flow through the Render backend.
"""
try:
# Connect to the Speaker Diarization backend via WebSocket
websocket_url = f"wss://{config.hf_space_url}/ws_inference"
logger.info(f"Forwarding audio to diarization backend at {websocket_url}")
async with websockets.connect(websocket_url) as websocket:
# Send audio data
await websocket.send(audio_data)
# Receive the response
response = await websocket.recv()
# Parse the response
try:
result = json.loads(response)
# Add to conversation history if it's a transcription
if result.get("type") == "transcription" or result.get("type") == "conversation_update":
if "conversation_html" in result:
manager.conversation_history.append({
"timestamp": datetime.now().isoformat(),
"html": result["conversation_html"]
})
return result
except json.JSONDecodeError:
logger.error(f"Invalid JSON response: {response}")
return {
"type": "error",
"error": "Invalid response from backend",
"timestamp": datetime.now().isoformat()
}
except Exception as e:
logger.exception(f"Error processing audio chunk: {e}")
return {
"type": "error",
"error": str(e),
"timestamp": datetime.now().isoformat()
}
# Create both apps
fastapi_app = create_fastapi_app()
gradio_app = create_gradio_app()
# Root redirect - keep this simple
@fastapi_app.get("/")
def root():
"""Redirect root to the Gradio UI"""
return RedirectResponse(url="/ui/") # Note the trailing slash is important
# Mount Gradio app to FastAPI - use correct mounting method for Gradio
try:
# For newer Gradio versions
fastapi_app.mount("/ui", gradio_app)
except Exception as e:
# Try alternative mounting method
try:
from gradio.routes import mount_gradio_app
app = mount_gradio_app(fastapi_app, gradio_app, path="/ui")
logger.info("Mounted Gradio app using mount_gradio_app")
except Exception as e2:
logger.error(f"Failed to mount Gradio app: {e2}")
# As a last resort, try the simplest mounting
fastapi_app.mount("/ui", gradio_app.app)
# Add diagnostic endpoints to check connections
@fastapi_app.get("/check-backend")
async def check_backend():
"""Check connection to the Render backend"""
try:
# Check if we can connect to the WebSocket endpoint on Render
websocket_url = f"wss://{config.render_url}/stream"
logger.info(f"Checking connection to Render backend at {websocket_url}")
# Don't actually connect, just return status
return {
"status": "configured",
"render_backend_url": websocket_url,
"hf_space_url": f"wss://{config.hf_space_url}/ws_inference",
"rtc_component_config": {
"url": f"wss://{config.render_url}/stream",
"modality": "audio",
"mode": "send-receive"
}
}
except Exception as e:
logger.error(f"Error checking backend: {e}")
return {
"status": "error",
"error": str(e)
}
# Log configuration on startup
@fastapi_app.on_event("startup")
async def log_configuration():
logger.info(f"Starting UI with configuration:")
logger.info(f"- HF Space URL: {config.hf_space_url}")
logger.info(f"- Render URL: {config.render_url}")
logger.info(f"- WebRTC URL: wss://{config.render_url}/stream")
logger.info(f"- WebSocket URL: wss://{config.hf_space_url}/ws_inference")
logger.info("Note: Audio will be streamed through the Render backend using WebRTC")
# Test connection to Render backend
try:
async with websockets.connect(f"wss://{config.render_url}/stream", ping_interval=None, ping_timeout=None) as ws:
logger.info("Successfully connected to Render backend WebSocket")
except Exception as e:
logger.error(f"Failed to connect to Render backend: {e}")
# Test connection to HF Space backend
try:
async with websockets.connect(f"wss://{config.hf_space_url}/ws_inference", ping_interval=None, ping_timeout=None) as ws:
logger.info("Successfully connected to HF Space WebSocket")
except Exception as e:
logger.error(f"Failed to connect to HF Space: {e}")
if __name__ == "__main__":
import uvicorn
# Use the correct port for Hugging Face Spaces (7860)
port = int(os.environ.get("PORT", 7860))
logger.info(f"Starting server on port {port}")
uvicorn.run(fastapi_app, host="0.0.0.0", port=port) |