GStreamer
文章平均质量分 84
poject
这个作者很懒,什么都没留下…
展开
-
gstreamer 命令
命令行调试日志: --gst-debug-level=X 或 --gst-debug=myelement:X(X的取值为[0,5])UdpsrcSender:./gst-launch-1.0 videotestsrc is-live=true ! video/x-raw,framerate=25/1 ! videoconvert ! x264enc ! h264parse ! rtph264pay pt=96 ! udpsink host=127.0.0.1 port=5000Recei转载 2022-03-05 14:39:15 · 1485 阅读 · 0 评论 -
Gstreamer 播放
#include <gst/gst.h>#include <stdio.h>//#include <gst/video/videooverlay.h>/* Structure to contain all our information, so we can pass it around */typedef struct _CustomData { GstElement *playbin; /* Our one and only element */...原创 2021-03-23 21:25:21 · 1132 阅读 · 0 评论 -
GObject 与 GStreamer 中文手册
GObject对象系统简单的说,GObject对象系统是一个建立在GLIB基础上的,用C语言完成的,具有跨平台特色的、灵活的、可扩展的、非常容易映射到其它语言的面向对象的框架。如果你是一个C语言的执着的追随者,你没有理由不研究一下它。NOTE:glib库是Linux平台下最常用的C语言函数库,它具有很好的可移植性和实用性。glib是Gtk +库和Gnome的基础。glib可以在多个平台下使用,比如Linux、Unix、Windows等。glib为许多标准的、常用的C语言结构提供了相应的替代物.转载 2021-03-16 08:57:32 · 1937 阅读 · 0 评论