I have a working Gstreamer pipeline using RTSP input streams. To handle these given RTSP input streams, the uridecobin element is used.
My goal is to reconnect to the RTSP input streams when internet connection is unstable. When the internet connection is down for only few seconds and then it is up, then the pipeline starts to receive the frames again and everything is ok. When the internet connection is down for >20 seconds I get GST_MESSAGE_EOS. I tried to find some timeout variable in every element generated by uridecodebin, but I did not find it. Do you have any hint which element has this timeout variable and how to set it?
If it is not possible to set such timeout variable, is there any way to block GST_MESSAGE_EOS? Because when I receive GST_MESSAGE_EOS in bus, I try to remove uridecodebin from the pipeline and create a new one. But it does not work for me when GST_MESSAGE_EOS is received (When I try to remove uridecodebin from the pipeline and create a new one during normal state, it works).
I found the way how to block GST_MESSAGE_EOS.
Create the following function to drop GST_EVENT_EOS:
And then just add this function to some GstPad of your elements: