码迷,mamicode.com
首页 > 其他好文 > 详细

gstreamer 接收rtsp存储为h264

时间:2018-04-25 19:07:11      阅读:1287      评论:0      收藏:0      [点我收藏+]

标签:element   col   tca   h264   tcap   gstreamer   AC   nbsp   tor   

  g_message("save to file");
    50                 GstElement * caps = gst_element_factory_make("capsfilter", "filter");
    51                 GstCaps * c = gst_caps_new_simple("video/x-h264",
    52                         "stream-format", G_TYPE_STRING, "byte-stream",
    53                         NULL);
    54                 g_object_set(caps, "caps", c, NULL);
    55                 
    56                 GstElement * filesink = gst_element_factory_make("filesink", "filesink");
    57                 g_object_set(filesink, "location", "/opt/test.h264", NULL);
    58                 gst_bin_add_many(GST_BIN(pipeline()), caps, filesink, NULL);
    59                 gboolean ok = gst_element_link_many(video_tee, caps, filesink, NULL);
    60                 g_warn_if_fail(ok);

 

gstreamer 接收rtsp存储为h264

标签:element   col   tca   h264   tcap   gstreamer   AC   nbsp   tor   

原文地址:https://www.cnblogs.com/missmzt/p/8946092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!