#302·crow

Use CROW to implement a MJPEG video streaming server

Author: shogunxamCreated May 2, 2018Updated May 15, 2025

Using flask and sending a response like: ---Response start here---- Content-Type: multipart/x-mixed-replace; boundary=frame --frame Content-Type: image/jpeg Content-Length: #image_size#

##image_data## --frame-- ---Response end here----

I was able to build a very simple MJPEG video streaming server. Is it possible achieve the same result with CROW? I have tried with a similar approach but I'm able to show only the first frame, I have to manually refresh the browser to send another request and receive the new frame.