Skip to content

Instantly share code, notes, and snippets.

@vo
Last active May 22, 2020 09:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vo/8266aeedf645b75f9632d07bffc73d33 to your computer and use it in GitHub Desktop.
Save vo/8266aeedf645b75f9632d07bffc73d33 to your computer and use it in GitHub Desktop.
Raspberry Pi 3 B+ Auvidea B101 Gstreamer Pipeline Example
#!/bin/bash
gst-launch-1.0 udpsrc port=5801 ! 'application/x-rtp,payload=96,encoding-name=H264,clock-rate=(int)90000' ! rtph264depay ! h264parse ! avdec_h264 ! videoconvert ! autovideosink sync=false
#!/bin/bash
sudo modprobe bcm2835-v4l2
gst-launch-1.0 v4l2src device=/dev/video0 ! 'video/x-raw,framerate=15/1,width=1280,height=720' ! omxh264enc ! rtph264pay config-interval=1 pt=96 ! udpsink host=10.0.1.130 port=5801
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment