I want to make a web app that can record the screen and the audio input to a computer.How can I use PHP to record the computer screen and the audio input to the computer.?
Asked
Active
Viewed 3,359 times
1 Answers
1
No. php runs on the server not on the client. You need to run client (i.e. in the browser) to capture its screen and audio and can then perhaps use php for processing and distribution. For client side tools you could start looking at html5 not sure how far they are with screen capturing at the moment.
-
Ok. Thanks for your support. But is there any way I can use a web application to record user screen and audio? – kartik Aug 26 '14 at 06:59
-
1Take a look at http://www.html5rocks.com/en/tutorials/getusermedia/intro/ for example. There are ways to do it (since people are doing it). My best guess would be html5 (see the link) but it isn't widely supported yet so you might have to look for other client side approaches like javascript, flash, silverlight or browser plugins – Trudbert Aug 26 '14 at 07:03