gst-rtsp-0.10.3+live streaming

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

gst-rtsp-0.10.3+live streaming

vaisakhn7
Dear all,
I was trying to do live streaming with  rtsp-server
For that I used the test-video.c in the  gst-rtsp-0.10.3/examples directory
And  my server side pipeline is :-
/*-------------------------------------------------------*/
gst_rtsp_media_factory_set_launch (factory,
  " v4lsrc copy-mode=false  ! video/x-raw-yuv,width=352,height=288,framerate=15/1,bitRate=250   !  x264enc  ! " " rtph264pay name=pay0 pt=96 "
  " osssrc device=/dev/dsp  ! audio/x-raw-int,rate=8000,channels=1,depth=16  ! audioconvert ! alawenc  ! rtppcmapay  name=pay1 pt=97 "
")");
/*----------------------------------------------------------------*/
Receiver Pipeline is:-
./gst-launch-0.10  -v rtspsrc location=rtsp://10.1.11.39:8554/test name=dmuxr dmuxr. !  rtppcmadepay ! alawdec ! audioconvert ! osssink sync=false dmuxr. ! rtph264depay !   ffdec_h264  ! ffmpegcolorspace ! xvimagesink
but No output ( no video and  audio )
Also it didnt show any errror ,Its just hangs in a state ,
like this
/*------------------------------------------------------------------------------*/
/GstPipeline:pipeline0/GstRTSPSrc:dmuxr/GstRtpBin:rtpbin0/GstRtpJitterBuffer:rtpjitterbuffer0.GstPad:sink_rtcp: caps = application/x-rtcp
/GstPipeline:pipeline0/GstRTSPSrc:dmuxr/GstRtpBin:rtpbin0.GstGhostPad:send_rtcp_src_0: caps = application/x-rtcp
/GstPipeline:pipeline0/GstRTSPSrc:dmuxr/GstRtpBin:rtpbin0/GstRtpSession:rtpsession0.GstPad:send_rtcp_src: caps = application/x-rtcp
/GstPipeline:pipeline0/GstRTSPSrc:dmuxr/GstUDPSink:udpsink1.GstPad:sink: caps = application/x-rtcp
/GstPipeline:pipeline0/GstRTSPSrc:dmuxr/GstRtpBin:rtpbin0.GstGhostPad:send_rtcp_src_0: caps = application/x-rtcp
/GstPipeline:pipeline0/GstRTSPSrc:dmuxr/GstRtpBin:rtpbin0.GstGhostPad:send_rtcp_src_0.GstProxyPad:proxypad2: caps = application/x-rtcp
/*------------------------------------------------------------------------------------------------------------*/

Help me ?
Advance Thanks
By
Vaisakh.N






Reply | Threaded
Open this post in threaded view
|

Re: gst-rtsp-0.10.3+live streaming

vaisakhn7
Dear all,
Sorry,There is a mistake in the receiver pipeline .Actual pipeline is :
/*--------------------------------*/
The Receiver Pipeline is:-
./gst-launch-0.10  -v rtspsrc location=rtsp://10.1.11.39:8554/test
name=dmuxr dmuxr. !  rtppcmadepay ! alawdec ! audioconvert ! osssink
sync=false dmuxr. ! rtph264depay !   ffdec_h264   ! ffmpegcolorspace !
xvimagesink

BY
Vaisakh