【发布时间】:2016-07-21 04:55:20
【问题描述】:
我正在尝试通过 rtmp 流式传输我的网络摄像头。我尝试通过以下管道流式传输数据:
gst-launch-1.0 -v v4l2src ! '视频/x-raw,宽度=640,高度=480, 帧率=30/1'!队列 !视频转换! omxh264enc ! h264解析! ! rtmpsink location='rtmp://{MY_IP}/rtmp/live'
它就像一个魅力。我可以在我的网站上看到视频。
那我想先抓帧,做一些处理。 我像以前一样通过将数据推送到appsrc并通过管道流式传输处理过的数据,但是出现了一些问题。
我在我的网站上看不到任何流媒体。服务器端和客户端都不会引发任何错误或警告。尽管如此,我仍然可以通过以下方式获取流媒体:
gst-launch-1.0 rtmpsrc location='rtmp://{MY_IP}/rtmp/live' !文件接收器 location='rtmpsrca.flv'
有人对此有任何想法吗?
这是我的网站部分和 gstreamer 管道的 sn-ps
gstreamer 管道:
void threadgst(){
App * app = &s_app;
GstCaps *srccap;
GstCaps * filtercap;
GstFlowReturn ret;
GstBus *bus;
GstElement *pipeline;
gst_init (NULL,NULL);
loop = g_main_loop_new (NULL, TRUE);
//creazione della pipeline:
pipeline = gst_pipeline_new ("gstreamer-encoder");
if( ! pipeline ) {
g_print("Error creating Pipeline, exiting...");
}
//creazione elemento appsrc:
app-> videosrc = gst_element_factory_make ("appsrc", "videosrc");
if( ! app->videosrc ) {
g_print( "Error creating source element, exiting...");
}
//creazione elemento queue:
app-> queue = gst_element_factory_make ("queue", "queue");
if( ! app->queue ) {
g_print( "Error creating queue element, exiting...");
}
app->videocoverter = gst_element_factory_make ("videoconvert", "videocoverter");
if( ! app->videocoverter ) {
g_print( "Error creating videocoverter, exiting...");
}
//creazione elemento filter:
app->filter = gst_element_factory_make ("capsfilter", "filter");
if( ! app->filter ) {
g_print( "Error creating filter, exiting...");
}
app->h264enc = gst_element_factory_make ("omxh264enc", "h264enc");
if( ! app->h264enc ) {
g_print( "Error creating omxh264enc, exiting...");
}
app->h264parse = gst_element_factory_make ("h264parse", "h264parse");
if( ! app->h264parse ) {
g_print( "Error creating h264parse, exiting...");
}
app->flvmux = gst_element_factory_make ("flvmux", "flvmux");
if( ! app->flvmux ) {
g_print( "Error creating flvmux, exiting...");
}
app->rtmpsink = gst_element_factory_make ("rtmpsink", "rtmpsink");
if( ! app->rtmpsink ) {
g_print( "Error rtmpsink flvmux, exiting...");
}
g_print ("Elements are created\n");
g_object_set (G_OBJECT (app->rtmpsink), "location" , "rtmp://192.168.3.107/rtmp/live live=1" , NULL);
g_print ("end of settings\n");
srccap = gst_caps_new_simple("video/x-raw",
"format", G_TYPE_STRING, "RGB",
"width", G_TYPE_INT, 640,
"height", G_TYPE_INT, 480,
//"width", G_TYPE_INT, 320,
//"height", G_TYPE_INT, 240,
"framerate", GST_TYPE_FRACTION, 30, 1,
//"pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1,
NULL);
filtercap = gst_caps_new_simple("video/x-raw",
"format", G_TYPE_STRING, "I420",
"width", G_TYPE_INT, 640,
"height", G_TYPE_INT, 480,
//"width", G_TYPE_INT, 320,
//"height", G_TYPE_INT, 240,
"framerate", GST_TYPE_FRACTION, 30, 1,
NULL);
gst_app_src_set_caps(GST_APP_SRC( app->videosrc), srccap);
g_object_set (G_OBJECT (app->filter), "caps", filtercap, NULL);
bus = gst_pipeline_get_bus (GST_PIPELINE ( pipeline));
g_assert(bus);
gst_bus_add_watch ( bus, (GstBusFunc) bus_call, app);
gst_bin_add_many (GST_BIN ( pipeline), app-> videosrc, app->queue, app->videocoverter,app->filter, app->h264enc, app->h264parse, app->flvmux, app->rtmpsink, NULL);
g_print ("Added all the Elements into the pipeline\n");
int ok = false;
ok = gst_element_link_many ( app-> videosrc, app->queue, app->videocoverter, app->filter,app->h264enc, app->h264parse, app->flvmux, app->rtmpsink, NULL);
if(ok)g_print ("Linked all the Elements together\n");
else g_print("*** Linking error ***\n");
g_assert(app->videosrc);
g_assert(GST_IS_APP_SRC(app->videosrc));
g_signal_connect (app->videosrc, "need-data", G_CALLBACK (start_feed), app);
g_signal_connect (app->videosrc, "enough-data", G_CALLBACK (stop_feed),app);
g_print ("Playing the video\n");
gst_element_set_state (pipeline, GST_STATE_PLAYING);
g_print ("Running...\n");
g_main_loop_run ( loop);
g_print ("Returned, stopping playback\n");
gst_element_set_state (pipeline, GST_STATE_NULL);
gst_object_unref ( bus);
g_main_loop_unref (loop);
g_print ("Deleting pipeline\n");
}
我的网页来源
<!DOCTYPE html>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<html>
<head>
<title>Live Streaming</title>
<!-- strobe -->
<script type="text/javascript" src="strobe/lib/swfobject.js"></script>
<script type="text/javascript">
var parameters = {
src: "rtmp://192.168.3.107/rtmp/live",
autoPlay: true,
controlBarAutoHide: false,
playButtonOverlay: true,
showVideoInfoOverlayOnStartUp: true,
optimizeBuffering : false,
initialBufferTime : 0.1,
expandedBufferTime : 0.1,
minContinuousPlayback : 0.1,
//poster: "images/poster.png"
};
swfobject.embedSWF(
"strobe/StrobeMediaPlayback.swf"
, "StrobeMediaPlayback"
, 1024
, 768
, "10.1.0"
, "strobe/expressInstall.swf"
, parameters
, {
allowFullScreen: "true"
}
, {
name: "StrobeMediaPlayback"
}
);
</script>
</head>
<body>
<div id="StrobeMediaPlayback"></div>
</body>
</html>
【问题讨论】:
-
也许你的时间戳在你的逻辑中消失了——尝试为appsrc设置
do-timestamp为真,或者你可以在你提供appsrc的地方手动设置时间戳(使用GST_BUFFER_PTS(buffer) = 16514,不要忘记还有 GST_BUFFER_DURATION) - 你能在测试rtmpsrc location..管道上显示一些日志吗?尝试使用 GST_DEBUG=3 运行 -
设置 do-timestamp 确实像冠军一样工作。这是怎么回事?你介意更详细地解释一下吗?我很乐意将此标记为答案。