chrisruk

Results 30 comments of chrisruk

Just found something interesting @davidplowman If I add start_x=1, to /boot/config.txt I do get - test.mjpeg: JPEG image data, baseline, precision 8, 1280x720, components 3 I think that might of...

Thanks, that's a useful command to know. Added a pull request regarding timestamps for MJPEG here - https://github.com/raspberrypi/picamera2/pull/365

What happens if you don't initialise Picamera(0), Picamera(1), each function call? Does that help? As in could you do that outside of the function potentially, and also configure outside of...

Sorry just edited my comment with what I was thinking at the same time as you posted. What you have looks the same as what I was thinking. I don't...

Cheers, will do, one other idea ``` from picamera2 import Picamera2 cam1 = Picamera2(0) config1 = cam1.create_still_configuration() cam1.configure(config1) cam1.start() cam2 = Picamera2(1) config2 = cam2.create_still_configuration() cam2.configure(config2) cam2.start() def take_pictures(): cam1.capture_file("sim_test_c1.jpg")...

Yeah, so without my changes to the close function, and without then calling .close() The following example would fail with 'RuntimeError: Configuration failed' ``` #!/usr/bin/python3 import picamera2 def takephoto(cam): picam2...

That's a good question re. calling del, I'll try that to see if that functions now, without also having to call gc.collect(). Also good point re. using 'with', will switch...

Even with a 10s delay prior to re-creating Picamera2, still gives me libcamera errors. I also found something else interesting, I found a case where using .close() with the change...

I found that the APA102 datasheet wasn't detailed enough with respect to how the 'end frame' should be created. I found the following excellent information at https://cpldcpu.wordpress.com/2014/11/30/understanding-the-apa102-superled/ which states "An...

Thanks, I don't think I'd seen that repo before, will have a look :)