How can I change the resulotion for the ESP32-Cam ?

Hey there :smiley:

I have some problems with the screen resolution for the ESP32-Cam Streaming-URL.

I repeat: for the streaming URL like this one: http://192.168.43.125:81/stream

If I open that url, than automaticly the smallest resultion is being used. Is there a way to change the resolution within the URL ? For example:

http://192.168.43.125:81/stream/1200px

Okay falks, I have solved the problem withing the code itself:

  if(psramFound()){
    config.frame_size = FRAMESIZE_XGA;
    config.jpeg_quality = 12;
    config.fb_count = 2;
  } else {
    config.frame_size = FRAMESIZE_XGA;
    config.jpeg_quality = 12;
    config.fb_count = 1;
  }

Just changed these parameters before flashing the ESP-Cam.