forked from stz2012/epgrec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sendstream.php
51 lines (40 loc) · 1.39 KB
/
sendstream.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
header("Expires: Thu, 01 Dec 1994 16:00:00 GMT");
header("Last-Modified: ". gmdate("D, d M Y H:i:s"). " GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
include_once("config.php");
include_once(INSTALL_PATH . "/DBRecord.class.php" );
include_once(INSTALL_PATH . "/reclib.php" );
include_once(INSTALL_PATH . "/Settings.class.php" );
$settings = Settings::factory();
if( ! isset( $_GET['reserve_id'] )) jdialog("予約番号が指定されていません", "recordedTable.php");
$reserve_id = $_GET['reserve_id'];
try{
$rrec = new DBRecord( RESERVE_TBL, "id", $reserve_id );
$start_time = toTimestamp($rrec->starttime);
$end_time = toTimestamp($rrec->endtime );
$duration = $end_time - $start_time;
$size = 3 * 1024 * 1024 * $duration; // 1秒あたり3MBと仮定
header('Content-type: video/mpeg');
header('Content-Disposition: inline; filename="'.$rrec->path.'"');
header('Content-Length: ' . $size );
ob_clean();
flush();
$fp = @fopen( INSTALL_PATH.$settings->spool."/".$rrec->path, "r" );
if( $fp !== false ) {
do {
$start = microtime(true);
if( feof( $fp ) ) break;
echo fread( $fp, 6292 );
@usleep( 2000 - (int)((microtime(true) - $start) * 1000 * 1000));
}
while( connection_aborted() == 0 );
}
fclose($fp);
}
catch(exception $e ) {
exit( $e->getMessage() );
}
?>