Browse Source

Merge pull request #5964 from DonLakeFlyer/READMEUpdate

Update gstreamer install instructions to work with Ubuntu 16.04
QGC4.4
Don Gagne 7 years ago committed by GitHub
parent
commit
890b0a5eef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/VideoStreaming/README.md

5
src/VideoStreaming/README.md

@ -35,7 +35,10 @@ gst-launch-1.0 udpsrc port=5600 caps='application/x-rtp, media=(string)video, cl @@ -35,7 +35,10 @@ gst-launch-1.0 udpsrc port=5600 caps='application/x-rtp, media=(string)video, cl
Use apt-get to install GStreamer 1.0
```
sudo apt-get install gstreamer1.0*
list=$(apt-cache --names-only search ^gstreamer1.0-* | awk '{ print $1 }' | grep -v gstreamer1.0-hybris)
```
```
sudo apt-get install $list
```
The build system is setup to use pkgconfig and it will find the necessary headers and libraries automatically.

Loading…
Cancel
Save