I’ve modified the IPCapture library as you suggested.
Now, the image resizes but only the first one, then the image freezes and, eventhough the console says it keeps resizing images, they are not shown.
This is the code I have:
IPCapture cam;
void setup() {
fullScreen();
cam = new IPCapture(this, "http://"+R2B2ip+"/?action=stream", "", "");
cam.start();
}
void draw() {
if (cam.isAvailable()) {
cam.read();
cam.resize(displayWidth,displayHeight);
image(cam, 0, 0);
}
else{
print("fail");
}
}
@GWAK Do you remember if you did something different? Maybe you still have the code? I’ve been trying to solve this problem for days and I am getting desperate. Thank you so much!