Stream Camera Board Video from One Raspberry Pi to Another

Raspbian setup: https://youtu.be/djOYldP3wFw

In this video, I stream video from the camera board from one Raspberry Pi to another using netcat (nc). I use avahi-daemon and avahi-autoipd to setup a network link between the Pis without using a DHCP server.

Raspberry Pi Case compatible with camera board (Amazon Affiliate)
US: https://amzlink.to/az0I4tfMQJGAe

Raspberry Pi (Amazon Affiliate)
➡️ Purchase here: https://amzlink.to/az0g1mNVmPoHn
UK: https://amzlink.to/az0PomlnEt5SC
CA: https://amzlink.to/az0DiN8Nn3a0q
ES: https://amzlink.to/az0EJBn77Kx6U
FR: https://amzlink.to/az0D9vAO9c6oj
IT: https://amzlink.to/az0IacDlkzUlJ
DE: https://amzlink.to/az0gJZ0joeiV5
IN: https://amzlink.to/az0EvJYL9uC71

Install Avahi on both Raspberry Pis
sudo apt install avahi-daemon
sudo apt install avahi-autoipd
Camera Setup
raspivid -o - -t 0 -n  | nc -l 3333
Viewer Setup Console 1
mkfifo stream.mp4
nc camera.local 3333 > stream.mp4
Viewer Setup Console 2
omxplayer stream.mp4