erinaco/sensoren/camera.sh

8 lines
286 B
Bash
Raw Normal View History

2017-04-14 13:41:12 +02:00
#!/bin/bash
#Streamt ein Video auf Vaio
2017-04-16 22:27:42 +02:00
#/opt/vc/bin/raspivid --hflip --vflip -t 0 -o - | nc 192.168.178.30 5001
2017-04-14 13:41:12 +02:00
#Auf Vaio muss
# nc -l -p 5001 | mplayer -fps 31 -cache 1024 -
# ausgefuehert werden
2017-04-16 22:27:42 +02:00
/opt/vc/bin/raspivid -w 640 -h 480 --hflip --vflip -t 0 -o - | nc 192.168.178.30 5001