I am trying to make a rtsp server that can catch a rtsp feed from a onvif camera and then redistribute this stream to everyone that connects to my server.
I created a new Ubuntu 64-bit vm on VMware Workstation using this iso: https://www.ubuntu.com/download/desktop/thank-you?version=18.04.1&architecture=amd64
I then installed ubuntu-desktop:
$ sudo apt-get update
$ sudo apt-get install ubuntu-desktop
$ reboot
I cloned the gst-rtsp-server from its github repository to a folder on my desktop:
$ cd Desktop
$ mkdir camSrv
$ cd camSrv
$ git clone https://github.com/GStreamer/gst-rtsp-server.git
I then installed the dependency referenced by this post:
$ sudo apt-get install autoconf -y
$ sudo apt-get install automake -y
$ sudo apt-get install autopoint -y
$ sudo apt-get install libtool -y
but when i try to build the gst-rtsp-server project, I keep getting errors...
I installed a bunch of other dependencies, but now I'm stuck at the error:
configure: No package 'gstreamer-1.0' found
configure: error: no gstreamer-1.0 >= 1.15.0.1 (GSTreamer) found
I can't find what i'm missing... all i want is to make the example mentioned in this post work for me...
/usr/include
and/usr/lib
directories and the second one installs stuff under the/usr/local/include
and/usr/local/lib
directories? (I'm kinda newb with linux...) – LoukMouk Nov 30 '18 at 16:21sudo apt-get install libgstrtspserver-1.0-dev gstreamer1.0-rtsp
) should install all files into/usr
(not/usr/local
). You can check withdpkg -L libgstrtspserver-1.0-dev
anddpkg -L gstreamer1.0-rtsp
. – N0rbert Nov 30 '18 at 20:16