Skip to main content

How to Use Your Phone as a Webcam?

A quick search on Google Play throws up several webcam applications. We tried 5 of the top 10 results, but most didn’t work properly. From the ones that didn’t crash repeatedly, SmartCam failed to show the video, and DroidCam needs you to install an app on Windows to work.

IP Webcam is easily the best of the lot because it works through your browser, which gives it the cross-platform compatibility.

To set up a security camera on Android, follow these steps.

1. Connect your computer and the phone to the same Wi-Fi network.

2. Install the IP Webcam app on your smartphone.

3. Close all other camera apps. Force close them from the app switcher before you proceed.

4. Launch the IP Webcam app. Scroll to the bottom and tap Start server.

5. The app will now fire up your phone’s camera and display a URL. Our URL was http://172.32.15.110:8080.

6. Enter this URL in any browser on your computer and hit Enter.

7. In the browser, you’ll see a drop down menu next to Video renderer. Select Browser.

8. Below that, you’ll see Audio renderer. Select HTML wav.

Now you’ll see a live video feed in your browser. You can also record this footage via the browser. To do this, just press the red Record button under the video. This saves the footage as an MP4.There will be a slight lag if you enable HTML wav audio in the browser. You can select the Flash option (doesn’t work on all computers) or open the same URL in VLC Media Player.

9. To do this, first download and install VLC from this website. Then in VLC, go to Media > Network Stream and enter the URL from the app as seen in step 5.

Once the app is running, you don’t need to keep your phone’s screen on. It works even when the phone is locked, but the video feed is slightly smoother when the screen is on.
_________________________

Comments

Popular posts from this blog

What is SQL ?

SQL (Structured Query Language) is a standardized programming language used for managing relational databases and performing various operations on the data in them. Initially created in the 1970s, SQL is regularly used by database administrators, as well as by developers writing data integration scripts and data analysts looking to set up and run analytical queries. The uses of SQL include modifying database table and index structures; adding, updating and deleting rows of data; and retrieving subsets of information from within a database for transaction processing and analytics applications.  Queries and other SQL operations take the form of commands written as statements -- commonly used SQL statements include select, add, insert, update, delete, create, alter and truncate. _________________________