Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save furkantektas/48cb3054007dd7a8413a to your computer and use it in GitHub Desktop.
Save furkantektas/48cb3054007dd7a8413a to your computer and use it in GitHub Desktop.
Raspberry PI Camera | Infinite Video Stream {rtsp|25fps|640x480}
#!/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