You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed this project with a rPi 3B+ and rPi camera module - everything worked great! When I set it up to run headless, it looks like the process starts, grabs one frame, then freezes. I'm not savvy enough to debug the main.py or camera.py files and understand/identify any issues.
The text was updated successfully, but these errors were encountered:
@Enginerd27 I had the same issue. I guessed main.py was being executed before all the necessary components were loaded by the OS. I followed #4 in this article and altered systemd and that seems to do the trick. My service file ended up looking something like:
[Unit]
Description=Remote Camera
After=multi-user.target
[Service]
Type=idle
ExecStart=/usr/bin/python3 /home/pi/pi-camera-stream-flask/main.py
[Install]
WantedBy=multi-user.target
I followed this project with a rPi 3B+ and rPi camera module - everything worked great! When I set it up to run headless, it looks like the process starts, grabs one frame, then freezes. I'm not savvy enough to debug the main.py or camera.py files and understand/identify any issues.
The text was updated successfully, but these errors were encountered: