Source for file getid3.php
Documentation is available at getid3.php
// +----------------------------------------------------------------------+
// +----------------------------------------------------------------------+
// | Copyright (c) 2002-2006 James Heinrich, Allan Hansen |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2 of the GPL license, |
// | that is bundled with this package in the file license.txt and is |
// | available through the world-wide-web at the following url: |
// | http://www.gnu.org/copyleft/gpl.html |
// +----------------------------------------------------------------------+
// | getID3() - http://getid3.sourceforge.net or http://www.getid3.org |
// +----------------------------------------------------------------------+
// | Authors: James Heinrich <infogetid3*org> |
// | Allan Hansen <ahartemis*dk> |
// +----------------------------------------------------------------------+
// | Main getID3() file. |
// | dependencies: modules. |
// +----------------------------------------------------------------------+
// $Id: getid3.php,v 1.26 2006/12/25 23:44:23 ah Exp $
//// Settings Section - do NOT modify this file - change setting after newing getid3!
public $encoding = 'ISO-8859-1'; // CASE SENSITIVE! - i.e. (must be supported by iconv() - see http://www.gnu.org/software/libiconv/). Examples: ISO-8859-1 UTF-8 UTF-16 UTF-16BE.
public $encoding_id3v1 = 'ISO-8859-1'; // Override SPECIFICATION encoding for broken ID3v1 tags caused by bad tag programs. Examples: 'EUC-CN' for "Chinese MP3s" and 'CP1251' for "Cyrillic".
public $encoding_id3v2 = 'ISO-8859-1'; // Override ISO-8859-1 encoding for broken ID3v2 tags caused by BRAINDEAD tag programs that writes system codepage as 'ISO-8859-1' instead of UTF-8.
// Tags - disable for speed
// Misc calucations - disable for speed
public $option_analyze = true; // Analyze file - disable if you only need to detect file format.
public $option_accurate_results = true; // Disable to greatly speed up parsing of some file formats at the cost of accuracy.
public $option_tags_process = true; // Copy tags to root key 'tags' and 'comments' and encode to $this->encoding.
public $option_tags_images = false; // Scan tags for binary image data - ID3v2 and vorbiscomments only.
public $option_extra_info = true; // Calculate/return additional info such as bitrate, channelmode etc.
public $option_max_2gb_check = false; // Check whether file is larger than 2 Gb and thus not supported by PHP.
// Misc data hashes - slow - require hash module
public $option_md5_data_source = false; // Use MD5 of source file if available - only FLAC, MAC, OptimFROG and Wavpack4.
public $filename; // Filename of file being analysed.
public $fp; // Filepointer to file being analysed.
public $info; // Result array.
const VERSION = '2.0.0b4';
const FREAD_BUFFER_SIZE = 16384; // Read buffer size in bytes.
const ICONV_TEST_STRING = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ ';
// Constructor - check PHP enviroment and load library.
// Static varibles - no need to recalc every time we new getid3.
// Import static variables
// Run init checks only on first instance.
// Check for presence of iconv() and make sure it works (simpel test only).
// iconv() not present - load replacement module.
// Require magic_quotes_runtime off
throw new getid3_exception('magic_quotes_runtime must be disabled before running getID3(). Surround getid3 block by set_magic_quotes_runtime(0) and set_magic_quotes_runtime(1).');
$memory_limit = ini_get('memory_limit');
if (eregi('([0-9]+)M', $memory_limit, $matches)) {
// could be stored as "16M" rather than 16777216 for example
$memory_limit = $matches[1] * 1048576;
if ($memory_limit <= 0) {
} elseif ($memory_limit <= 4194304) {
$this->warning('[SERIOUS] PHP has less than 4 Mb available memory and will very likely run out. Increase memory_limit in php.ini.');
} elseif ($memory_limit <= 12582912) {
$this->warning('PHP has less than 12 Mb available memory and might run out if all modules are loaded. Increase memory_limit in php.ini if needed.');
$this->warning('Safe mode is on, shorten support disabled, md5data/sha1data for ogg vorbis disabled, ogg vorbis/flac tag writing disabled.');
public function Analyze($filename) {
// Init result array and set parameters
// Remote files not supported
throw new getid3_exception('Remote files are not supported - please copy the file locally first.');
if (!$this->fp = @fopen($filename, 'rb')) {
// Set filesize related parameters
$this->info['avdataoffset'] = 0;
$this->info['avdataend'] = $this->info['filesize'];
// PHP doesn't support integers larger than 31-bit (~2GB)
// filesize() simply returns (filesize % (pow(2, 32)), no matter the actual filesize
// ftell() returns 0 if seeking to the end is beyond the range of unsigned integer
if ((($this->info['filesize'] != 0) && (ftell($this->fp) == 0)) ||
($this->info['filesize'] < 0) ||
unset ($this->info['filesize']);
throw new getid3_exception('File is most likely larger than 2GB and is not supported by PHP.');
// ID3v2 detection (NOT parsing) done to make fileformat easier.
if (substr($header, 0, 3) == 'ID3' && strlen($header) == 10) {
$this->info['id3v2']['header'] = true;
$this->info['id3v2']['majorversion'] = ord($header{3});
$this->info['id3v2']['minorversion'] = ord($header{4});
$this->info['avdataoffset'] += getid3_lib::BigEndian2Int(substr($header, 6, 4), 1) + 10; // length of ID3v2 tag in 10-byte header doesn't include 10-byte header length
foreach (array ("id3v2", "id3v1", "apetag", "lyrics3") as $tag_name) {
$option_tag = 'option_tag_' . $tag_name;
if ($this->$option_tag) {
$tag_class = 'getid3_' . $tag_name;
$tag = new $tag_class($this);
//// Determine file format by magic bytes in file header.
fseek($this->fp, $this->info['avdataoffset'], SEEK_SET);
$filedata = fread($this->fp, 32774);
// Get huge FileFormatArray
// Identify file format - loop through $format_info and detect with reg expr
foreach ($file_format_array as $name => $info) {
if (preg_match('/'. $info['pattern']. '/s', $filedata)) { // The /s switch on preg_match() forces preg_match() NOT to treat newline (0x0A) characters as special chars but do a binary match
// Format detected but not supported
if (!@$info['module'] || !@$info['group']) {
$this->info['fileformat'] = $name;
$this->info['mime_type'] = $info['mime_type'];
$this->warning('Format only detected. Parsing not available yet.');
$determined_format = $info; // copy $info deleted by foreach()
// Unable to determine file format
if (!@$determined_format) {
// Too many mp3 encoders on the market put gabage in front of mpeg files
// use assume format on these if format detection failed
$determined_format = $file_format_array['mp3'];
unset ($file_format_array);
// Check for illegal ID3 tags
if (@$determined_format['fail_id3'] && (@$this->info['id3v1'] || @$this->info['id3v2'])) {
if ($determined_format['fail_id3'] === 'ERROR') {
elseif ($determined_format['fail_id3'] === 'WARNING') {
@$this->info['id3v1'] and $this->warning('ID3v1 tags not allowed on this file type.');
@$this->info['id3v2'] and $this->warning('ID3v2 tags not allowed on this file type.');
// Check for illegal APE tags
if (@$determined_format['fail_ape'] && @$this->info['tags']['ape']) {
if ($determined_format['fail_ape'] === 'ERROR') {
} elseif ($determined_format['fail_ape'] === 'WARNING') {
$this->warning('APE tags not allowed on this file type.');
$this->info['mime_type'] = $determined_format['mime_type'];
$determined_format['include'] = 'module.'. $determined_format['group']. '.'. $determined_format['module']. '.php';
// Supported format signature pattern detected, but module deleted.
throw new getid3_exception('Format not supported, module, '. $determined_format['include']. ', was removed.');
$this->include_module($determined_format['group']. '.'. $determined_format['module']);
// Instantiate module class and analyze
$class_name = 'getid3_'. $determined_format['module'];
throw new getid3_exception('Format not supported, module, '. $determined_format['include']. ', is corrupt.');
$class = new $class_name($this);
// Optional - Process all tags - copy to 'tags' and convert charsets
//// Optional - perform more calculations
// Set channelmode on audio
if (@$this->info['audio']['channels'] == '1') {
$this->info['audio']['channelmode'] = 'mono';
} elseif (@$this->info['audio']['channels'] == '2') {
$this->info['audio']['channelmode'] = 'stereo';
// Calculate combined bitrate - audio + video
$combined_bitrate += (isset ($this->info['audio']['bitrate']) ? $this->info['audio']['bitrate'] : 0);
$combined_bitrate += (isset ($this->info['video']['bitrate']) ? $this->info['video']['bitrate'] : 0);
if (($combined_bitrate > 0) && empty($this->info['bitrate'])) {
$this->info['bitrate'] = $combined_bitrate;
if (!isset ($this->info['playtime_seconds']) && !empty($this->info['bitrate'])) {
$this->info['playtime_seconds'] = (($this->info['avdataend'] - $this->info['avdataoffset']) * 8) / $this->info['bitrate'];
if (!empty($this->info['playtime_seconds']) && empty($this->info['playtime_string'])) {
// CalculateCompressionRatioVideo() {
if (@$this->info['video'] && @$this->info['video']['resolution_x'] && @$this->info['video']['resolution_y'] && @$this->info['video']['bits_per_sample']) {
// From static image formats
if (in_array($this->info['video']['dataformat'], array ('bmp', 'gif', 'jpeg', 'jpg', 'png', 'tiff'))) {
$bitrate_compressed = $this->info['filesize'] * 8;
$frame_rate = @$this->info['video']['frame_rate'];
$bitrate_compressed = @$this->info['video']['bitrate'];
if ($frame_rate && $bitrate_compressed) {
$this->info['video']['compression_ratio'] = $bitrate_compressed / ($this->info['video']['resolution_x'] * $this->info['video']['resolution_y'] * $this->info['video']['bits_per_sample'] * $frame_rate);
// CalculateCompressionRatioAudio() {
if (@$this->info['audio']['bitrate'] && @$this->info['audio']['channels'] && @$this->info['audio']['sample_rate']) {
$this->info['audio']['compression_ratio'] = $this->info['audio']['bitrate'] / ($this->info['audio']['channels'] * $this->info['audio']['sample_rate'] * (@$this->info['audio']['bits_per_sample'] ? $this->info['audio']['bits_per_sample'] : 16));
if (@$this->info['audio']['streams']) {
foreach ($this->info['audio']['streams'] as $stream_number => $stream_data) {
if (@$stream_data['bitrate'] && @$stream_data['channels'] && @$stream_data['sample_rate']) {
$this->info['audio']['streams'][$stream_number]['compression_ratio'] = $stream_data['bitrate'] / ($stream_data['channels'] * $stream_data['sample_rate'] * (@$stream_data['bits_per_sample'] ? $stream_data['bits_per_sample'] : 16));
// CalculateReplayGain() {
if (@$this->info['replay_gain']) {
if (!@$this->info['replay_gain']['reference_volume']) {
$this->info['replay_gain']['reference_volume'] = 89;
if (isset ($this->info['replay_gain']['track']['adjustment'])) {
$this->info['replay_gain']['track']['volume'] = $this->info['replay_gain']['reference_volume'] - $this->info['replay_gain']['track']['adjustment'];
if (isset ($this->info['replay_gain']['album']['adjustment'])) {
$this->info['replay_gain']['album']['volume'] = $this->info['replay_gain']['reference_volume'] - $this->info['replay_gain']['album']['adjustment'];
if (isset ($this->info['replay_gain']['track']['peak'])) {
$this->info['replay_gain']['track']['max_noclip_gain'] = 0 - 20 * log10($this->info['replay_gain']['track']['peak']);
if (isset ($this->info['replay_gain']['album']['peak'])) {
$this->info['replay_gain']['album']['max_noclip_gain'] = 0 - 20 * log10($this->info['replay_gain']['album']['peak']);
// ProcessAudioStreams() {
if (@!$this->info['audio']['streams'] && (@$this->info['audio']['bitrate'] || @$this->info['audio']['channels'] || @$this->info['audio']['sample_rate'])) {
foreach ($this->info['audio'] as $key => $value) {
$this->info['audio']['streams'][0][$key] = $value;
// Get the md5/sha1sum of the audio/video portion of the file - without ID3/APE/Lyrics3/etc header/footer tags.
// Load data-hash library if needed
new getid3_lib_data_hash($this, 'sha1');
// no md5_data_source or option disabled -- md5_data_source supported by FLAC, MAC, OptimFROG, Wavpack4
new getid3_lib_data_hash($this, 'md5');
// copy md5_data_source to md5_data if option set to true
$this->info['md5_data'] = $this->info['md5_data_source'];
// Return array of warnings
// Add warning(s) to $this->warnings[]
public function warning($message) {
// Clear all warnings when cloning
// Copy info array, otherwise it will be a reference.
// Convert string between charsets -- iconv() wrapper
public function iconv($in_charset, $out_charset, $string, $drop01 = false) {
if ($drop01 && ($string === "\x00" || $string === "\x01")) {
return getid3_iconv_replacement::iconv($in_charset, $out_charset, $string);
if ($result = @iconv($in_charset, $out_charset. '//TRANSLIT', $string)) {
if ($out_charset == 'ISO-8859-1') {
return rtrim($result, "\x00");
$this->warning('iconv() was unable to convert the string: "' . $string . '" from ' . $in_charset . ' to ' . $out_charset);
// Return array containing information about all supported formats
static $format_info = array (
// AC-3 - audio - Dolby AC-3 / Dolby Digital
'pattern' => '^\x0B\x77',
'mime_type' => 'audio/ac3',
// AAC - audio - Advanced Audio Coding (AAC) - ADIF format
'mime_type' => 'application/octet-stream',
// AAC - audio - Advanced Audio Coding (AAC) - ADTS format (very similar to MP3)
'pattern' => '^\xFF[\xF0-\xF1\xF8-\xF9]',
'mime_type' => 'application/octet-stream',
// AU - audio - NeXT/Sun AUdio (AU)
'mime_type' => 'audio/basic',
// AVR - audio - Audio Visual Research
'mime_type' => 'application/octet-stream',
// BONK - audio - Bonk v0.9+
'pattern' => '^\x00(BONK|INFO|META| ID3)',
'mime_type' => 'audio/xmms-bonk',
// DTS - audio - Dolby Theatre System
'pattern' => '^\x7F\xFE\x80\x01',
'mime_type' => 'audio/dts',
// FLAC - audio - Free Lossless Audio Codec
'mime_type' => 'audio/x-flac',
// LA - audio - Lossless Audio (LA)
'pattern' => '^LA0[2-4]',
'mime_type' => 'application/octet-stream',
// LPAC - audio - Lossless Predictive Audio Compression (LPAC)
'mime_type' => 'application/octet-stream',
// MIDI - audio - MIDI (Musical Instrument Digital Interface)
'mime_type' => 'audio/midi',
// MAC - audio - Monkey's Audio Compressor
'mime_type' => 'application/octet-stream',
// MOD - audio - MODule (assorted sub-formats)
'pattern' => '^.{1080}(M.K.|[5-9]CHN|[1-3][0-9]CH)',
'mime_type' => 'audio/mod',
// MOD - audio - MODule (Impulse Tracker)
'mime_type' => 'audio/it',
// MOD - audio - MODule (eXtended Module, various sub-formats)
'pattern' => '^Extended Module',
'mime_type' => 'audio/xm',
// MOD - audio - MODule (ScreamTracker)
'pattern' => '^.{44}SCRM',
'mime_type' => 'audio/s3m',
// MPC - audio - Musepack / MPEGplus SV7+
'mime_type' => 'audio/x-musepack',
// MPC - audio - Musepack / MPEGplus SV4-6
'pattern' => '^([\x00\x01\x10\x11\x40\x41\x50\x51\x80\x81\x90\x91\xC0\xC1\xD0\xD1][\x20-37][\x00\x20\x40\x60\x80\xA0\xC0\xE0])',
'mime_type' => 'application/octet-stream',
// MP3 - audio - MPEG-audio Layer 3 (very similar to AAC-ADTS)
'pattern' => '^\xFF[\xE2-\xE7\xF2-\xF7\xFA-\xFF][\x00-\xEB]',
'mime_type' => 'audio/mpeg',
// OFR - audio - OptimFROG
'pattern' => '^(\*RIFF|OFR)',
'mime_type' => 'application/octet-stream',
// RKAU - audio - RKive AUdio compressor
'mime_type' => 'application/octet-stream',
'mime_type' => 'audio/xmms-shn',
// TTA - audio - TTA Lossless Audio Compressor (http://tta.corecodec.org)
'pattern' => '^TTA', // could also be '^TTA(\x01|\x02|\x03|2|1)'
'mime_type' => 'application/octet-stream',
// VOC - audio - Creative Voice (VOC)
'pattern' => '^Creative Voice File',
'mime_type' => 'audio/voc',
// VQF - audio - transform-domain weighted interleave Vector Quantization Format (VQF)
'mime_type' => 'application/octet-stream',
// WV - audio - WavPack (v4.0+)
'mime_type' => 'application/octet-stream',
// ASF - audio/video - Advanced Streaming Format, Windows Media Video, Windows Media Audio
'pattern' => '^\x30\x26\xB2\x75\x8E\x66\xCF\x11\xA6\xD9\x00\xAA\x00\x62\xCE\x6C',
'group' => 'audio-video',
'mime_type' => 'video/x-ms-asf',
// BINK - audio/video - Bink / Smacker
'pattern' => '^(BIK|SMK)',
'mime_type' => 'application/octet-stream',
// FLV - audio/video - FLash Video
'group' => 'audio-video',
'mime_type' => 'video/x-flv',
// MKAV - audio/video - Mastroka
'pattern' => '^\x1A\x45\xDF\xA3',
'mime_type' => 'application/octet-stream',
// MPEG - audio/video - MPEG (Moving Pictures Experts Group)
'pattern' => '^\x00\x00\x01(\xBA|\xB3)',
'group' => 'audio-video',
'mime_type' => 'video/mpeg',
// NSV - audio/video - Nullsoft Streaming Video (NSV)
'group' => 'audio-video',
'mime_type' => 'application/octet-stream',
// Ogg - audio/video - Ogg (Ogg Vorbis, OggFLAC, Speex, Ogg Theora(*), Ogg Tarkin(*))
'mime_type' => 'application/ogg',
// QT - audio/video - Quicktime
'pattern' => '^.{4}(cmov|free|ftyp|mdat|moov|pnot|skip|wide)',
'group' => 'audio-video',
'mime_type' => 'video/quicktime',
// RIFF - audio/video - Resource Interchange File Format (RIFF) / WAV / AVI / CD-audio / SDSS = renamed variant used by SmartSound QuickTracks (www.smartsound.com) / FORM = Audio Interchange File Format (AIFF)
'pattern' => '^(RIFF|SDSS|FORM)',
'group' => 'audio-video',
'mime_type' => 'audio/x-wave',
// Real - audio/video - RealAudio, RealVideo
'pattern' => '^(\.RMF|.ra)',
'group' => 'audio-video',
'mime_type' => 'audio/x-realaudio',
// SWF - audio/video - ShockWave Flash
'group' => 'audio-video',
'mime_type' => 'application/x-shockwave-flash',
// BMP - still image - Bitmap (Windows, OS/2; uncompressed, RLE8, RLE4)
'mime_type' => 'image/bmp',
// GIF - still image - Graphics Interchange Format
'mime_type' => 'image/gif',
// JPEG - still image - Joint Photographic Experts Group (JPEG)
'pattern' => '^\xFF\xD8\xFF',
'mime_type' => 'image/jpeg',
// PCD - still image - Kodak Photo CD
'pattern' => '^.{2048}PCD_IPI\x00',
'mime_type' => 'image/x-photo-cd',
// PNG - still image - Portable Network Graphics (PNG)
'pattern' => '^\x89\x50\x4E\x47\x0D\x0A\x1A\x0A',
'mime_type' => 'image/png',
// SVG - still image - Scalable Vector Graphics (SVG)
'pattern' => '<!DOCTYPE svg PUBLIC ',
'mime_type' => 'image/svg+xml',
// TIFF - still image - Tagged Information File Format (TIFF)
'pattern' => '^(II\x2A\x00|MM\x00\x2A)',
'mime_type' => 'image/tiff',
'mime_type' => 'application/octet-stream',
// ISO - data - International Standards Organization (ISO) CD-ROM Image
'pattern' => '^.{32769}CD001',
'mime_type' => 'application/octet-stream',
// RAR - data - RAR compressed data
'mime_type' => 'application/octet-stream',
// SZIP - audio - SZIP compressed data
'pattern' => '^SZ\x0A\x04',
'mime_type' => 'application/octet-stream',
// TAR - data - TAR compressed data
'pattern' => '^.{100}[0-9\x20]{7}\x00[0-9\x20]{7}\x00[0-9\x20]{7}\x00[0-9\x20\x00]{12}[0-9\x20\x00]{12}',
'mime_type' => 'application/x-tar',
// GZIP - data - GZIP compressed data
'pattern' => '^\x1F\x8B\x08',
'mime_type' => 'application/x-gzip',
// ZIP - data - ZIP compressed data
'pattern' => '^PK\x03\x04',
'mime_type' => 'application/zip',
// PAR2 - data - Parity Volume Set Specification 2.0
'pattern' => '^PAR2\x00PKT',
'mime_type' => 'application/octet-stream',
// PDF - data - Portable Document Format
'mime_type' => 'application/pdf',
// DOC - data - Microsoft Word
'pattern' => '^\xD0\xCF\x11\xE0', // D0CF11E == DOCFILE == Microsoft Office Document
'mime_type' => 'application/octet-stream',
// Recursive over array - converts array to $encoding charset from $this->encoding
// Identical encoding - end here
foreach ($array as $key => $value) {
// Key name => array (tag name, character encoding)
'asf' => array ('asf', 'UTF-16LE'),
'midi' => array ('midi', 'ISO-8859-1'),
'nsv' => array ('nsv', 'ISO-8859-1'),
'ogg' => array ('vorbiscomment', 'UTF-8'),
'png' => array ('png', 'UTF-8'),
'tiff' => array ('tiff', 'ISO-8859-1'),
'quicktime' => array ('quicktime', 'ISO-8859-1'),
'real' => array ('real', 'ISO-8859-1'),
'vqf' => array ('vqf', 'ISO-8859-1'),
'zip' => array ('zip', 'ISO-8859-1'),
'riff' => array ('riff', 'ISO-8859-1'),
'lyrics3' => array ('lyrics3', 'ISO-8859-1'),
'id3v1' => array ('id3v1', ''), // change below - cannot assign variable to static array
'id3v2' => array ('id3v2', 'UTF-8'), // module converts all frames to UTF-8
'ape' => array ('ape', 'UTF-8')
foreach ($tags as $comment_name => $tag_name_encoding_array) {
list ($tag_name, $encoding) = $tag_name_encoding_array;
// Fill in default encoding type if not already present
@$this->info[$comment_name] and $this->info[$comment_name]['encoding'] = $encoding;
// Copy comments if key name set
if (@$this->info[$comment_name]['comments']) {
foreach ($this->info[$comment_name]['comments'] as $tag_key => $value_array) {
foreach ($value_array as $key => $value) {
$this->info['tags'][$tag_name][trim($tag_key)][] = $value; // do not trim!! Unicode characters will get mangled if trailing nulls are removed!
if (!@$this->info['tags'][$tag_name]) {
// comments are set but contain nothing but empty strings, so skip
// Merge comments from ['tags'] into common ['comments']
if (@$this->info['tags']) {
foreach ($this->info['tags'] as $tag_type => $tag_array) {
foreach ($tag_array as $tag_name => $tagdata) {
foreach ($tagdata as $key => $value) {
if (empty($this->info['comments'][$tag_name])) {
// fall through and append value
elseif ($tag_type == 'id3v1') {
foreach ($this->info['comments'][$tag_name] as $existing_key => $existing_value) {
$old_value_length = strlen(trim($existing_value));
if (($new_value_length <= $old_value_length) && (substr($existing_value, 0, $new_value_length) == trim($value))) {
// new value is identical but shorter-than (or equal-length to) one already in comments - skip
foreach ($this->info['comments'][$tag_name] as $existing_key => $existing_value) {
$old_value_length = strlen(trim($existing_value));
if (($new_value_length > $old_value_length) && (substr(trim($value), 0, strlen($existing_value)) == $existing_value)) {
$this->info['comments'][$tag_name][$existing_key] = trim($value);
if (empty($this->info['comments'][$tag_name]) || !in_array(trim($value), $this->info['comments'][$tag_name])) {
$this->info['comments'][$tag_name][] = trim($value);
// Analyze from file pointer
abstract public function Analyze();
// Analyze from string instead
$saved_avdataoffset = $this->getid3->info['avdataoffset'];
$saved_avdataend = $this->getid3->info['avdataend'];
$saved_filesize = $this->getid3->info['filesize'];
$this->getid3->info['avdataoffset'] = 0;
$this->getid3->info['avdataoffset'] = $saved_avdataoffset;
$this->getid3->info['avdataend'] = $saved_avdataend;
$this->getid3->info['filesize'] = $saved_filesize;
protected function ftell() {
protected function fread($bytes) {
protected function fseek($bytes, $whence = SEEK_SET) {
abstract public function read();
abstract public function write();
abstract public function remove();
// Convert Little Endian byte string to int - max 32 bits
// Convert number to Little Endian byte string
$intstring = $intstring. chr($number & 127);
$intstring = $intstring. chr($number & 255);
return str_pad($intstring, $minbytes, "\x00", STR_PAD_RIGHT);
// Convert Big Endian byte string to int - max 32 bits
public static function BigEndian2Int($byte_word, $signed = false) {
$byte_wordlen = strlen($byte_word);
for ($i = 0; $i < $byte_wordlen; $i++ ) {
$int_value += ord($byte_word{$i}) * pow(256, ($byte_wordlen - 1 - $i));
$sign_mask_bit = 0x80 << (8 * ($byte_wordlen - 1));
if ($int_value & $sign_mask_bit) {
$int_value = 0 - ($int_value & ($sign_mask_bit - 1));
// Convert Big Endian byte sybc safe string to int - max 32 bits
$byte_wordlen = strlen($byte_word);
// disregard MSB, effectively 7-bit bytes
for ($i = 0; $i < $byte_wordlen; $i++ ) {
$int_value = $int_value | (ord($byte_word{$i}) & 0x7F) << (($byte_wordlen - 1 - $i) * 7);
// Convert Big Endian byte string to bit string
$byte_wordlen = strlen($byte_word);
for ($i = 0; $i < $byte_wordlen; $i++ ) {
// ANSI/IEEE Standard 754-1985, Standard for Binary Floating Point Arithmetic
// http://www.psc.edu/general/software/packages/ieee/ieee.html
// http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/ieee.html
$sign_bit = $bit_word{0};
switch (strlen($byte_word) * 8) {
// 80-bit Apple SANE format
// http://www.mactech.com/articles/mactech/Vol.06/06.01/SANENormalized/
$exponent_string = substr($bit_word, 1, 15);
$is_normalized = intval($bit_word{16});
$fraction_string = substr($bit_word, 17, 63);
$exponent = pow(2, getid3_lib::Bin2Dec($exponent_string) - 16383);
$float_value = $exponent * $fraction;
$exponent_string = substr($bit_word, 1, $exponent_bits);
$fraction_string = substr($bit_word, $exponent_bits + 1, $fraction_bits);
$exponent = bindec($exponent_string);
$fraction = bindec($fraction_string);
if (($exponent == (pow(2, $exponent_bits) - 1)) && ($fraction != 0)) {
} elseif (($exponent == (pow(2, $exponent_bits) - 1)) && ($fraction == 0)) {
$float_value = '-infinity';
$float_value = '+infinity';
} elseif (($exponent == 0) && ($fraction == 0)) {
$float_value = ($sign_bit ? 0 : - 0);
} elseif (($exponent == 0) && ($fraction != 0)) {
// These are 'unnormalized' values
} elseif ($exponent != 0) {
return (float) $float_value;
$numerator = bindec($binary_numerator);
return ($numerator / $denominator);
public static function PrintHexBytes($string, $hex= true, $spaces= true, $html_safe= true) {
for ($i = 0; $i < strlen($string); $i++ ) {
$return_string .= ' '. (ereg("[\x20-\x7E]", $string{$i}) ? $string{$i} : '');
// Process header data string - read several values with algorithm and add to target
// algorithm is one one the getid3_lib::Something2Something() function names
// parts_array is index => length - $target[index] = algorithm(substring(data))
// - OR just substring(data) if length is negative!
// indexes == 'IGNORE**' are ignored
public static function ReadSequence($algorithm, &$target, &$data, $offset, $parts_array) {
// Loop thru $parts_array
foreach ($parts_array as $target_string => $length) {
if (!strstr($target_string, 'IGNORE')) {
$target[$target_string] = substr($data, $offset, - $length);
// algorithm(substr(...length))
$target[$target_string] = getid3_lib::$algorithm(substr($data, $offset, $length));
1 => 'Track Gain Adjustment',
2 => 'Album Gain Adjustment'
return @$lookup[$name_code];
1 => 'pre-set by artist/producer/mastering engineer',
3 => 'determined automatically'
return @$lookup[$originator_code];
return (float) $raw_adjustment / 10 * ($sign_bit == 1 ? - 1 : 1);
public static function GainString($name_code, $originator_code, $replaygain) {
$sign_bit = $replaygain < 0 ? 1 : 0;
$gain_string = str_pad(decbin($name_code), 3, '0', STR_PAD_LEFT);
$gain_string .= str_pad(decbin($originator_code), 3, '0', STR_PAD_LEFT);
$gain_string .= $sign_bit;
$gain_string .= str_pad(decbin($stored_replaygain), 9, '0', STR_PAD_LEFT);
|