Adding appsrc makes problem with my pipeline
mcmcmc
mchmc9 at gmail.com
Wed Apr 23 00:37:59 PDT 2014
Hello there,
I've problem with my pipelines in Gstreamer. First version was only that
where I got:
*gst_bin_add_many(GST_BIN(pipelineAS),alsasrc,queue,audioconvert,audioresample,lamemp3enc,mpegtsmux,udpsink,NULL);*
Everything was good, my mic transmitted sound via udp. In next step I
decided to divide initial pipeline like this:
*gst_bin_add_many(GST_BIN(pipelineAS),appsrc,queue,audioconvert,audioresample,lamemp3enc,mpegtsmux,udpsink,NULL);
gst_bin_add_many (GST_BIN(pipelineMic),alsasrc,appsink,NULL);*
and unfortunately something goes wrong because then I have active bus
message as follows:
*bus = gst_pipeline_get_bus(GST_PIPELINE(pipelineAS));
bus_watch_id = gst_bus_add_watch(bus, bus_call, loop);
bus = gst_pipeline_get_bus(GST_PIPELINE(pipelineMic));
//bus_watch_id = gst_bus_add_watch(bus, bus_call, loop);*
in my terminal print error message like this:
.Now playing
PTS:0 DTS: 0 Duration: 10000000
PTS:10000000 DTS: 18446744073709551615 Duration: 10000000
PTS:20000000 DTS: 18446744073709551615 Duration: 10000000
Error: Internal data flow error.
.Stop playing
Can anyone help in this matter ?
Regards,
--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Adding-appsrc-makes-problem-with-my-pipeline-tp4666553.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.
More information about the gstreamer-devel
mailing list