$> ./rpi_stream_cam_netcat_client.sh
$> raspivid -vf -n -o - -t 0 -b 2000000 | nc 192.168.1.100 5777
Lunch OpenCV exemple, which reads the named pipe like regular h264 file
Wirelessly streaming a video from a Raspberry to a remote laptop
$> ./rpi_stream_cam_netcat_client.sh
$> raspivid -vf -n -o - -t 0 -b 2000000 | nc 192.168.1.100 5777
Lunch OpenCV exemple, which reads the named pipe like regular h264 file
Wirelessly streaming a video from a Raspberry to a remote laptop
| #!/bin/bash | |
| if [-p fifo264] | |
| then | |
| rm fifo264 | |
| fi | |
| mkfifo fifo264 | |
| nc -l -v -p 5777 > fifo264 |