Hi!<br><br>This is my first mail to this list, and I&#39;m using Gstreamer directly on C only few days ago.<br><br>I&#39;m trying to use the rtspsrc element to show a RTSP stream from a IP camera. On my first try, I used gst-launch tool to see that it&#39;s possible to construct this pipeline:<br>
<br>$ gst-launch-0.10 rtspsrc location=&quot;uri_of_my_cam&quot; ! decodebin ! xvimagesink<br><br>and it works fine! But, when I tried the same inside a program... I create the 3 elements, add it to the pipeline and then I linked it between.<br>
<br>It hink my problem was the use of decodebin, but I read some examples on the documentation and I&#39;m using it in the right way.<br><br>When I output debug messages from the bus, I saw something strange: gstreamer notify me that rtspsrc is not properly connected to decodebin. I read some documentation about rtspsrc and I found that it&#39;s a GstBin, not a simply GstElement.<br>
<br>Inside the rtspsrc bin would be a source pad, but I&#39;m not sure how can I use it. Is there any signal that notifies me about the creation of the source pad? Have I ask to rtspsrc for a source pad?<br><br>I had searched on Google for use-examples of rtspsrc, but I can&#39;t find anything related.<br>
<br>Actually, I&#39;m using &quot;playbin&quot; to play the RTSP camera, but I want to learn this kind of things!<br><br>Thanks for your attention and excuse me, I&#39;m not very good at English.<br>