Reputation: 273
What are good resources to create dedicated channel audio chat application using html5 web sockets? Is it possible? Actually I'm imaginning to develop a voice chat application using html5 web sockets. Can anyone help me out in this?
Thanks in advance
Upvotes: 4
Views: 4700
Reputation: 3539
I don't think that developing a voice chat application with pure html5 is possible at the moment, as most browsers don't support audio recording yet. You'll be able to use navigator.getusermedia
(W3C Draft) for that purpose in the future, but AFAIK, this method is not supported by any mainstream browser yet. So I guess, you'll have to fall back to proprietary technology like flash to develop a web based audio chat system that presently works for most users.
Upvotes: 3