I've taken a look at Justin's neat example of a 1 to 1 video conferencing application, http://apprtc.appspot.com/ source code: http://code.google.com/p/webrtc-samples/source/browse/trunk/apprtc/which uses a python server for signalling and hosting the javascript code.I wanted to break this down into a simpler version to understand how everything actually works, so I tried doing the complete implementation in only JavaScript.I used node.js websockets as a signalling channel, and created 2 pages, one called client.html and another server.html, where I intended that the clients GetUserMedia video stream to eventually get streamed on the my server.html.I used jquery just to make my code look a bit more structured, with DOM manipulation.The client.thml does manage to send an offer and get an answer from the server.html via the websocket, and eventually the server gets a URL blob, but after I added it to src attributed of the server's video player nothing seems to be getting rendered.Looks like i've not understood some part of the webrtc API, would someone here be able to tell me what I'm missing. I've attached my source code here.
--
---
You received this message because you are subscribed to the Google Groups "discuss-webrtc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to discuss-webrt...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.