Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #150

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,17 +152,17 @@ If you only use USB cameras, some may not be needed but for simplicity I'll inst
```
sudo apt install git gstreamer1.0-plugins-base \
gstreamer1.0-plugins-bad gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly \
gstreamer1.0-tools libgstreamer1.0-dev libgstreamer1.0-0-dbg \
libgstreamer1.0-0 libgstrtspserver-1.0.0 \
gstreamer1.0-tools libgstreamer1.0-dev \
libgstreamer1.0-0 libgstrtspserver-1.0-dev libgstrtspserver-1.0-0 \
libgstreamer-plugins-base1.0-dev gtk-doc-tools \
gstreamer1.0-omx-rpi gstreamer1.0-omx
gstreamer1.0-omx-generic gstreamer1.0-omx-generic-config
```

You can check it is verson 1.14 with ```gst-launch-1.0 --version```

Then install Python Binding, GIR Files (GObjectIntrospection Repository - makes APIs from C libraries)
```
sudo apt-get install python-gi gir1.2-gst-plugins-base-1.0 gir1.2-gst-rtsp-server-1.0
sudo apt-get install python3-gi gir1.2-gst-plugins-base-1.0 gir1.2-gst-rtsp-server-1.0
```

##### 5.c.1b - INSTALL GST-RPICAMSRC FROM SOURCE
Expand All @@ -174,6 +174,9 @@ Currently Raspberry Pi OS installs GStreamer 1.14 which does not include the 'rp
cd ..
git clone https://github.com/thaytan/gst-rpicamsrc.git
cd gst-rpicamsrc
sudo apt install autoreconf
sudo apt-get install libtool
sudo apt install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev
./autogen.sh
make
sudo make install
Expand Down