zoneminder/web/views/view_video.php

115 lines
3.0 KiB
PHP
Raw Normal View History

<?php
//
// ZoneMinder web video view file, $Date: 2008-09-29 14:15:13 +0100 (Mon, 29 Sep 2008) $, $Revision: 2640 $
// Copyright (C) 2001-2008 Philip Coombes
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// Calling sequence: ... /zm/index.php?view=video&event_id=123
//
// event_id is the id of the event to view
//
// Does not support scaling at this time.
//
2016-08-31 22:09:01 +08:00
if ( !canView( 'Events' ) ) {
$view = 'error';
2016-08-31 22:09:01 +08:00
return;
}
require_once('includes/Event.php');
$errorText = false;
2016-08-31 22:09:01 +08:00
$path = '';
$Event = null;
if ( ! empty($_REQUEST['eid'] ) ) {
2016-08-31 22:09:01 +08:00
$Event = new Event( $_REQUEST['eid'] );
$path = $Event->Path().'/'.$Event->DefaultVideo();
2017-05-19 01:54:06 +08:00
Logger::Debug("Path: $path");
} else {
2017-04-19 22:09:27 +08:00
$errorText = 'No video path';
}
2016-08-31 22:09:01 +08:00
if ( $errorText ) {
Error( $errorText );
2017-04-19 22:09:27 +08:00
header('HTTP/1.0 404 Not Found');
2016-08-31 22:09:01 +08:00
die();
}
$size = filesize($path);
$fh = @fopen($path,'rb');
if ( ! $fh ) {
2017-04-19 22:09:27 +08:00
header('HTTP/1.0 404 Not Found');
2016-08-31 22:09:01 +08:00
die();
}
$begin = 0;
$end = $size-1;
$length = $size;
2016-08-31 22:09:01 +08:00
if ( isset( $_SERVER['HTTP_RANGE'] ) ) {
2017-05-19 01:54:06 +08:00
Logger::Debug("Using Range " . $_SERVER['HTTP_RANGE'] );
2016-08-31 22:09:01 +08:00
if ( preg_match( '/bytes=\h*(\d+)-(\d*)[\D.*]?/i', $_SERVER['HTTP_RANGE'], $matches) ) {
$begin = intval( $matches[1] );
if ( ! empty( $matches[2]) ) {
$end = intval( $matches[2] );
}
$length = $end - $begin + 1;
2017-05-19 01:54:06 +08:00
Logger::Debug("Using Range $begin $end size: $size, length: $length");
2016-08-31 22:09:01 +08:00
}
} # end if HTTP_RANGE
header('Content-type: video/mp4');
header('Accept-Ranges: bytes');
header('Content-Length: '.$length);
# This is so that Save Image As give a useful filename
if ( $Event ) {
header('Content-Disposition: inline; filename="' . $Event->DefaultVideo() . '"');
} else {
2017-05-19 00:49:59 +08:00
header('Content-Disposition: inline;');
}
if ( $begin > 0 || $end < $size-1 ) {
2016-08-31 22:09:01 +08:00
header('HTTP/1.0 206 Partial Content');
header("Content-Range: bytes $begin-$end/$size");
header("Content-Transfer-Encoding: binary\n");
header('Connection: close');
2016-08-31 22:09:01 +08:00
} else {
header('HTTP/1.0 200 OK');
}
2016-08-31 22:09:01 +08:00
// Apparently without these we get a few extra bytes of output at the end...
ob_clean();
flush();
2016-08-31 22:09:01 +08:00
$cur = $begin;
fseek( $fh, $begin, 0 );
while( $length && ( ! feof( $fh ) ) && ( connection_status() == 0 ) ) {
$amount = min( 1024*16, $length );
print fread( $fh, $amount );
$length -= $amount;
2017-05-19 00:49:59 +08:00
# Why introduce a speed limit?
#usleep(100);
flush();
2016-08-31 22:09:01 +08:00
}
2016-11-03 23:23:50 +08:00
fclose( $fh );
exit();