TP-Link Tapo
TP-Link Tapo proprietary camera protocol with two-way audio support.
- stream quality is the same as RTSP protocol
- use the cloud password, this is not the RTSP password! you do not need to add a login!
- you can also use UPPERCASE MD5 hash from your cloud password with
adminusername - some new camera firmwares require SHA256 instead of MD5
Configuration
yaml
streams:
# cloud password without username
camera1: tapo://cloud-password@192.168.1.123
# admin username and UPPERCASE MD5 cloud-password hash
camera2: tapo://admin:UPPERCASE-MD5@192.168.1.123
# admin username and UPPERCASE SHA256 cloud-password hash
camera3: tapo://admin:UPPERCASE-SHA256@192.168.1.123
# VGA stream (the so called substream, the lower resolution one)
camera4: tapo://cloud-password@192.168.1.123?subtype=1
# HD stream (default)
camera5: tapo://cloud-password@192.168.1.123?subtype=0bash
echo -n "cloud password" | md5 | awk '{print toupper($0)}'
echo -n "cloud password" | shasum -a 256 | awk '{print toupper($0)}'TP-Link Kasa
NOTE
This source should be moved to separate module. Because it's source code not related to Tapo.
TP-Link Kasa non-standard protocol more info.
username- urlsafe email,alex@gmail.com->alex%40gmail.compassword- base64password,secret1->c2VjcmV0MQ==
yaml
streams:
kc401: kasa://username:password@192.168.1.123:19443/https/stream/mixedTested: KD110, KC200, KC401, KC420WS, EC71.
TP-Link Vigi
TP-Link VIGI cameras. These are cameras from a different sub-brand, but the format is very similar to Tapo. Only the authorization is different. Read more here.
yaml
streams:
camera1: vigi://admin:{password}@192.168.1.123