Azsde

Results 62 comments of Azsde

Hi, I've purchased the same model, and latest release doesn't allow to change light level nor color. @JeffSteinbok what information do you need to add support for this model ?...

Hi @davidplowman, thank you for your input. I updated the timestamp checker script to have 33.3 instead of 20.0 and indeed there are no lost frames at 30FPS, sorry I...

Hi @davidplowman Without doing the "extra MJPEG encode", and with a "simple" script I achieve a decent result: ```python import time from datetime import datetime from libcamera import controls, Transform...

I see, thank you for your answer. I have made some changes: Before adding force_turbo=1 i have those values: ``` throttled=0x0 temp=46.7'C frequency(48)=1800457088 frequency(1)=319992192 ``` Adding force_turbo=1 does seem to...

Yeah I'm was on an older version (0.3.23-1), after upgrading it works correctly :) Silly question, does capture_request takes a still of the video or is it a proper "photo...

Awesome! I didn't know it was possible to both have a continuous recording and a regular picture taken ! Edit: I may have misunderstood how things work, if I want...

I see, thank you very much for your answer. So the solution if I want max resolution picture would be to pause/stop the recording, take the picture, and resume/start a...

> Yes. As things stand, I think you'd have to stop the recording, and start another afterwards. > > I suppose one could have a feature where the recording is...

@davidplowman I've tried with the following code: ``` import time from libcamera import Transform from picamera2 import Picamera2 from picamera2.encoders import H264Encoder, Quality picam2 = Picamera2() cfg = picam2.create_video_configuration(main={"size": (1920,...

Awesome, it works really well now ! Thank you :)