I've done this to watch films on the laptop while hearing audio from the computer speakers :D
Made with python, sockets & love.
- Installed Soundflower driver on the sender device. For other platforms, it would also work, if you route your computer output to the "emulated input device".
- Installed PyAudio package on both (sender & receiver) devices.
- receiver.py works as the server. Launch it on the receiver machine first:
python3 receiver.py YOUR_SERVER_IP YOUR_PORT
- sender.py works as the client that sends audio. Launch it on the sender machine:
python3 sender.py YOUR_SERVER_IP YOUR_PORT
- (Optional) You can try set
CHANNELS
to 1 if you want better performance. (Do it in bothsender.py
andreceiver.py
). Also, play with theBUFFER_SIZE
(receiver.py
) to see what latency is good for you. I prefer 16384 or 8192.
If everything is OK -> you should hear the audio from the sender device on the receiver device.
It simply sends stream of audio bytes with the sockets. The wireless connection is by definition weeker than wired, therefore sometimes you would hear the lags in audio, because the algorithm just skips bytes, if it lost some and buffer started overflowing.
Hope you enjoy it) Have Fun!