Hello,
I’m trying to play audio/video from an rtsp source by constructing pipeline with gst_parse_launch(). I’m using decodebin; however, the video playback gets stuck if the rtspsrc does not have an audio stream. How can this be solved (automatically detetect and play audio if available)?
My pipeline
gst-launch-1.0 rtspsrc location=rtsp://127.0.0.1:8554/test latency=500 protocols=4 ! decodebin name=decodebin decodebin. ! queue ! videoconvert ! autovideosink name=autovideosink decodebin. ! queue ! audioconvert ! autoaudiosink name=autoaudiosink
Thank you