Hi All.
I was playing today with this pipeline. Pretty straight forward. but its dropping buffers. I have a newer i7 laptop that I am using. What do I have wrong that I'm dropping buffers. Thanks, Jerry gst-launch-1.0.exe ksvideosrc ! tee name=MyVid ! queue ! videoconvert ! vp8enc ! rtpvp8pay ! udpsink host=127.0.0.1 port=5000 MyVid. ! autovideosink Setting pipeline to PAUSED ... Pipeline is live and does not need PREROLL ... Setting pipeline to PLAYING ... New clock: GstSystemClock Redistribute latency... WARNING: from element /GstPipeline:pipeline0/GstAutoVideoSink:autovideosink0/GstD3DVideoSink:autovideosink0-actual-sink-d3dvideo: A lot of buffers are being dropped. Additional debug info: gstbasesink.c(2901): gst_base_sink_is_too_late (): /GstPipeline:pipeline0/GstAutoVideoSink:autovideosink0/GstD3DVideoSink:autovideosink0-actual-sink-d3dvideo: There may be a timestamping problem, or this computer is too slow. handling interrupt. Interrupt: Stopping pipeline ... Execution ended after 0:00:03.141118009 Setting pipeline to PAUSED ... Setting pipeline to READY ... Setting pipeline to NULL ... Freeing pipeline ... _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Hi Jerry
Pipeline needs queue after tee for separate thread creation and its own buffering. May adding queue before autovideosink should resolve the issue. gst-launch-1.0.exe ksvideosrc ! tee name=MyVid ! queue ! videoconvert ! vp8enc ! rtpvp8pay ! udpsink host=127.0.0.1 port=5000 MyVid. ! queue ! autovideosink ~ Vinod -- Sent from: http://gstreamer-devel.966125.n4.nabble.com/ _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
In reply to this post by Jerry Geis-2
Hi - thanks for the reply.
I added the queue but still got the same result, thoughts? Jerry gst-launch-1.0.exe ksvideosrc ! tee name=MyVid ! queue ! videoconvert ! vp8enc ! rtpvp8pay ! udpsink host=127.0.0.1 port=5000 MyVid. ! queue ! autovideosink Setting pipeline to PAUSED ... Pipeline is live and does not need PREROLL ... Setting pipeline to PLAYING ... New clock: GstSystemClock Redistribute latency... WARNING: from element /GstPipeline:pipeline0/GstAutoVideoSink:autovideosink0/GstD3DVideoSink:autovideosink0-actual-sink-d3dvideo: A lot of buffers are being dropped. Additional debug info: gstbasesink.c(2901): gst_base_sink_is_too_late (): /GstPipeline:pipeline0/GstAutoVideoSink:autovideosink0/GstD3DVideoSink:autovideosink0-actual-sink-d3dvideo: There may be a timestamping problem, or this computer is too slow. WARNING: from element /GstPipeline:pipeline0/GstAutoVideoSink:autovideosink0/GstD3DVideoSink:autovideosink0-actual-sink-d3dvideo: A lot of buffers are being dropped. Additional debug info: _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |