GStreamer在Unbutu和Windows的编译使用细节
Posted Geek.Fan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GStreamer在Unbutu和Windows的编译使用细节相关的知识,希望对你有一定的参考价值。
一、GStreamer简介:
GStreamer 是用来构建流媒体应用的开源多媒体框架(framework),其目标是要简化音/视频应用程序的开发,已经能够被用来处理像 MP3、Ogg、MPEG1、MPEG2、AVI、Quicktime等多种格式的多媒体数据。当前项目是尝试用它来开发多路RTSP推流服务器。
二、GStreamer 在Ubuntu编译安装:
第一步:
sudo apt-get -y install python3.6-dev
第二步:
pip install --user --upgrade pip install meson==0.6.0 pip install ninja
第三步:
如果下面下载太慢,也可以和windows 一样git clone gst-build,然后自己下载,然后解压到subproject下面即可。
官方参考:
三、GStreamer 在Windows10编译安装:
第一步 :
安装 Visual Studio Community 2019
https://visualstudio.microsoft.com/zh-hans/vs/
Visual Studio Installer需要勾选下载内容如下
- 通用Windows平台开发
- 使用C++的桌面开发
- 使用c++的移动开发
使用C++的桌面开发和移动开发是可选的
第二步:
Python 3.5+,作者使用的3.6
第三步:
打开Windows cmd命令行工具
pip install --upgrade pip
pip install meson
tips:
GStreamer release版本大于1.16(不包含1.16版本)需要使用meson build,所以需要安装meson ;GStreamer =1.18,,meson vison>=0.54;但是1.19版本需要>=0.55版本,建议你们直接使用meson>=0.6;
meson相关资料
download :meson · PyPI
github :https://github.com/mesonbuild/meson
meson about: The Meson Build system
pip install ninja
第四步:
添加GStreamer bin 到 PATH,两个都需要下载,保证下载版本一致性
- gstreamer官网 https://gstreamer.freedesktop.org/download/
- 不同版本的dll库连接 https://gstreamer.freedesktop.org/data/pkg/windows/tips
安装的时候不要选择自定义,要选择安装所有,这样dll库不会丢失。保证无论你使用哪一个插件模块都正常运行
64 bit
- runtime install https://gstreamer.freedesktop.org/data/pkg/windows/1.18.5/msvc/gstreamer-1.0-msvc-x86_64-1.18.5.msi
- development installer https://gstreamer.freedesktop.org/data/pkg/windows/1.18.5/msvc/gstreamer-1.0-devel-msvc-x86_64-1.18.5.msi
32 bit
- runtime install https://gstreamer.freedesktop.org/data/pkg/windows/1.18.5/msvc/gstreamer-1.0-msvc-x86-1.18.5.msi
- development installer https://gstreamer.freedesktop.org/data/pkg/windows/1.18.5/msvc/gstreamer-1.0-devel-msvc-x86-1.18.5.msi
第五步:
下载源码,编译库
tips: 请严格按照下面安装步骤填写
- download git https://git-scm.com/
- 选择一个存放项目的文件夹右键 git bash here
第六步:
下载完成之后,搜索框输入2019找到: X64 Native Tools Command Prompt for VS2019
cd .. meson build //等待编译结果即可,大概30分钟 ninja -C build
官方教程 :Build from source using meson https://gstreamer.freedesktop.org/documentation/installing/building-from-source-using-meson.html?gi-language=c
以上是关于GStreamer在Unbutu和Windows的编译使用细节的主要内容,如果未能解决你的问题,请参考以下文章
Gstreamer Video Overlay 在 QWidget 上的无效投射,Windows 10