Metainformationen zur Seite
  •  

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
digitales:software:raspian:camera [15.03.2024] – [Camera Module 3 on RPi5] csdigitales:software:raspian:camera [24.04.2025] (aktuell) – ↷ Seite von digitales:sdr:software:raspian:camera nach digitales:software:raspian:camera verschoben cs
Zeile 24: Zeile 24:
 ===== Streaming ===== ===== Streaming =====
  
-Ein hartes Brot!+Ein hartes Brot bis dahin! Tagelange Suche und immer wieder Fehlschläge. Mit **"Picamera2 WebUI Lite"** hat es dann endlich funktioniert, und zwar auf Anhieb!
  
   * [[https://www.tomshardware.com/raspberry-pi/how-to-control-your-raspberry-pi-camera-using-a-web-ui|How to Control your Raspberry Pi Camera using a web UI]]. Das funktioniert   * [[https://www.tomshardware.com/raspberry-pi/how-to-control-your-raspberry-pi-camera-using-a-web-ui|How to Control your Raspberry Pi Camera using a web UI]]. Das funktioniert
   * [[https://github.com/monkeymademe/picamera2-WebUI-Lite|Picamera2 WebUI Lite (github)]]   * [[https://github.com/monkeymademe/picamera2-WebUI-Lite|Picamera2 WebUI Lite (github)]]
   * [[https://raspberrytips.com/how-to-live-stream-pi-camera/|How To Live Stream The Raspberry Pi Camera (2 Easy Ways)]]. Noch nicht ausprobiert.   * [[https://raspberrytips.com/how-to-live-stream-pi-camera/|How To Live Stream The Raspberry Pi Camera (2 Easy Ways)]]. Noch nicht ausprobiert.
 +
  
 ==== Einrichtung ==== ==== Einrichtung ====
Zeile 71: Zeile 72:
 </code> </code>
  
-=== Eintrag in crontab einrichten ===+=== Mit systemd beim Booten starten ===
  
 <code -> <code ->
-sudo crontab -e+sudo nano /lib/systemd/system/picam.service
 </code> </code>
  
-<code -+<code bash /lib/systemd/system/picam.service
-@reboot /home/cs/picamera2-WebUI-Lite-main/picamera2.sh &+[Unit] 
 +Description=Start picam 
 +After=multi-user.target 
 + 
 +[Service] 
 +ExecStart=/usr/bin/bash /home/cs/picamera2-WebUI-Lite-main/picamera2.sh 2>&
 + 
 +[Install] 
 +WantedBy=multi-user.target
 </code> </code>
  
-**Voll qualifizierten Pfad angeben!**+<code -> 
 +sudo chmod 644 /lib/systemd/system/picam.service 
 +</code>
  
 <code -> <code ->
-sudo reboot+sudo systemctl daemon-reload 
 +sudo systemctl enable picam.service 
 +sudo systemctl start picam.service
 </code> </code>
  
Zeile 91: Zeile 104:
  
 [[http://192.168.178.213]]:**8080**/ [[http://192.168.178.213]]:**8080**/
 +
 +==== Einbindung des Video-Streams in Octoprint ====
  
 In Octoprint unter Einstellungen -> Classic Webcam -> Stream-URL "[[http://192.168.178.213:8080/video_feed]]" eintragen In Octoprint unter Einstellungen -> Classic Webcam -> Stream-URL "[[http://192.168.178.213:8080/video_feed]]" eintragen
 +
 +==== Einbindung Snapshot & Zeitraffer in Octoprint ====
 +
 +[[https://github.com/monkeymademe/picamera2-WebUI-Lite/issues/31#issuecomment-2002164553| Implement snapshot #31 (github)]]