mirror of
https://github.com/gtxaspec/wz_mini_hacks.git
synced 2024-11-09 15:08:21 +00:00
S18fps: add function to set using impdbg if fps>20
This commit is contained in:
parent
20ea8e772e
commit
34712eb4ee
36
README.md
36
README.md
@ -44,7 +44,7 @@ Using this project can potentially expose your device to the open internet depen
|
||||
|
||||
## Coming Soon
|
||||
* onvif - maybe
|
||||
* overlayfs support
|
||||
* overlayfs support - maybe
|
||||
|
||||
## How you can help!
|
||||
* Vertical Tilt on the PANv2 doesn't work properly. Only does this on the modified kernel. Need investigation why this happens.
|
||||
@ -294,10 +294,29 @@ ENABLE_NFSv4="true"
|
||||
|
||||
---
|
||||
|
||||
### Video Settings
|
||||
|
||||
You can configure the following settings that will apply to the video streams:
|
||||
|
||||
```
|
||||
VIDEO_0_MAX_BITRATE=""
|
||||
VIDEO_0_TARGET_BITRATE=""
|
||||
VIDEO_0_ENC_PARAMETER=""
|
||||
VIDEO_0_FPS=""
|
||||
```
|
||||
|
||||
VIDEO_0 = 1080p stream
|
||||
VIDEO_1 = 360p stream
|
||||
|
||||
- Higher video bitrates may overload your Wi-Fi connection, so a wired connection is recommended.
|
||||
- Setting the FPS is not required unless you want to change the default device settings (20 day/15 night FPS for V3, 15 day/10 night FPS for V2).
|
||||
- `ENC_PARAMETER` accepts numbers only. 0=FIXQP, 1=CBR, 2=VBR, 4=CAPPED VBR, 8=CAPPED QUALITY. **Currently only 2, 4, and 8 are working**
|
||||
|
||||
---
|
||||
|
||||
### RTSP streaming:
|
||||
The RTSP server supports up to two video streams provided by the camera, 1080p/360p (1296p/480p for the DB3 [DoorBell3]). You can choose to enable a single stream of your choice (HI or LOW), or both. Audio is also available. If you do not have `RTSP_AUTH_DISABLE="true"` **MAKE SURE TO SET** your login credentials!
|
||||
#### NOTES
|
||||
- `ENC_PARAMETER` accepts numbers only. 0=FIXQP, 1=CBR, 2=VBR, 4=CAPPED VBR, 8=CAPPED QUALITY. **Currently only 2, 4, and 8 are working**
|
||||
- V2 and V3 endpoints are not the same!
|
||||
|
||||
```
|
||||
@ -307,17 +326,9 @@ RTSP_PORT="8554"
|
||||
|
||||
RTSP_HI_RES_ENABLED="true"
|
||||
RTSP_HI_RES_ENABLE_AUDIO="true"
|
||||
RTSP_HI_RES_MAX_BITRATE="2048"
|
||||
RTSP_HI_RES_TARGET_BITRATE="1024"
|
||||
RTSP_HI_RES_ENC_PARAMETER="2"
|
||||
RTSP_HI_RES_FPS=""
|
||||
|
||||
RTSP_LOW_RES_ENABLED="false"
|
||||
RTSP_LOW_RES_ENABLE_AUDIO="false"
|
||||
RTSP_LOW_RES_MAX_BITRATE=""
|
||||
RTSP_LOW_RES_TARGET_BITRATE=""
|
||||
RTSP_LOW_RES_ENC_PARAMETER=""
|
||||
RTSP_LOW_RES_FPS=""
|
||||
|
||||
RTSP_AUTH_DISABLE="false"
|
||||
|
||||
@ -332,12 +343,9 @@ multiple streams are located at
|
||||
- **V3** - ```rtsp://login:password@IP_ADDRESS:8554/video1_unicast``` and ```rtsp://login:password@IP_ADDRESS:8554/video2_unicast```
|
||||
- **V2** - ```rtsp://login:password@IP_ADDRESS:8554/video6_unicast``` and ```rtsp://login:password@IP_ADDRESS:8554/video7_unicast```
|
||||
|
||||
|
||||
You may disable authentication by setting `RTSP_AUTH_DISABLE="true"`
|
||||
|
||||
Setting the FPS is not required unless you want to change the default device settings (20 day/15 night FPS for V3, 15 day/10 night FPS for V2).
|
||||
|
||||
Note: If you don't set the password, the password will be set to the unique MAC address of the camera, in all uppercase, including the colons... for example:. AA:BB:CC:00:11:22. It's typically printed on the camera. Higher video bitrates may overload your Wi-Fi connection, so a wired connection is recommended.
|
||||
Note: If you don't set the password, the password will be set to the unique MAC address of the camera, in all uppercase, including the colons... for example:. AA:BB:CC:00:11:22. It's typically printed on the camera.
|
||||
|
||||
Huge credit to @mnakada for his libcallback library: [https://github.com/mnakada/atomcam_tools](https://github.com/mnakada/atomcam_tools)
|
||||
|
||||
|
@ -2,34 +2,49 @@
|
||||
### BEGIN INIT INFO
|
||||
# Provides:
|
||||
# Short-Description: Set system FPS
|
||||
# Description: Set system FPS if greater than factory defaults
|
||||
# Description: Set system FPS in the hualai config based on user settings
|
||||
### END INIT INFO
|
||||
|
||||
. /opt/wz_mini/wz_mini.conf
|
||||
|
||||
imp_fps() {
|
||||
wait_for_icamera
|
||||
|
||||
##FPS should only need to be set once at boot, it shouldn't normally change after.
|
||||
#should be run after icamera is up --- FIXME
|
||||
if [ -n "$VIDEO_0_FPS" ]; then
|
||||
echo "Setting CH0 FPS"
|
||||
/system/bin/impdbg --enc_rc_s 0:8:4:$VIDEO_0_FPS
|
||||
else
|
||||
echo "fps channel 0 is empty"
|
||||
fi
|
||||
|
||||
if [ -n "$VIDEO_1_FPS" ]; then
|
||||
echo "Setting CH0 FPS"
|
||||
/system/bin/impdbg --enc_rc_s 1:8:4:$VIDEO_1_FPS
|
||||
else
|
||||
echo "fps channel 1 is empty"
|
||||
fi
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
|
||||
echo "#####$(basename "$0")#####"
|
||||
|
||||
echo "Seting system FPS if greater than default"
|
||||
|
||||
if [ $RTSP_HI_RES_FPS -gt 20 ]; then
|
||||
if [ $VIDEO_0_FPS -gt 20 ]; then
|
||||
#We may set fps below 20 using impdbg
|
||||
echo "System FPS greater than default, setting."
|
||||
if cat /configs/.user_config | grep fps; then
|
||||
sed -i "s/fps.*/fps\=$RTSP_HI_RES_FPS/" /configs/.user_config
|
||||
sed -i "s/fps.*/fps\=$VIDEO_0_FPS/" /configs/.user_config
|
||||
else
|
||||
sed -i "/\[SETTING\].*/a fps=$RTSP_HI_RES_FPS" /configs/.user_config
|
||||
fi
|
||||
|
||||
elif [ $RTSP_LOW_RES_FPS -gt 20 ]; then
|
||||
if cat /configs/.user_config | grep fps; then
|
||||
sed -i "s/fps.*/fps\=$RTSP_LOW_RES_FPS/" /configs/.user_config
|
||||
else
|
||||
sed -i "/\[SETTING\].*/a fps=$RTSP_LOW_RES_FPS" /configs/.user_config
|
||||
sed -i "/\[SETTING\].*/a fps=$VIDEO_0_FPS" /configs/.user_config
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
imp_fps &
|
||||
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start}"
|
||||
|
@ -58,21 +58,21 @@ RTSP_PORT="8554"
|
||||
|
||||
RTSP_HI_RES_ENABLED="false"
|
||||
RTSP_HI_RES_ENABLE_AUDIO="false"
|
||||
RTSP_HI_RES_FPS=""
|
||||
|
||||
RTSP_LOW_RES_ENABLED="false"
|
||||
RTSP_LOW_RES_ENABLE_AUDIO="false"
|
||||
RTSP_LOW_RES_FPS=""
|
||||
|
||||
RTSP_AUTH_DISABLE="false"
|
||||
|
||||
VIDEO_0_MAX_BITRATE=""
|
||||
VIDEO_0_TARGET_BITRATE=""
|
||||
VIDEO_0_ENC_PARAMETER=""
|
||||
VIDEO_0_FPS=""
|
||||
|
||||
VIDEO_1_MAX_BITRATE=""
|
||||
VIDEO_1_TARGET_BITRATE=""
|
||||
VIDEO_1_ENC_PARAMETER=""
|
||||
VIDEO_1_FPS=""
|
||||
|
||||
#####RTMP STREAMING#####
|
||||
#### REQUIRES RTSP ####
|
||||
|
Loading…
Reference in New Issue
Block a user