I wrote a simple relay script that connects to a web camera and reads from the socket, and outputs this data using the print function. The data is MJPG data with boundaries already setup. I just output the data that is read.

The problem is PHP seems to be buffering this data. When I set the camera to 1 FPS, the feed will freeze for 7-8 seconds, then quickly display 8 frames. If I set the resolution to a huge size, the camera move at more or less 1 frame per second. I assume then some buffering is happening (since huge sizes fill the buffer quickly, and low sizes don't), and I can't figure out how to disable this buffering. Does anyone know how to?

Code:

ignore_user_abort(false);

$boundary = "myboundary";

//Set this so PHP doesn't timeout during a long stream
set_time_limit(0);

$socketConn = @fsockopen ("192.168.1.6", 1989, $errno, $errstr, 2);
if (!$socketConn)
exit();
stream_set_timeout($socketConn, 10);
fputs ($socketConn, "GET /mjpeg HTTP/1.0\r\n\r\n");

//Setup Header Information
header("Cache-Control: no-cache");
header("Cache-Control: private");
header("Pragma: no-cache");
header("Content-type: multipart/x-mixed-replace; boundary=$boundary");

@ini_set('implicit_flush', 1);
for ($i = 0; $i < ob_get_level(); $i++)
ob_end_flush();
ob_implicit_flush(1);

stream_set_blocking($f2, false);

//Send data to client
while (connection_status() == CONNECTION_NORMAL)
{
    $chunk = fread($socketConn, 128);
    print $chunk;   
}

fclose($socketConn);
link|improve this question

60% accept rate
Show us some relevant code! We can't guess at what you're doing. Or rather, we can, but it probably won't help much. – bdares Jan 16 at 15:46
feedback

2 Answers

up vote 6 down vote accepted

Rather than disabling output buffering, you can just call flush() after every read operation. This avoids having to mess with the server configuration and makes your script more portable.

link|improve this answer
1  
In addition, ob_flush() is sometimes also needed. – Brad Jan 16 at 15:47
1  
Indeed, although I think this should only be necessary if you have called ob_start() - I seem to remember it emits a warning otherwise. – DaveRandom Jan 16 at 15:48
1  
There is probably no point in making your socket non-blocking, this may cause a race condition with your code. The flush() call should be placed immediately after the print call in the loop. If this is still not working, please show the output of ini_get('output_buffering'); and ini_get('zlib.output_compression'); – DaveRandom Jan 16 at 17:18
1  
That is because by the time you execute ini_set('output_buffering', 0); the script is already running and the output buffer has already started - it is not changable at run time. Can you set it in a .htaccess file? This should be a work around, if you host allows it. You will probably still need to flush(). – DaveRandom Jan 16 at 17:48
1  
Yep, should do the trick as long as 1) you are running Apache 2) you are running PHP as a module, not in CGI mode. If either of these are not true, you will need to modify php.ini, which should be avoided if possible as this is a site- (or possibly server-) wide change. Not sure if the quotes are necessary or valid, just have a play around with it. – DaveRandom Jan 16 at 17:59
show 6 more comments
feedback

that's right use flush() or ob_flush()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.