linux环境下用GStreamer实现rtsp取流播放

最近研究Gstream的一些东西分享给大家,通过rtsp进行取流,playbin自行构建链路

##环境配置

  • Ubuntu16 之后自带Gstreamer 的库,可以直接用无需安装

  • 代码编译运行前需要设置如下环境变量:

 export LD_LIBRARY_PATH=/usr/local/lib
 export GST_PLUGIN_PATH=/usr/local/lib:/usr/lib/x86_64-linux-gnu/gstreamer-1.0

##命令行格式
一个用于test的rtsp地址:
rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov

gst-launch-1.0 playbin uri=rtsp://184.72.239.149/vod/mp4://BigBuckBunny_175k.mov

##代码形式

#include <gst/gst.h>  

int main(int argc, char *argv[])
{  
    GstElement *pipeline;  
    GstBus *bus;  
    GstMessage *msg;  
    
    /* Initialize GStreamer */  
    gst_init (&argc, &argv);  
    
    /* Build the pipeline */  
    pipeline = gst_parse_launch ("playbin uri=rtsp://184.72.239.149/vod/mp4://BigBuckBunny_175k.mov", NULL);  
    
    /* Start playing */  
    gst_element_set_state (pipeline, GST_STATE_PLAYING);  
    
    /* Wait until error or EOS */  
    bus = gst_element_get_bus (pipeline);  
    msg = gst_bus_timed_pop_filtered (bus, GST_CLOCK_TIME_NONE, GST_MESSAGE_ERROR | GST_MESSAGE_EOS);  
    
    /* Free resources */  
    if (msg != NULL)  
    gst_message_unref (msg);  
    gst_object_unref (bus);  
    gst_element_set_state (pipeline, GST_STATE_NULL);  
    gst_object_unref (pipeline);  
    return 0;  
}  

编译使用注意:

 export LD_LIBRARY_PATH=/usr/local/lib
 export GST_PLUGIN_PATH=/usr/local/lib:/usr/lib/x86_64-linux-gnu/gstreamer-1.0
 gcc main.c -o main -Wall $(pkg-config --cflags --libs gstreamer-1.0)

如果想了解,Gstreamer播放本地视频开有参考我另一篇文章:
Qt使用GStreamer播放视频(linux环境下)

  • 7
    点赞
  • 48
    收藏
    觉得还不错? 一键收藏
  • 7
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值