Oshri Levi

Results 20 comments of Oshri Levi

@gao-sun eul is getting 100% in my system right from the start, all the time. If you need help in debugging this, ping me

any chance of this being merged? ipv6 is unusable without this :|

Until we get a fix, I used `socat` to redirect traffic from fe80:: IP to the IPv4 one: ```bash socat -T 1 UDP6-LISTEN:53,fork,reuseaddr,bind=[$IPV6%$IPV6_INTERFACE] UDP4:$IPV4 ``` Just replace $IPV6 with the...

Hi, Thank you for the firmware! I've managed to load it into the camera, but I'm unable to view the rtsp stream or take a snapshot.

Adding the I was able to see the temperature and humidity value with `dmesg`: ``` [ 133.684747] ----sht3x temperature(26833), humidity(56146)---- root@yi-d203:~/bin# ```

Hi, I Wrote a small script that fetches the temp data from dmesg and publishes it in MQTT: ```bash #!/bin/sh YI_HACK_PREFIX="/home/yi-hack" CAMERA_CONF_FILE="$YI_HACK_PREFIX/etc/camera.conf" MQTT_CONF_FILE="$YI_HACK_PREFIX/etc/mqttv4.conf" . $MQTT_CONF_FILE if [ -z "$MQTT_IP" ];...

> About the stream, please send me a copy of your buffer /dev/shm/fshare_frame_buf https://drive.google.com/file/d/1-K7e7LzqW91J6t0hKw_Dx4UXc3wZGa-z/view?usp=sharing > It's not necessary, you can load a message from file with ipc_cmd. > Save the...

Another update: The correct message for light on is: `\x01\x00\x00\x00\x08\x00\x00\x00\x22\x40\x01\x00\x01\x00\x00\x00\x01` For light off its: `\x01\x00\x00\x00\x08\x00\x00\x00\x22\x40\x01\x00\x01\x00\x00\x00\x00` The light also has an option to control the brightness and it has a physical...

> Great! Keep me updated. > About the stream, try to overwrite the standard binaries with the content of this archive. > It should work, both rtsp and snapshot. >...

> h264grabber is not needed anymore to run rRTSPServer. > > It seems that rRTSPServer is not able to detect the type of stream. Please try low res stream. Same...