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://amzn.to/3dYF1bq
Raspberry Pi (Amazon Affiliate)
US: https://amzn.to/2LpyVob
UK: https://amzn.to/2Z2inKX
CA: https://amzn.to/2y5yAUA
ES: https://amzn.to/3fSDhSS
FR: https://amzn.to/2LpurxT
IT: https://amzn.to/2T2VZNu
DE: https://amzn.to/3buHRmQ
IN: https://amzn.to/2B3PGTN
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