Outdated Android telephones and capsules make higher safety cameras than affordable IP cameras. You’ll be able to to find a large number of apps designed for repurposing telephones into are living safety cams. The apps generate a are living movement that you’ll be able to view inside of a browser. On the other hand, you’ll be able to additionally hook it as much as a community video recorder to file or re-stream the feed from the Android tool. That method it could actually seamlessly combine into your current safety device.
Arrange the telephone
Getting a are living digital camera feed up and operating
Get started via putting in the Android app for producing the are living movement. Maximum apps I discovered on this class are both paid, closed-source, or riddled with advertisements. That is the one respectable challenge I may just to find. It is referred to as Android IP Digicam. It is a unfastened and open-source app with out advertisements, and it is actively maintained.
When repurposing a telephone or pill for use as a tool that runs 24/7, you can want to stay it plugged in 24/7. On trendy telephones, it isn’t a lot of a fireplace danger as a result of they have got integrated coverage options. On the other hand, it is going to degrade the battery quicker. You’ll both plug the telephone into a sensible plug that activates and rancid at scheduled periods. Or, you’ll be able to take away the battery solely and gear the tool immediately (if you know the way to solder).
You’ll be able to want to obtain the installer record from GitHub and set up it manually. Open the GitHub repo and cross to the Releases tab. Right here, pick out the newest common APK record and obtain it. Set up Android IP Digicam to your telephone or pill and release it.
Faucet the settings icon and arrange a username and password right here. The app auto-generates a self-signed HTTPS/TLS certificates to safe the movement. Then return to the Android IP Digicam display screen.

You’ll be able to realize it has generated an HTTPS deal with for you. Input that deal with (along side the port) in a browser to view the movement. It’s going to ask you to go into the username and password. The feed can’t be accessed with out it. For instance, I will open the Android IP Digicam interface the use of this URL. Exchange this URL with the only you spot to your app.
https://192.168.1.10:4444

You’ll be able to see a caution from the browser. That is standard for the reason that app makes use of a self-signed cert. Simply click on the Complicated button and make a choice Proceed Anyway.
As soon as you may have entered the password, you can see the Android IP Digicam movement. Right here, you’ll be able to additionally configure whether or not to make use of the entrance or the again digital camera. You’ll flip the flash off and on. Or, you’ll be able to flip the audio movement off and on. You’ll additionally alternate the picture solution, zoom ranges, publicity, distinction, and body prolong on this portal.
Be certain that the telephone and the pc you might be viewing the movement on are hooked up to the similar Wi-Fi community. You’ll be able to additionally need to assign a static IP deal with in your Android tool, so that you would not have to reconfigure your setup to check converting IP addresses.
To view the uncooked are living movement, you’ll be able to upload /movement to the URL you might be on.
https://192.168.1.10:4444/movement
The app will stay operating within the background and streaming a are living feed of the digital camera, although you flip the display screen off.
Putting in a sensible recording server
This converts your Android telephone into a real IP digital camera device
The Android IP Digicam internet portal is just for are living streams. For those who if truth be told need to file the streams or attach Android along with your current safety device, you can desire a community video recorder. I am the use of Frigate for that goal.
Frigate is a unfastened and open-source community video recorder (NVR) designed to be self-hosted. You’ll run it as a container in Docker.
Frigate can file 24/7 in a retention loop of your selection. Or, you’ll be able to set it as much as best file when it detects movement. Frigate has integrated AI detection to stumble on other folks, cars, and animals in actual time. It might additionally hook up with platforms like House Assistant. If you have already got a safety device in position, Frigate can restream the Android tool as RTSP, so your telephone or pill digital camera movement seems like an ordinary IP digital camera to any tool.
To arrange Frigate and fix it with the movement coming from the Android tool, open the terminal to your server.
Create a brand new listing for frigate after which a brand new docker-compose.yml record.
products and services:
frigate:
container_name: frigate
restart: unless-stopped
symbol: ghcr.io/blakeblackshear/frigate:solid
shm_size: "128mb"
volumes:
- ./config:/config # That is the place your configuration record will cross
- ./garage:/media/frigate # That is the place recordings might be stored
ports:
- "5000:5000" # Frigate's internet interface
- "8554:8554" # RTSP restreaming (not obligatory)
- "8555:8555/tcp" # WebRTC for low-latency are living view
Save the compose record and return to the Frigate listing. Right here, create a brand new config folder and create a config.yml record.
mkdir config && cd config
nano config.yml
Paste this into the config record.
mqtt:
enabled: false
cameras:
android_phone:
ffmpeg:
input_args: -tls_verify 0
inputs:
- trail: https://username:password@192.168.1.10:4444/movement # exchange those main points with yours
roles:
- stumble on
- file
stumble on:
enabled: true
width: 640
peak: 480file:
enabled: true
retain:
days: 7
mode: movement
occasions:
retain:
default: 14
mode: active_objectssnapshots:
enabled: true
retain:
default: 14
You’ll be able to want to exchange the username and password at the trail: line with the username and password you already set at the Android IP Digicam app. Additionally, exchange the movement URL with the only your telephone generates.
With this config, Frigate will routinely get started recording when movement is detected and stay clips with any motion for 7 days prior to overwriting them. For clips the place an individual, animal, or shifting object is detected, it’s going to retain them for 14 days. It additionally generates a snapshot symbol as quickly because it detects an object. If you wish to have it to continuously file, simply alternate the mode line from mode: movement to mode: all.
Now cd again to the Frigate listing. Run the next command to spin up the Frigate container.
docker compose up -d
Wait till the container is able after which get admission to the Frigate interface on the following deal with.
http://your-server-ip-address:5000
You must see the are living movement out of your Android tool display up at the Frigate dashboard. You’ll additionally configure signals and detections right here.
- Answer
-
4K Extremely HD
- Energy
-
5W Sun panel
- Garage
-
32GB Native Garage HomeBase, As much as 16TB With Arduous Drives
- Subscription required?
-
No
Your Android telephone will also be greater than only a passive nanny cam
With a easy digital camera streaming app, an Android tool stays roughly a glorified nanny cam. On the other hand, in the event you run an NVR on your own home server and feed the movement into it, your previous Android telephone will turn into a part of your safety device.


