Netcat Pulseaudio

Send/transfer/stream Pulseaudio over network

If you need to simply send Pulseaudio over the network to another computer without using multicast/rtp, you can just netcat it!

Server

======

Run this command on the server (substitute another port number if you want)::

nc -l -p 17634 | pacat

Client

======

Run this command on the client (replace the IP address with the server's and make sure the port is the same as the server's)::

parec | nc 192.168.1.108 17634


Conclusion

==========

That's it! This method seems to work better and doesn't stutter on wireless networks.