I want to stream video from my Raspberry Pi connected to the Pi High Quality Camera to my computer for YOLO model detection. I tried to process it on the Pi, but the resources are insufficient. I also tried using this command to stream:
libcamera-vid -t 0 –width 1280 –height 720 –framerate 30 –inline -o – | cvlc stream:///dev/stdin –sout ‘#standard{access=http,mux=ts,dst=:8080/stream}’ :demux=h264
However, the video is not real-time, and the quality is poor. Could anyone suggest a better way to stream video from the Pi to my computer for YOLO detection?
1