arkhipenko / esp32-mjpeg-multiclient-espcam-drivers

ESP32 MJPEG Multiclient Streaming Server with latest Espressif drivers
BSD 3-Clause "New" or "Revised" License
167 stars 40 forks source link

How to flip Video horizontally and vertically #1

Closed gannaramu closed 3 years ago

leogala commented 4 years ago

I had the same doubt. I solved by adding in setup() after the camera initialization, before "IPAddress ip":

static sensor_t * s = esp_camera_sensor_get(); //set initial flips s->set_hmirror(s, 1); s->set_vflip(s, 1);

BTW, Excellent work !

arkhipenko commented 3 years ago

Looks like you have found the solution. Thanks!