Herbert BETZ
Herbert BETZ
Same error today, when I tried to install the BirdNET-Pi on 'ubuntu-24.04-preinstalled-server-arm64+raspi.img'. I thought to have read somewhere, that BirdNET-Pi prefers ubuntu before bullseye? ChatGPT also thinks, it can be...
Thanks for all your proposals. There seem to be some errors possible with installation: downloaded on 5.5.2025 from https://github.com/Stirling-Tools/Stirling-PDF "docker build -t betzstirling:latest ." in d:\Stirling-pdf-main -> COPY build/libs/*.jar app.jar,...
[videvents_py.txt](https://github.com/user-attachments/files/21578138/videvents_py.txt)
``` import os import subprocess import time import io from picamera2 import Picamera2 from picamera2.encoders import H264Encoder, Quality from picamera2.outputs import FileOutput, CircularOutput import libcamera import importlib.metadata # only for...
Many thanks for the quick reply. Leaving the camera running, no matter if I use picam.stop_recording() or additionally picam.stop_encoder() makes the python script hang on the second still. With keyboard...
The following code is probably what you meant. And you were right: picam.stop_encoder() alone does not hang the following picam.capture_file() like picam.stop_recording() did. But then why is the .start_recording()/.stop_recording() useful...
P.S.: If circular_output is used, the hanging will not ensue: ``` encoder = H264Encoder() circ_output = CircularOutput() picam.start_recording(encoder, c_output, quality=Quality.MEDIUM) # or better picam.start_encoder(...) time.sleep(5) # accumulate pretrigger frames outmem...
Ah, yes, thanks again for the fast responses, I was confused, because it looked to me, that picam.start_recording() and picam.start_encoder() did the same thing, whereas for their stop versions, only...
Many thanks for your hints, I also did not know about 'https://datasheets.raspberrypi.com/'. Concerning, why the current AGC/AEC metering would not meet my requirements: It all started with yellowish camera recordings...
Sorry to bother again. Just as I started watching the built-in AGC/AEC metering (and no longer manipulating it by my own `picam.set_controls(camsetting)`), something strange happened this morning, which has already...