<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 "new ssrc"<br> print " session", session<br> print " ssrc", ssrc<br> rtpbin.connect('on-new-ssrc', 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>