forked from tanmayi2/monet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend.py
25 lines (19 loc) · 826 Bytes
/
backend.py
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
import websockets
import asyncio
import json
import base64
async def process_request(websocket, path):
data = await websocket.recv()
received_data = json.loads(data)
# Extract and decode the files
audio_data = base64.b64decode(received_data["audio_data"])
file_data = base64.b64decode(received_data["file_data"])
# Now handle the files (e.g., pass to AI model or process)
print("Received audio and file data")
print(f"Audio data size: {len(audio_data)} bytes")
print(f"File data size: {len(file_data)} bytes")
# Send a response back to the frontend
await websocket.send("Files received and processed!")
start_server = websockets.serve(process_request, "localhost", 8000)
asyncio.get_event_loop().run_until_complete(start_server)
asyncio.get_event_loop().run_forever()