Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make Video conference application in HTML 5? [closed]

Tags:

html

php

flash

How to make Video conference application in HTML 5? actually I want to build web conference application using HTML5. Please give me suggestions.

like image 843
user568814 Avatar asked Jan 09 '11 14:01

user568814


2 Answers

Edit: According to the link David posted as a comment. it is possible: http://whatwg.org/specs/web-apps/current-work/#devices

unfortunetely it is not possible with html5 alone, you will need flash for three reasons:

  1. HTML 5 can’t interact with a webcam.
  2. HTML5 cannot record audio from your microphone.
  3. HTML5 cannot do any sort of web conferencing.

source: http://active.tutsplus.com/articles/roundups/10-flash-things-you-can%E2%80%99t-do-with-html5/

cheers endo

like image 56
endo.anaconda Avatar answered Oct 13 '22 12:10

endo.anaconda


In mid 2012, things have changed quite a bit. Webkit, Google Chrome and Opera support the getUserMedia API, and Google, Mozilla and Opera have partnered up to form the WebRTC initiative. The initiative has the goald to "enable rich, high quality, RTC applications to be developed in the browser via simple Javascript APIs and HTML5".

Check this blog post of an HTML5 video conference demo, which was posted to the discuss-webrtc Google Group. The W3C is working on a specification WebRTC 1.0: Real-time Communication Between Browsers, the initial draft of the document was provided by Google.

like image 32
raju-bitter Avatar answered Oct 13 '22 12:10

raju-bitter