04 2022 档案
摘要:较早的版本编译起来比较费,要依赖别的库像libffi处理高级语言之间相互调用的问题,zlib等 较新的版本采用meson构建,会自动下载依赖库,所以比较方便。 现在glib源码:http://ftp.acc.umu.se/pub/GNOME/sources/glib/ 我这里下载的是最新的2.72.
阅读全文
摘要:sudo apt-get install libgstreamer-plugins-base1.0-dev
阅读全文
摘要:sudo apt-get install ubuntu-desktop
阅读全文
摘要:1. gstreamer 播放音频 command: gst-launch-1.0 filesrc location=qqqg.wav ! wavparse ! alsasink 2. gstreamer 播放网络流 gst-launch-1.0 playbin uri=http://10.168.
阅读全文
摘要:apt-get install libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-
阅读全文
摘要:1.当时我的ubuntu上安装的qt版本是Qt5.4.1 gstreamer0.10 gstreamer1.0 gstreamer1.8 2.各种版本都试了,都报错 3.更换qt版本,Qt5.4.2依然报错 4.再次更换qt版本,Qt6.3.0。qt官网下载Qt Online Installer h
阅读全文
摘要:opt/qt5.4.2/5.4/gcc_64/include/QtCore/qglobal.h:684:61: error: static assertion failed: Type is not registered, please use the Q_DECLARE_METATYPE macr
阅读全文
摘要:https://blog.csdn.net/qq_38694388/article/details/119120397 git clone https://gitlab.freedesktop.org/gstreamer/gst-build.git -b 1.18 各个版本,在左上角选择 https
阅读全文
摘要:音视频都不能播放, https://blog.csdn.net/liukang325/article/details/45025853 sudo add-apt-repository ppa:linuxuprising/libpng12 sudo apt update sudo apt instal
阅读全文
摘要:desc: undefined reference to `JSC::Yarr::wordcharCreate() https://forum.qt.io/topic/32634/unresolved-external-symbol-attempting-to-build-5-2 in "qt\qt
阅读全文
摘要:objdump -tT [库名称] | grep [函数名] nm -Do /lib/x86_64-linux-gnu/*.so|grep sqrt
阅读全文
摘要:源码交叉编译qt程序,编译的过程中虚拟机报错关机了,开机后发现鼠标键盘没反应了 1.命令行进入ubuntu,https://www.cnblogs.com/xpylovely/p/11063207.html 2.安装sudo apt install xserver-xorg-input-all 3.
阅读全文
摘要:./configure --prefix=/opt/rootfs/opt --host=arm-cortex_a9-linux CC=arm-cortex_a9-linux-gnueabi-gcc CFLAGS=-static --enable-static LDFLAGS=-static --di
阅读全文
摘要:解决办法:sudo ldconfig ldconfig是设置系统的动态库路径的,设置完成后,新的shell窗口也能起作用。 ldconfig是系统动态库连接管理工具,使用ldconfig的时候需要注意如下几点: 如果把动态库文件复制到/usr/lib或者/lib,再赋值完成以后,需要执行一下ldco
阅读全文
摘要:编译的时候加上--sysroot= 解压缩交叉编译器的时候在windows的目录里进行导致软链接文件没有,换到linux目录就ok了
阅读全文
摘要:试了这种办法不行 https://blog.csdn.net/qq_40897531/article/details/106784915 又试了这种ok了 https://blog.csdn.net/weixin_36347133/article/details/116859842 setenv b
阅读全文
摘要:1. 抓包过滤器1. tcp src port 443udp port 20000udp dst port 20000udp src port 10000udp dst port 20000 and src port 100002. not arp 3. port 804. src 192.168.
阅读全文
摘要:H:\software\programming\video_stream\nginx-1.7.11.3-Gryphon>nginx.exe -c conf\nginx-win-rtmp.conf 浏览器输入 localhost:8080 有信息输出即可下一步 ffmpeg -re -i hama.m
阅读全文