无法构建 gst-rtsp 服务器

无法构建 gst-rtsp 服务器

我正在尝试制作一个 rtsp 服务器,它可以从 onvif 摄像机捕获 rtsp 馈送,然后将该流重新分发给连接到我的服务器的每个人。

我使用这个 iso 在 VMware Workstation 上创建了一个新的 Ubuntu 64 位 vm: https://www.ubuntu.com/download/desktop/thank-you?version=18.04.1&architecture=amd64

然后我安装了 ubuntu-desktop:

$ sudo apt-get update
$ sudo apt-get install ubuntu-desktop
$ reboot

我将 gst-rtsp-server 从其 github 存储库克隆到我的桌面上的一个文件夹中:

$ cd Desktop
$ mkdir camSrv
$ cd camSrv
$ git clone https://github.com/GStreamer/gst-rtsp-server.git

然后我安装了引用的依赖项邮政:

$ sudo apt-get install autoconf -y
$ sudo apt-get install automake -y
$ sudo apt-get install autopoint -y
$ sudo apt-get install libtool -y

但是当我尝试构建 gst-rtsp-server 项目时,我一直收到错误...

我安装了一堆其他依赖项,但现在出现错误:

configure: No package 'gstreamer-1.0' found
configure: error: no gstreamer-1.0 >= 1.15.0.1 (GSTreamer) found

我找不到我所缺少的东西......我想要的只是制作中提到的例子这个帖子为我工作……

答案1

看起来我们不需要自己编译任何东西。
我们可以简单地从以下位置安装所需的开发包:gst-rtsp-server1.0源码包

sudo apt-get install libgstrtspserver-1.0-dev gstreamer1.0-rtsp

然后您就可以按计划使用它了。

如果您确定要这么做,以下是手动编译方法。


安装开发工具:

sudo apt-get install git build-essential autoconf automake autopoint libtool pkg-config -y
sudo apt-get install gtk-doc-tools libglib2.0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev -y
sudo apt-get install checkinstall

libgstreamer1.0-dev以上注释)。

克隆存储库:

git clone https://github.com/GStreamer/gst-rtsp-server.git
cd gst-rtsp-server/

但是 Ubuntu 18.04 LTS 有旧版本的 GStreamer 库(1.14.0),所以我们需要检出以前的版本然后进行编译:

git checkout 1.13.91
./autogen.sh
./configure
make
sudo checkinstall make install # enter 3 and fill *Version* field with 1.13.91

注意:您可以sudo make install在最后阶段使用,但checkinstall更安全,因为它将使用已编译的应用程序创建 deb 包(因此它由 APT 控制并且可以被删除sudo dpkg -r gst-rtsp)。

相关内容