Green Slide – Wasserbaun Water Park Williamsburg

Wasserbaun Water Park Resort Williamsburg IA at the Ramada Hotel. http://ramadawasserbahn.com/

GoPro Hero Black (Amazon Affiliate)
US: https://amzn.to/2LnPOPX
UK: https://amzn.to/3bxotWo
CA: https://amzn.to/2WrxUCs
ES: https://amzn.to/2YYmwQ6
FR: https://amzn.to/3fKo99J
IT: https://amzn.to/2SZ4nxP
DE: https://amzn.to/35UNpG7
IN: https://amzn.to/3esyjuj

SanDisk Extreme microSD (Amazon Affiliate)
US: https://amzn.to/2y0H4fI
UK: https://amzn.to/3cpQ0tS
CA: https://amzn.to/360Rh8w
ES: https://amzn.to/3bpY6l8
FR: https://amzn.to/2YYn5cG
IT: https://amzn.to/3boOTti
DE: https://amzn.to/2SZ5wp7
IN: https://amzn.to/2BcvVJY

GoPole Bobber Floating Hand Grip
US: https://amzn.to/2YVlHY3
UK: https://amzn.to/2LkbNY4
CA: https://amzn.to/2yPWyU7
ES: https://amzn.to/2SYCK7L (similar)
FR: https://amzn.to/360RQPG
IT: https://amzn.to/3fI7RhW
DE: https://amzn.to/2WS8Nr4 (ähnlich)
IN: https://amzn.to/3eto09h

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://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