I have to develop an application that will record video and audio on desktop browser and android smartphone and share it between them. Just like the skype video call.
The application will consist of three subapplications on these three platforms:
- smartphone (android java)
- web server (apache + php)
- destkop web browser (html5 + javascript + css)
- Could you recommend me any libraries that could help me on these platforms (smartphone, web server, web browser)?
- Will I be able to maintain all the work on web server just by
php
(user logging, video streaming, ...)? - Will I be able to maintain video record and playback in web browser
just by
html5
+js
or do I need to useflash
/silverlight
? - What things will web server need to do? Just store the video stream somewhere in memory and then send it (forward) to web browser? Could you describe how should this work in more deeply?
What should I start with? Thank you