6 lines
171 B
Bash
Executable File
6 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
# RPI Camera
|
|
# 1280x800:30
|
|
# RTSP
|
|
raspivid -t 0 -n -w 1280 -h 720 -fps 15 -o - | cvlc -v stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8555/video}' :demux=h264
|