Other Parts Discussed in Thread: DRA712
I'm trying to play H.264 RTSP stream from a network camera using below gstreamer pipeline on SK-TDA4VM,
gst-launch-1.0 -v --gst-debug=4 \
rtspsrc location=rtsp://$REMOTE/stream1 latency=0 protocols=udp \
! rtpjitterbuffer \
! queue \
! rtph264depay \
! queue \
! h264parse \
! queue \
! v4l2h264dec \
! queue \
! 'video/x-raw,format=NV16,width=(int)1920,height=(int)1080' \
! videoconvert \
! kmssink &
Log file "g4_dbg.log" is attached.
The same RTSP H.264 stream is playing with about 1 sec latency with playbin pipeline,
gst-launch-1.0 -v --gst-debug=4 \
playbin uri=rtsp://$REMOTE/stream1 uridecodebin0::source::latency=300 video-sink=kmssink
Log file "g2_play.log" is attached.
I would like to use the first pipeline for stream control parameters where as playbin does not provide. Please let me know what is missing with the first pipeline.
Regards,