Created
May 1, 2014 18:39
-
-
Save furkantektas/48cb3054007dd7a8413a to your computer and use it in GitHub Desktop.
Raspberry PI Camera | Infinite Video Stream {rtsp|25fps|640x480}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Streaming Url: rtsp://RASPBERRYIP:8080/stream.sdp/ | |
| raspivid -o - -t 0 -w 640 -h 480 -fps 25 -n | cvlc -vvv stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8080/stream.sdp/}' :demux=h264 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment