当前位置: 首页 > article >正文

摄像头原始数据读取——gstreamer(gst_parse_launch)

摄像头原始数据读取——gstreamer(gst_parse_launch)

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#ifdef __cplusplus
extern "C" {
#endif

#include <gst/gst.h>

#ifdef __cplusplus
};
#endif

static gboolean bus_msg_timeout(GstBus *bus) 
{
    GstMessage *bus_msg = gst_bus_timed_pop_filtered(bus, GST_CLOCK_TIME_NONE,GST_MESSAGE_STATE_CHANGED | GST_MESSAGE_ERROR | GST_MESSAGE_EOS);

    if (bus_msg != NULL) 
    {
        GError *err;
        gchar *debug_info;

        switch (GST_MESSAGE_TYPE(bus_msg)) 
        {
            case GST_MESSAGE_ERROR:
                gst_message_parse_error(bus_msg, &err, &debug_info);
                g_printerr("Error received from element %s: %s\n",GST_OBJECT_NAME(bus_msg->src), err->message);
                g_printerr("Debugging information: %s\n",debug_info ? debug_info : "none");
                g_clear_error(&err);
                g_free(debug_info);
                break;
            case GST_MESSAGE_EOS:
                g_print("End-Of-Stream reached.\n");
                break;
            case GST_MESSAGE_STATE_CHANGED:
                break;
            default:
                break;
        }
        gst_message_unref(bus_msg);
    }

    return TRUE;
}

int main(int argc, char *argv[]) 
{
    GMainLoop *main_loop;
    GstElement *element_pipeline;
    GstBus *bus_ptr;
    GstMessage *msg;

    // 初始化GStreamer
    gst_init(&argc, &argv);

    // 使用v4l2src作为视频源,videoconvert进行格式转换,autovideosink自动选择视频输出
    element_pipeline = gst_parse_launch("v4l2src device=/dev/video0 ! videoconvert ! autovideosink", NULL);

    // 创建事件循环
    main_loop = g_main_loop_new(NULL, FALSE);

    // 获取总线以监听消息
    bus_ptr = gst_element_get_bus(element_pipeline);

    // 添加一个定时器来检查总线上的消息
    g_timeout_add_seconds(1, (GSourceFunc)bus_msg_timeout, bus_ptr);

    // 开始播放管道
    gst_element_set_state(element_pipeline, GST_STATE_PLAYING);

    // 运行事件循环
    g_main_loop_run(main_loop);

    // 清理
    gst_element_set_state(element_pipeline, GST_STATE_NULL);
    gst_object_unref(bus_ptr);
    gst_object_unref(element_pipeline);
    g_main_loop_unref(main_loop);

    return 0;
}

http://www.kler.cn/a/413121.html

相关文章:

  • 【pyspark学习从入门到精通22】机器学习库_5
  • 基于Springboot企业级工位管理系统【附源码】
  • SAAS美容美发系统架构解析
  • 如何设计和实现通用唯一 Code 生成方法
  • 前端:base64的作用
  • day18 结构体
  • UI设计-色彩、层级、字体、边距(一)
  • java脚手架系列16-AI大模型集成
  • 使用Hutool读取大Excel
  • C++学习日记---第14天(蓝桥杯备赛)
  • 前端实现把整个页面转成PDF保存到本地(DOM转PDF)
  • 梧桐数据库的高效索引技术分析
  • Rust语言俄罗斯方块(漂亮的界面案例+详细的代码解说+完美运行)
  • 前端框架 react 性能优化
  • 【网络安全设备系列】10、安全审计系统
  • 在WSL 2 (Ubuntu 22.04)安装Docker Ce 启动错误解决
  • 【H2O2|全栈】Node.js(1)
  • 5G Multicast/Broadcast Services(MBS) (五)
  • (计算机网络)期末
  • 在 Spring Boot 中构造 API 响应的最佳实践
  • 985研一学习日记 - 2024.11.23
  • pytest之收集用例规则与运行指定用例
  • nn.Upsample
  • linuxCNC(三)ini配置文件说明
  • 解决 S3 文件复制时的 “can‘t start new thread“ 错误
  • CListCtrl::InsertItem和临界区导致程序卡死