I am using this script to install version 1.14 of GStreamer on a Raspberry Pi.
https://gist.github.com/Swap-File/d8511128930c93281f36f18d634f6748
I completely uninstall GStreamer from the pi before running the script.
The script clones gstreamer
and a bunch of other related repos (gst-plugins-base
gst-plugins-good
gst-plugins-bad
gst-plugins-ugly
gst-libav
gst-omx
gst-python
gst-rtsp-server
) checksout branch 1.14 and make installs them.The script completes with no issues.
After the script completes I check the version of GStreamer installed with
gst-launch-1.0 --version
It gives the output
gst-launch-1.0 version 1.14.2
GStreamer 1.10.4
Unknown package origin
My questions are:
- Why is there a mismatch between gst-launch-1.0 and GStreamer versions?
- How do I get gst-launch-1.0 to version 1.14?
PS: The aim of this exercise is to get the webrtcbin plugin working on a Pi.