QGC 转发RTSP流 到RTMP服务器

需求:

QGC安卓版在接收摄像机RTSP视频流的时候,需要将视频推送到指定的RTMP服务器。

分析:

QGC在处理音视频的时候使用了GStreamer这套框架,本身这套框架是跨平台的,所以无需关系环境,只要想到相应位置,添加对应功能代码,然后配置好安卓端的依赖库即可。

添加位置:

GstVideoReceiver.cpp -》start函数负责音视频的流的播放,只需在此处添加上封装好的推流函数即可。

 

同理在stop中添加停止推流功能。

 方便起见,可在界面上配置rtmp的推流地址。

安卓端依赖库配置:

 

推流代码:

#ifndef VIDEOPUSHER_H
#define VIDEOPUSHER_H
#include <iostream>
#include <gst/gst.h>
#include <gst/app/gstappsink.h>
#include <glib.h>
#include <mutex>
#include <sstream>
#include <QtCore>

#ifndef INT64_C
#define INT64_C(c) (c ## LL)
#define UINT64_C(c) (c ## ULL)
#endif

class VideoPusher
{
    struct Exception : std::exception{};
    template<typename T>
    T* chk(T* pointer) {
        if (pointer == nullptr) {
            throw Exception();
        }
        return pointer;
    }

    template<typename T>
    void delptr(T* pointer)
    {
        if (pointer != nullptr)
        {
            delete pointer;
            pointer = nullptr;
        }
    }


public:
    VideoPusher();
    virtual ~VideoPusher();
    bool Run(std::string strlocation, std::string strCode, std::string strrequest);

protected:
    static void _onPadAdded(GstElement *src, GstPad *src_pad, gpointer user_data);
    void SetElesNull();

protected:
    GMainLoop  *_loop;
    GstBus*     _bus;
    GstElement* _pipeline;
    GstElement* _source;
    GstElement* _depay;
    GstElement* _parse;
    GstElement* _capsfilter;
    GstElement* _queue1;
    GstElement* _rtmpsink;
    GstElement* _flvmux;
    std::mutex _mutex;
    bool _bStopPush;

    int g_pipelinenum;
};

#endif // VIDEOPUSHER_H
#include "VideoPusher.h"
void VideoPusher::_onPadAdded(GstElement *src, GstPad *src_pad, gpointer user_data)
{
    GstPad* sink_pad = (GstPad*)user_data;
    gst_pad_link(src_pad, sink_pad);
}

void VideoPusher::SetElesNull()
{
    _loop = nullptr;
    _bus = nullptr;
    _pipeline = nullptr;
    _source = nullptr;
    _depay = nullptr;
    _parse = nullptr;
    _capsfilter = nullptr;
    _queue1 = nullptr;
    _rtmpsink = nullptr;
    _flvmux = nullptr;
}

VideoPusher::VideoPusher()
{

}

VideoPusher::~VideoPusher()
{
    _bStopPush=true;
}

bool VideoPusher::Run(std::string strLocation,
    std::string strCode, std::string strrequest)
{
    _bStopPush = false;

    while (!_bStopPush)
    {
        SetElesNull();


        gst_init(nullptr, nullptr);
        std::stringstream stream;
        stream << "pipeline" << g_pipelinenum++;

        std::string strname;
        strname = stream.str();


        _pipeline = chk(gst_pipeline_new(strname.c_str()));
        _source = chk(gst_element_factory_make("rtspsrc", "src"));
        _depay = chk(gst_element_factory_make(("rtp" + strCode + "depay").c_str(), "depay"));
        _parse = chk(gst_element_factory_make((strCode + "parse").c_str(), "parse"));
        _flvmux = chk(gst_element_factory_make("flvmux", NULL));
        _queue1 = chk(gst_element_factory_make("queue", "queue"));
        _capsfilter = chk(gst_element_factory_make("capsfilter", "filter"));
        _rtmpsink = chk(gst_element_factory_make("rtmpsink", NULL));
        //g_object_set(_source, "protocols", 0x00000004, NULL);
        g_object_set(_source, "latency", 0, NULL);
        g_object_set(_capsfilter, "caps-change-mode", 1, NULL);
        g_object_set(_rtmpsink, "location", strLocation.c_str(), NULL);

        gst_bin_add_many(GST_BIN(_pipeline), _source, _depay, _parse, _flvmux, _capsfilter, _queue1, _rtmpsink, NULL);
        g_signal_connect(_source, "pad-added", G_CALLBACK(&_onPadAdded), gst_element_get_static_pad(_depay, "sink"));
        gboolean bsuccess = gst_element_link_many(_depay, _parse, _flvmux, _capsfilter, _queue1, _rtmpsink, NULL);
        if (!bsuccess) {
            g_print("Failed to link one or more elements!\n");
            gst_element_unlink_many(_depay, _parse, _flvmux, _capsfilter, _queue1, _rtmpsink, NULL);
            QThread::sleep(1000);
            continue;
        }

        g_object_set(_source, "location", strrequest.c_str(), NULL);
        GstCaps* caps = gst_caps_new_simple(
            "video/x-raw",
           // "format", G_TYPE_STRING, "rgb",
           // "width", G_TYPE_INT, 426,
           // "height", G_TYPE_INT, 240,
            "framerate", GST_TYPE_FRACTION, 25, 1,
            NULL);
        g_object_set(_capsfilter, "caps", caps, NULL);
        gst_caps_unref(caps);
        GstStateChangeReturn res = gst_element_set_state(_pipeline, GST_STATE_PLAYING);
        if (res == GST_STATE_CHANGE_FAILURE)
        {
            g_printerr("Unable to set the pipeline to the playing state.\n");
            gst_object_unref(_pipeline);
            QThread::sleep(1000);
            continue;
        }
        GstMessage *msg;
        /* Listen to the bus */
        //_bus = gst_element_get_bus(_pipeline);
        _bus = gst_pipeline_get_bus(GST_PIPELINE(_pipeline));
        do
        {
            msg = gst_bus_timed_pop_filtered(_bus, GST_CLOCK_TIME_NONE,
                GstMessageType(GST_MESSAGE_STATE_CHANGED |
                GST_MESSAGE_ERROR | GST_MESSAGE_EOS));
            /* Parse message */
            if (msg != NULL)
            {
                GError *err;
                gchar *debug_info;
                switch (GST_MESSAGE_TYPE(msg))
                {
                case GST_MESSAGE_ERROR:
                {
                    gst_message_parse_error(msg, &err, &debug_info);
                    g_printerr("Error received from element %s: %s\n", GST_OBJECT_NAME(msg->src), err->message);
                    g_printerr("Debugging information: %s\n", debug_info ? debug_info : "none");
                    g_clear_error(&err);
                    g_free(debug_info);
                    _bStopPush = TRUE;
                }
                break;
                case GST_MESSAGE_EOS:
                {
                    g_print("End-Of-Streamreached.\n");
                    _bStopPush = TRUE;
                }
                break;
                case GST_MESSAGE_STATE_CHANGED:
                {
                    /* We are onlyinterested in state-changed messages from the pipeline */
                    if (GST_MESSAGE_SRC(msg) == GST_OBJECT(_pipeline))
                    {
                        GstState old_state, new_state, pending_state;
                        gst_message_parse_state_changed(msg,
                            &old_state,
                            &new_state,
                            &pending_state);
                        g_print("Pipeline state changed from %s to %s:\n",
                            gst_element_state_get_name(old_state),
                            gst_element_state_get_name(new_state));
                        if (pending_state == GST_STATE_NULL)
                        {
                            _bStopPush = TRUE;
                        }
                    }
                }
                break;
                default:
                {
                    /* We shouldnot reach here */
                    g_printerr("Unexpected message received.\n");
                    break;
                }
                }
                gst_message_unref(msg);
                //  std::this_thread::sleep_for(std::chrono::milliseconds(200));
            }

        } while (!_bStopPush);

        /* Free resources */
        try
        {
            std::lock_guard<std::mutex> lock(_mutex);
            gst_object_unref(_bus);
            gst_element_set_state(_pipeline, GST_STATE_PAUSED);
            gst_element_set_state(_pipeline, GST_STATE_READY);
            gst_element_set_state(_pipeline, GST_STATE_NULL);
            gst_object_unref(_pipeline);
        }
        catch (std::exception &e)
        {
            std::cout << e.what();
            return true;
        }
        catch (...)
        {
            return true;
        }
    }
    return true;
}

参考:gstreamer的rtsp转rtmp_Hello,C++!的博客-CSDN博客_gstreamer rtsp转rtmp

  • 0
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 9
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

土拨鼠不是老鼠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值