<div>Hello,<br></div><div><br></div><div>I have to develop a framework for video conferencing using RTP in Python. To start with I tried to use the examples under</div><div><a href="http://blog.abourget.net/2009/6/14/gstreamer-rtp-and-live-streaming/">http://blog.abourget.net/2009/6/14/gstreamer-rtp-and-live-streaming/</a> and they work.</div>
<div><br></div><div>Now on the video receiver side I need to add the signal on_new_ssrc to notify if a new SSRC has entered that session. I did not find any example using this in gst python.</div><div><br></div><div>I tried using:</div>
<div>def on_new_ssrc(rtpbin,session,ssrc,user_data):<br>    print &quot;new ssrc&quot;<br>    print &quot;  session&quot;, session<br>    print &quot;  ssrc&quot;, ssrc<br>    rtpbin.connect(&#39;on-new-ssrc&#39;, on_new_ssrc)    </div>
<div><br></div><div>But this does not work. Is it possible to do it this way or I have to use something else. Some examples would be really helpful.</div><div><br></div><div>Regards,</div><div><br></div><div><br><br></div>