I have some c code that takes mjpeg frames from a shared memory segment and writes them to STDOUT, inserting the correct HTTP header at the start of the first frame and the correct HTTP boundary between one frame and another. Those frames are continuously generated live (in real-time). the program compiles well and does what it should be done.

What I would like to do is use this little program as a CGI process: my web server should execute the program every time a certain HTTP request is called, then write its standard output to the client socket. All of this should be done without buffering (ie. the web server should not try to buffer the cgi answer, as it could be potentially endless - remember the frames are streamed live).

I have the choice of using either lighttpd or nginix web server. They are already compiled for my ARM target platform.

Is there a known way to configure one of these servers to do what I need? Here's, schematically, what my program does:

// As soon as someone connects  
fprintf (stdout, "Connection: close"\
                 "\r\n" \
                 "Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0" \
                 "\r\n" \
                 "Pragma: no-cache" \
                 "\r\n" \
                 "Content-Type: multipart/x-mixed-replace;boundary=" BOUNDARY \
                 "\r\n" \
                 "\r\n" \
                 "--" BOUNDARY "\r\n");

[...]

while (1) {

    //Magically take the frame from the shared memory

    fprintf(stdout, "Content-Type: image/jpeg\r\n" \
                    "Content-Length: %d\r\n" \
                    "\r\n", frame_length);

    DBG("sending frame\n");
    if ((fwrite(frame_data, frame_length, sizeof (char) , stdout)) == 0 ) {
        ERR ("Error sending frame");
        break;
    }

    DBG("sending boundary\n");
    fprintf(stdout, "\r\n--" BOUNDARY "\r\n");
    }
link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.