Raspberry Pi/Camera streaming

From Wiki
< Raspberry Pi
Revision as of 18:15, 19 January 2018 by Marcluer (talk | contribs)

Raspi with camera

raspivid -a 12 -t 0 -w 1280 -h 720 -hf -ih -fps 30 -o udp://192.168.1.10:5000

-a 12        # annotate
-t 0         # timeout disabled (default=5s)
-w 1280      # width
-h 720       # height
-hf          # horizontal flip
#-vf         # vertical flip
-ih          # insert inline headers to stream
-fps 30      # frames per second
-0 udp://192.168.1.10:5000    # send stream to ip:port


Raspi with monitor

omxplayer -n -1 --win 384,336,1920,1200 udp://@:5000