Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/self/root/mnt/home/include/mp4info/Box/ |
Upload File : |
<?php
/**
* MP4Info
*
* @author Tommy Lacroix <lacroix.tommy@gmail.com>
* @copyright Copyright (c) 2006-2009 Tommy Lacroix
* @license LGPL version 3, http://www.gnu.org/licenses/lgpl.html
* @package php-mp4info
* @link $HeadURL: http://php-mp4info.googlecode.com/svn/trunk/MP4Info/Box/uuid.php $
*/
// ---
/**
* x.x ??? (UUID)
*
* @author Tommy Lacroix <lacroix.tommy@gmail.com>
* @version 1.0.20090601 $Id: uuid.php 2 2009-06-11 14:12:31Z lacroix.tommy@gmail.com $
* @todo Limited to XMP meta data... extend
*/
class MP4Info_Box_uuid extends MP4Info_Box {
// {{{ Constants
const UUID_XMP_METADATA = 'BE7ACFCB97A942';
// }}} Constants
/**
* UUID
*
* @var string
*/
protected $uuid;
/**
* XMP data
*
* @var string
*/
protected $xmp;
/**
* Constructor
*
* @author Tommy Lacroix <lacroix.tommy@gmail.com>
* @param int $totalSize
* @param int $boxType
* @param file|string $data
* @param MP4Info_Box $parent
* @return MP4Info_Box_uuid
* @access public
* @throws MP4Info_Exception
*/
public function __construct($totalSize, $boxType, $data, $parent) {
if (!self::isCompatible($boxType, $parent)) {
throw new Exception('This box isn\'t "uuid"');
}
// Call ancestor
parent::__construct($totalSize,$boxType,'',$parent);
// Unpack
$data = self::getDataFrom3rd($data,$totalSize);
$this->uuid = bin2hex(substr($data,0,16));
$this->xmp = substr($data,16);
} // Constructor
/**
* Check if block is compatible with class
*
* @author Tommy Lacroix <lacroix.tommy@gmail.com>
* @param int $boxType
* @param MP4Info_Box $parent
* @return bool
* @access public
* @static
*/
static public function isCompatible($boxType, $parent) {
return $boxType == 0x75756964;
} // isCompatible method
/**
* UUID getter
*
* @author Tommy Lacroix <lacroix.tommy@gmail.com>
* @return string
* @access public
*/
public function getUUID() {
return strtoupper($this->uuid);
} // getUUID method
/**
* XMP Meta data getter
*
* @author Tommy Lacroix <lacroix.tommy@gmail.com>
* @return string
* @access public
*/
public function getXMPMetaData() {
return (substr(strtoupper($this->uuid),0,14) == self::UUID_XMP_METADATA) ? $this->xmp : false;
} // getXMPMetaData method
/**
* String converter
*
* @author Tommy Lacroix <lacroix.tommy@gmail.com>
* @return string
* @access public
*/
public function toString() {
return '[MP4Info_Box_uuid]';
} // toString method
} // MP4Info_Box_uuid class