Streaming of H264 video

JSP jebaraj at tonboimaging.com
Tue Jul 19 10:05:07 UTC 2016


Hi experts,

I have H264 encoded video.I am looking for a pipeline to stream this video. 
I am using the following pipeline in the server side:

        appsrc = gst_element_factory_make ("appsrc", "source");//H264 video
data
	packer = gst_element_factory_make ("rtph264pay", "pack");
  	videosink = gst_element_factory_make ("udpsink", "videosink");

        gst_bin_add_many (GST_BIN (pipeline), appsrc, packer,videosink,
NULL);
  	gst_element_link_many (appsrc, packer,videosink, NULL);

In the receiver side,
gst-launch-1.0 -v udpsrc multicast-group=239.192.1.6 auto-multicast=true 
port=5004 ! "application/x-rtp, media=video, clock-rate=90000,
encoding-name=H264, packetization-mode=(string)1,
profile-level-id=(string)640014, a-framerate=(string)30, payload=(int)96" !
rtph264depay ! decodebin ! videoconvert ! ximagesink

With this pipeline I am not even getting the gst launch window. Where it
goes wrong? Kindly help



--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Streaming-of-H264-video-tp4678747.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.


More information about the gstreamer-devel mailing list