Last active
May 22, 2020 09:47
-
-
Save vo/8266aeedf645b75f9632d07bffc73d33 to your computer and use it in GitHub Desktop.
Raspberry Pi 3 B+ Auvidea B101 Gstreamer Pipeline Example
This file contains 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/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 |
This file contains 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/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