Python And Websockets - Send Audio Stream
I have set up a socket server and send the messages to all connected clients. I'm sending data from python to javascript. I want to send my microphone input to all clients listenin
Solution 1:
Try this:
s.send(pickle.dumps(frames), opcode=websocket.ABNF.OPCODE_BINARY)
Post a Comment for "Python And Websockets - Send Audio Stream"