user1070642
user1070642

Reputation: 273

How to implement HTML5 audio chat

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

Answers (1)

Simon
Simon

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

Related Questions