function WriteID3v1()
 {
     // File MUST be writeable - CHMOD(646) at least
     if (!empty($this->filename) && is_readable($this->filename) && is_writable($this->filename) && is_file($this->filename)) {
         $this->setRealFileSize();
         if ($this->filesize <= 0 || !getid3_lib::intValueSupported($this->filesize)) {
             $this->errors[] = 'Unable to WriteID3v1(' . $this->filename . ') because filesize (' . $this->filesize . ') is larger than ' . round(PHP_INT_MAX / 1073741824) . 'GB';
             return false;
         }
         if ($fp_source = fopen($this->filename, 'r+b')) {
             fseek($fp_source, -128, SEEK_END);
             if (fread($fp_source, 3) == 'TAG') {
                 fseek($fp_source, -128, SEEK_END);
                 // overwrite existing ID3v1 tag
             } else {
                 fseek($fp_source, 0, SEEK_END);
                 // append new ID3v1 tag
             }
             $this->tag_data['track'] = isset($this->tag_data['track']) ? $this->tag_data['track'] : (isset($this->tag_data['track_number']) ? $this->tag_data['track_number'] : (isset($this->tag_data['tracknumber']) ? $this->tag_data['tracknumber'] : ''));
             $new_id3v1_tag_data = getid3_id3v1::GenerateID3v1Tag(isset($this->tag_data['title']) ? $this->tag_data['title'] : '', isset($this->tag_data['artist']) ? $this->tag_data['artist'] : '', isset($this->tag_data['album']) ? $this->tag_data['album'] : '', isset($this->tag_data['year']) ? $this->tag_data['year'] : '', isset($this->tag_data['genreid']) ? $this->tag_data['genreid'] : '', isset($this->tag_data['comment']) ? $this->tag_data['comment'] : '', isset($this->tag_data['track']) ? $this->tag_data['track'] : '');
             fwrite($fp_source, $new_id3v1_tag_data, 128);
             fclose($fp_source);
             return true;
         } else {
             $this->errors[] = 'Could not fopen(' . $this->filename . ', "r+b")';
             return false;
         }
     }
     $this->errors[] = 'File is not writeable: ' . $this->filename;
     return false;
 }
 function WriteID3v1()
 {
     // File MUST be writeable - CHMOD(646) at least
     if (is_writeable($this->filename)) {
         if ($fp_source = @fopen($this->filename, 'r+b')) {
             fseek($fp_source, -128, SEEK_END);
             if (fread($fp_source, 3) == 'TAG') {
                 fseek($fp_source, -128, SEEK_END);
                 // overwrite existing ID3v1 tag
             } else {
                 fseek($fp_source, 0, SEEK_END);
                 // append new ID3v1 tag
             }
             $new_id3v1_tag_data = getid3_id3v1::GenerateID3v1Tag(@$this->tag_data['title'], @$this->tag_data['artist'], @$this->tag_data['album'], @$this->tag_data['year'], @$this->tag_data['genreid'], @$this->tag_data['comment'], @$this->tag_data['track']);
             fwrite($fp_source, $new_id3v1_tag_data, 128);
             fclose($fp_source);
             return true;
         } else {
             $this->errors[] = 'Could not open ' . $this->filename . ' mode "r+b"';
             return false;
         }
     }
     $this->errors[] = 'File is not writeable: ' . $this->filename;
     return false;
 }
 function WriteID3v1()
 {
     if (filesize($this->filename) >= pow(2, 31) - 128 || filesize($this->filename) < 0) {
         $this->errors[] = 'Unable to write ID3v1 because file is larger than 2GB';
         return false;
     }
     // File MUST be writeable - CHMOD(646) at least
     if (is_writeable($this->filename)) {
         ob_start();
         if ($fp_source = fopen($this->filename, 'r+b')) {
             ob_end_clean();
             fseek($fp_source, -128, SEEK_END);
             if (fread($fp_source, 3) == 'TAG') {
                 fseek($fp_source, -128, SEEK_END);
                 // overwrite existing ID3v1 tag
             } else {
                 fseek($fp_source, 0, SEEK_END);
                 // append new ID3v1 tag
             }
             $this->tag_data['track'] = isset($this->tag_data['track']) ? $this->tag_data['track'] : (isset($this->tag_data['track_number']) ? $this->tag_data['track_number'] : (isset($this->tag_data['tracknumber']) ? $this->tag_data['tracknumber'] : ''));
             $new_id3v1_tag_data = getid3_id3v1::GenerateID3v1Tag(isset($this->tag_data['title']) ? $this->tag_data['title'] : '', isset($this->tag_data['artist']) ? $this->tag_data['artist'] : '', isset($this->tag_data['album']) ? $this->tag_data['album'] : '', isset($this->tag_data['year']) ? $this->tag_data['year'] : '', isset($this->tag_data['genreid']) ? $this->tag_data['genreid'] : '', isset($this->tag_data['comment']) ? $this->tag_data['comment'] : '', isset($this->tag_data['track']) ? $this->tag_data['track'] : '');
             fwrite($fp_source, $new_id3v1_tag_data, 128);
             fclose($fp_source);
             return true;
         } else {
             $errormessage = ob_get_contents();
             ob_end_clean();
             $this->errors[] = 'Could not open ' . $this->filename . ' mode "r+b"';
             return false;
         }
     }
     $this->errors[] = 'File is not writeable: ' . $this->filename;
     return false;
 }
示例#4
0
 public function write()
 {
     // remove existing apetag
     $this->remove();
     $engine = new getid3();
     $engine->filename = $this->filename;
     $engine->fp = fopen($this->filename, 'rb');
     $engine->include_module('tag.id3v1');
     $engine->include_module('tag.lyrics3');
     $tag = new getid3_id3v1($engine);
     $tag->Analyze();
     $tag = new getid3_lyrics3($engine);
     $tag->Analyze();
     $apetag = $this->generate_tag();
     if (!($fp = @fopen($this->filename, 'a+b'))) {
         throw new getid3_exception('Could not open a+b: ' . $this->filename);
     }
     // init: audio ends at eof
     $post_audio_offset = filesize($this->filename);
     // lyrics3 tag present
     if (@$engine->info['lyrics3']['tag_offset_start']) {
         // audio ends before lyrics3 tag
         $post_audio_offset = @$engine->info['lyrics3']['tag_offset_start'];
     } elseif (@$engine->info['id3v1']['tag_offset_start']) {
         // audio ends before id3v1 tag
         $post_audio_offset = $engine->info['id3v1']['tag_offset_start'];
     }
     // seek to end of audio data
     fseek($fp, $post_audio_offset, SEEK_SET);
     // save data after audio data
     $post_audio_data = '';
     if (filesize($this->filename) > $post_audio_offset) {
         $post_audio_data = fread($fp, filesize($this->filename) - $post_audio_offset);
     }
     // truncate file before start of new apetag
     fseek($fp, $post_audio_offset, SEEK_SET);
     ftruncate($fp, ftell($fp));
     // write new apetag
     fwrite($fp, $apetag, strlen($apetag));
     // rewrite data after audio
     if (!empty($post_audio_data)) {
         fwrite($fp, $post_audio_data, strlen($post_audio_data));
     }
     fclose($fp);
     clearstatcache();
     return true;
 }
示例#5
0
 function FormatDataForID3v1()
 {
     $tag_data_id3v1['genreid'] = 255;
     if (!empty($this->tag_data['GENRE'])) {
         foreach ($this->tag_data['GENRE'] as $key => $value) {
             if (getid3_id3v1::LookupGenreID($value) !== false) {
                 $tag_data_id3v1['genreid'] = getid3_id3v1::LookupGenreID($value);
                 break;
             }
         }
     }
     $tag_data_id3v1['title'] = getid3_lib::iconv_fallback($this->tag_encoding, 'ISO-8859-1', @implode(' ', @$this->tag_data['TITLE']));
     $tag_data_id3v1['artist'] = getid3_lib::iconv_fallback($this->tag_encoding, 'ISO-8859-1', @implode(' ', @$this->tag_data['ARTIST']));
     $tag_data_id3v1['album'] = getid3_lib::iconv_fallback($this->tag_encoding, 'ISO-8859-1', @implode(' ', @$this->tag_data['ALBUM']));
     $tag_data_id3v1['year'] = getid3_lib::iconv_fallback($this->tag_encoding, 'ISO-8859-1', @implode(' ', @$this->tag_data['YEAR']));
     $tag_data_id3v1['comment'] = getid3_lib::iconv_fallback($this->tag_encoding, 'ISO-8859-1', @implode(' ', @$this->tag_data['COMMENT']));
     $tag_data_id3v1['track'] = intval(getid3_lib::iconv_fallback($this->tag_encoding, 'ISO-8859-1', @implode(' ', @$this->tag_data['TRACKNUMBER'])));
     if ($tag_data_id3v1['track'] <= 0) {
         $tag_data_id3v1['track'] = '';
     }
     $this->MergeExistingTagData('id3v1', $tag_data_id3v1);
     return $tag_data_id3v1;
 }
示例#6
0
         echo WindowsShareSlashTranslate($row['filename']) . "\n";
     }
     exit;
 } else {
     if ($_REQUEST['genredistribution'] == '%') {
         $SQLquery = 'SELECT COUNT(*) AS `num`, `genre`';
         $SQLquery .= ' FROM `' . mysql_real_escape_string(GETID3_DB_TABLE) . '`';
         $SQLquery .= ' WHERE (`fileformat` NOT LIKE "' . implode('") AND (`fileformat` NOT LIKE "', $IgnoreNoTagFormats) . '")';
         $SQLquery .= ' GROUP BY `genre`';
         $SQLquery .= ' ORDER BY `num` DESC';
         $result = mysql_query_safe($SQLquery);
         getid3_lib::IncludeDependency(GETID3_INCLUDEPATH . 'module.tag.id3v1.php', __FILE__, true);
         echo '<table border="1" cellspacing="0" cellpadding="4">';
         echo '<tr><th>Count</th><th>Genre</th><th>m3u</th></tr>';
         while ($row = mysql_fetch_array($result)) {
             $GenreID = getid3_id3v1::LookupGenreID($row['genre']);
             if (is_numeric($GenreID)) {
                 echo '<tr bgcolor="#00FF00;">';
             } else {
                 echo '<tr bgcolor="#FF9999;">';
             }
             echo '<td><a href="' . htmlentities($_SERVER['PHP_SELF'] . '?genredistribution=' . urlencode($row['genre'])) . '">' . number_format($row['num']) . '</a></td>';
             echo '<td nowrap>' . str_replace("\t", '<br>', $row['genre']) . '</td>';
             echo '<td><a href="' . htmlentities($_SERVER['PHP_SELF'] . '?m3u=.m3u&genredistribution=' . urlencode($row['genre'])) . '">.m3u</a></td>';
             echo '</tr>';
         }
         echo '</table><hr>';
     } else {
         $SQLquery = 'SELECT `filename`, `genre`';
         $SQLquery .= ' FROM `' . mysql_real_escape_string(GETID3_DB_TABLE) . '`';
         $SQLquery .= ' WHERE (`genre` LIKE "' . mysql_real_escape_string($_REQUEST['genredistribution']) . '")';
 function ParseID3v2GenreString($genrestring)
 {
     // Parse genres into arrays of genreName and genreID
     // ID3v2.2.x, ID3v2.3.x: '(21)' or '(4)Eurodisco' or '(51)(39)' or '(55)((I think...)'
     // ID3v2.4.x: '21' $00 'Eurodisco' $00
     $clean_genres = array();
     if (strpos($genrestring, "") === false) {
         $genrestring = preg_replace('#\\(([0-9]{1,3})\\)#', '$1' . "", $genrestring);
     }
     $genre_elements = explode("", $genrestring);
     foreach ($genre_elements as $element) {
         $element = trim($element);
         if ($element) {
             if (preg_match('#^[0-9]{1,3}#', $element)) {
                 $clean_genres[] = getid3_id3v1::LookupGenreName($element);
             } else {
                 $clean_genres[] = str_replace('((', '(', $element);
             }
         }
     }
     return $clean_genres;
 }
 public function QuicktimeParseAtom($atomname, $atomsize, $atom_data, $baseoffset, &$atomHierarchy, $ParseAllPossibleAtoms)
 {
     // http://developer.apple.com/techpubs/quicktime/qtdevdocs/APIREF/INDEX/atomalphaindex.htm
     $info =& $this->getid3->info;
     $atom_parent = end($atomHierarchy);
     // not array_pop($atomHierarchy); see http://www.getid3.org/phpBB3/viewtopic.php?t=1717
     array_push($atomHierarchy, $atomname);
     $atom_structure['hierarchy'] = implode(' ', $atomHierarchy);
     $atom_structure['name'] = $atomname;
     $atom_structure['size'] = $atomsize;
     $atom_structure['offset'] = $baseoffset;
     switch ($atomname) {
         case 'moov':
             // MOVie container atom
         // MOVie container atom
         case 'trak':
             // TRAcK container atom
         // TRAcK container atom
         case 'clip':
             // CLIPping container atom
         // CLIPping container atom
         case 'matt':
             // track MATTe container atom
         // track MATTe container atom
         case 'edts':
             // EDiTS container atom
         // EDiTS container atom
         case 'tref':
             // Track REFerence container atom
         // Track REFerence container atom
         case 'mdia':
             // MeDIA container atom
         // MeDIA container atom
         case 'minf':
             // Media INFormation container atom
         // Media INFormation container atom
         case 'dinf':
             // Data INFormation container atom
         // Data INFormation container atom
         case 'udta':
             // User DaTA container atom
         // User DaTA container atom
         case 'cmov':
             // Compressed MOVie container atom
         // Compressed MOVie container atom
         case 'rmra':
             // Reference Movie Record Atom
         // Reference Movie Record Atom
         case 'rmda':
             // Reference Movie Descriptor Atom
         // Reference Movie Descriptor Atom
         case 'gmhd':
             // Generic Media info HeaDer atom (seen on QTVR)
             $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms);
             break;
         case 'ilst':
             // Item LiST container atom
             if ($atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms)) {
                 // some "ilst" atoms contain data atoms that have a numeric name, and the data is far more accessible if the returned array is compacted
                 $allnumericnames = true;
                 foreach ($atom_structure['subatoms'] as $subatomarray) {
                     if (!is_integer($subatomarray['name']) || count($subatomarray['subatoms']) != 1) {
                         $allnumericnames = false;
                         break;
                     }
                 }
                 if ($allnumericnames) {
                     $newData = array();
                     foreach ($atom_structure['subatoms'] as $subatomarray) {
                         foreach ($subatomarray['subatoms'] as $newData_subatomarray) {
                             unset($newData_subatomarray['hierarchy'], $newData_subatomarray['name']);
                             $newData[$subatomarray['name']] = $newData_subatomarray;
                             break;
                         }
                     }
                     $atom_structure['data'] = $newData;
                     unset($atom_structure['subatoms']);
                 }
             }
             break;
         case "":
         case "":
         case "":
         case "":
         case "":
             $atomname = getid3_lib::BigEndian2Int($atomname);
             $atom_structure['name'] = $atomname;
             $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms);
             break;
         case 'stbl':
             // Sample TaBLe container atom
             $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms);
             $isVideo = false;
             $framerate = 0;
             $framecount = 0;
             foreach ($atom_structure['subatoms'] as $key => $value_array) {
                 if (isset($value_array['sample_description_table'])) {
                     foreach ($value_array['sample_description_table'] as $key2 => $value_array2) {
                         if (isset($value_array2['data_format'])) {
                             switch ($value_array2['data_format']) {
                                 case 'avc1':
                                 case 'mp4v':
                                     // video data
                                     $isVideo = true;
                                     break;
                                 case 'mp4a':
                                     // audio data
                                     break;
                             }
                         }
                     }
                 } elseif (isset($value_array['time_to_sample_table'])) {
                     foreach ($value_array['time_to_sample_table'] as $key2 => $value_array2) {
                         if (isset($value_array2['sample_count']) && isset($value_array2['sample_duration']) && $value_array2['sample_duration'] > 0) {
                             $framerate = round($info['quicktime']['time_scale'] / $value_array2['sample_duration'], 3);
                             $framecount = $value_array2['sample_count'];
                         }
                     }
                 }
             }
             if ($isVideo && $framerate) {
                 $info['quicktime']['video']['frame_rate'] = $framerate;
                 $info['video']['frame_rate'] = $info['quicktime']['video']['frame_rate'];
             }
             if ($isVideo && $framecount) {
                 $info['quicktime']['video']['frame_count'] = $framecount;
             }
             break;
         case 'aART':
             // Album ARTist
         // Album ARTist
         case 'catg':
             // CaTeGory
         // CaTeGory
         case 'covr':
             // COVeR artwork
         // COVeR artwork
         case 'cpil':
             // ComPILation
         // ComPILation
         case 'cprt':
             // CoPyRighT
         // CoPyRighT
         case 'desc':
             // DESCription
         // DESCription
         case 'disk':
             // DISK number
         // DISK number
         case 'egid':
             // Episode Global ID
         // Episode Global ID
         case 'gnre':
             // GeNRE
         // GeNRE
         case 'keyw':
             // KEYWord
         // KEYWord
         case 'ldes':
         case 'pcst':
             // PodCaST
         // PodCaST
         case 'pgap':
             // GAPless Playback
         // GAPless Playback
         case 'purd':
             // PURchase Date
         // PURchase Date
         case 'purl':
             // Podcast URL
         // Podcast URL
         case 'rati':
         case 'rndu':
         case 'rpdu':
         case 'rtng':
             // RaTiNG
         // RaTiNG
         case 'stik':
         case 'tmpo':
             // TeMPO (BPM)
         // TeMPO (BPM)
         case 'trkn':
             // TRacK Number
         // TRacK Number
         case 'tves':
             // TV EpiSode
         // TV EpiSode
         case 'tvnn':
             // TV Network Name
         // TV Network Name
         case 'tvsh':
             // TV SHow Name
         // TV SHow Name
         case 'tvsn':
             // TV SeasoN
         // TV SeasoN
         case 'akID':
             // iTunes store account type
         // iTunes store account type
         case 'apID':
         case 'atID':
         case 'cmID':
         case 'cnID':
         case 'geID':
         case 'plID':
         case 'sfID':
             // iTunes store country
         // iTunes store country
         case "©" . 'alb':
             // ALBum
         // ALBum
         case "©" . 'art':
             // ARTist
         // ARTist
         case "©" . 'ART':
         case "©" . 'aut':
         case "©" . 'cmt':
             // CoMmenT
         // CoMmenT
         case "©" . 'com':
             // COMposer
         // COMposer
         case "©" . 'cpy':
         case "©" . 'day':
             // content created year
         // content created year
         case "©" . 'dir':
         case "©" . 'ed1':
         case "©" . 'ed2':
         case "©" . 'ed3':
         case "©" . 'ed4':
         case "©" . 'ed5':
         case "©" . 'ed6':
         case "©" . 'ed7':
         case "©" . 'ed8':
         case "©" . 'ed9':
         case "©" . 'enc':
         case "©" . 'fmt':
         case "©" . 'gen':
             // GENre
         // GENre
         case "©" . 'grp':
             // GRouPing
         // GRouPing
         case "©" . 'hst':
         case "©" . 'inf':
         case "©" . 'lyr':
             // LYRics
         // LYRics
         case "©" . 'mak':
         case "©" . 'mod':
         case "©" . 'nam':
             // full NAMe
         // full NAMe
         case "©" . 'ope':
         case "©" . 'PRD':
         case "©" . 'prd':
         case "©" . 'prf':
         case "©" . 'req':
         case "©" . 'src':
         case "©" . 'swr':
         case "©" . 'too':
             // encoder
         // encoder
         case "©" . 'trk':
             // TRacK
         // TRacK
         case "©" . 'url':
         case "©" . 'wrn':
         case "©" . 'wrt':
             // WRiTer
         // WRiTer
         case '----':
             // itunes specific
             if ($atom_parent == 'udta') {
                 // User data atom handler
                 $atom_structure['data_length'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2));
                 $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2));
                 $atom_structure['data'] = substr($atom_data, 4);
                 $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']);
                 if (empty($info['comments']['language']) || !in_array($atom_structure['language'], $info['comments']['language'])) {
                     $info['comments']['language'][] = $atom_structure['language'];
                 }
             } else {
                 // Apple item list box atom handler
                 $atomoffset = 0;
                 if (substr($atom_data, 2, 2) == "µ") {
                     // not sure what it means, but observed on iPhone4 data.
                     // Each $atom_data has 2 bytes of datasize, plus 0x10B5, then data
                     while ($atomoffset < strlen($atom_data)) {
                         $boxsmallsize = getid3_lib::BigEndian2Int(substr($atom_data, $atomoffset, 2));
                         $boxsmalltype = substr($atom_data, $atomoffset + 2, 2);
                         $boxsmalldata = substr($atom_data, $atomoffset + 4, $boxsmallsize);
                         if ($boxsmallsize <= 1) {
                             $info['warning'][] = 'Invalid QuickTime atom smallbox size "' . $boxsmallsize . '" in atom "' . $atomname . '" at offset: ' . ($atom_structure['offset'] + $atomoffset);
                             $atom_structure['data'] = null;
                             $atomoffset = strlen($atom_data);
                             break;
                         }
                         switch ($boxsmalltype) {
                             case "µ":
                                 $atom_structure['data'] = $boxsmalldata;
                                 break;
                             default:
                                 $info['warning'][] = 'Unknown QuickTime smallbox type: "' . getid3_lib::PrintHexBytes($boxsmalltype) . '" at offset ' . $baseoffset;
                                 $atom_structure['data'] = $atom_data;
                                 break;
                         }
                         $atomoffset += 4 + $boxsmallsize;
                     }
                 } else {
                     while ($atomoffset < strlen($atom_data)) {
                         $boxsize = getid3_lib::BigEndian2Int(substr($atom_data, $atomoffset, 4));
                         $boxtype = substr($atom_data, $atomoffset + 4, 4);
                         $boxdata = substr($atom_data, $atomoffset + 8, $boxsize - 8);
                         if ($boxsize <= 1) {
                             $info['warning'][] = 'Invalid QuickTime atom box size "' . $boxsize . '" in atom "' . $atomname . '" at offset: ' . ($atom_structure['offset'] + $atomoffset);
                             $atom_structure['data'] = null;
                             $atomoffset = strlen($atom_data);
                             break;
                         }
                         $atomoffset += $boxsize;
                         switch ($boxtype) {
                             case 'mean':
                             case 'name':
                                 $atom_structure[$boxtype] = substr($boxdata, 4);
                                 break;
                             case 'data':
                                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($boxdata, 0, 1));
                                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($boxdata, 1, 3));
                                 switch ($atom_structure['flags_raw']) {
                                     case 0:
                                         // data flag
                                     // data flag
                                     case 21:
                                         // tmpo/cpil flag
                                         switch ($atomname) {
                                             case 'cpil':
                                             case 'pcst':
                                             case 'pgap':
                                                 $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1));
                                                 break;
                                             case 'tmpo':
                                                 $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 2));
                                                 break;
                                             case 'disk':
                                             case 'trkn':
                                                 $num = getid3_lib::BigEndian2Int(substr($boxdata, 10, 2));
                                                 $num_total = getid3_lib::BigEndian2Int(substr($boxdata, 12, 2));
                                                 $atom_structure['data'] = empty($num) ? '' : $num;
                                                 $atom_structure['data'] .= empty($num_total) ? '' : '/' . $num_total;
                                                 break;
                                             case 'gnre':
                                                 $GenreID = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4));
                                                 $atom_structure['data'] = getid3_id3v1::LookupGenreName($GenreID - 1);
                                                 break;
                                             case 'rtng':
                                                 $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1));
                                                 $atom_structure['data'] = $this->QuicktimeContentRatingLookup($atom_structure[$atomname]);
                                                 break;
                                             case 'stik':
                                                 $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1));
                                                 $atom_structure['data'] = $this->QuicktimeSTIKLookup($atom_structure[$atomname]);
                                                 break;
                                             case 'sfID':
                                                 $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4));
                                                 $atom_structure['data'] = $this->QuicktimeStoreFrontCodeLookup($atom_structure[$atomname]);
                                                 break;
                                             case 'egid':
                                             case 'purl':
                                                 $atom_structure['data'] = substr($boxdata, 8);
                                                 break;
                                             default:
                                                 $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4));
                                         }
                                         break;
                                     case 1:
                                         // text flag
                                     // text flag
                                     case 13:
                                         // image flag
                                     // image flag
                                     default:
                                         $atom_structure['data'] = substr($boxdata, 8);
                                         if ($atomname == 'covr') {
                                             // not a foolproof check, but better than nothing
                                             if (preg_match('#^\\xFF\\xD8\\xFF#', $atom_structure['data'])) {
                                                 $atom_structure['image_mime'] = 'image/jpeg';
                                             } elseif (preg_match('#^\\x89\\x50\\x4E\\x47\\x0D\\x0A\\x1A\\x0A#', $atom_structure['data'])) {
                                                 $atom_structure['image_mime'] = 'image/png';
                                             } elseif (preg_match('#^GIF#', $atom_structure['data'])) {
                                                 $atom_structure['image_mime'] = 'image/gif';
                                             }
                                         }
                                         break;
                                 }
                                 break;
                             default:
                                 $info['warning'][] = 'Unknown QuickTime box type: "' . getid3_lib::PrintHexBytes($boxtype) . '" at offset ' . $baseoffset;
                                 $atom_structure['data'] = $atom_data;
                         }
                     }
                 }
             }
             $this->CopyToAppropriateCommentsSection($atomname, $atom_structure['data'], $atom_structure['name']);
             break;
         case 'play':
             // auto-PLAY atom
             $atom_structure['autoplay'] = (bool) getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $info['quicktime']['autoplay'] = $atom_structure['autoplay'];
             break;
         case 'WLOC':
             // Window LOCation atom
             $atom_structure['location_x'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2));
             $atom_structure['location_y'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2));
             break;
         case 'LOOP':
             // LOOPing atom
         // LOOPing atom
         case 'SelO':
             // play SELection Only atom
         // play SELection Only atom
         case 'AllF':
             // play ALL Frames atom
             $atom_structure['data'] = getid3_lib::BigEndian2Int($atom_data);
             break;
         case 'name':
             //
         //
         case 'MCPS':
             // Media Cleaner PRo
         // Media Cleaner PRo
         case '@PRM':
             // adobe PReMiere version
         // adobe PReMiere version
         case '@PRQ':
             // adobe PRemiere Quicktime version
             $atom_structure['data'] = $atom_data;
             break;
         case 'cmvd':
             // Compressed MooV Data atom
             // Code by ubergeekØubergeek*tv based on information from
             // http://developer.apple.com/quicktime/icefloe/dispatch012.html
             $atom_structure['unCompressedSize'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             $CompressedFileData = substr($atom_data, 4);
             if ($UncompressedHeader = @gzuncompress($CompressedFileData)) {
                 $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($UncompressedHeader, 0, $atomHierarchy, $ParseAllPossibleAtoms);
             } else {
                 $info['warning'][] = 'Error decompressing compressed MOV atom at offset ' . $atom_structure['offset'];
             }
             break;
         case 'dcom':
             // Data COMpression atom
             $atom_structure['compression_id'] = $atom_data;
             $atom_structure['compression_text'] = $this->QuicktimeDCOMLookup($atom_data);
             break;
         case 'rdrf':
             // Reference movie Data ReFerence atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['flags']['internal_data'] = (bool) ($atom_structure['flags_raw'] & 0x1);
             $atom_structure['reference_type_name'] = substr($atom_data, 4, 4);
             $atom_structure['reference_length'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             switch ($atom_structure['reference_type_name']) {
                 case 'url ':
                     $atom_structure['url'] = $this->NoNullString(substr($atom_data, 12));
                     break;
                 case 'alis':
                     $atom_structure['file_alias'] = substr($atom_data, 12);
                     break;
                 case 'rsrc':
                     $atom_structure['resource_alias'] = substr($atom_data, 12);
                     break;
                 default:
                     $atom_structure['data'] = substr($atom_data, 12);
                     break;
             }
             break;
         case 'rmqu':
             // Reference Movie QUality atom
             $atom_structure['movie_quality'] = getid3_lib::BigEndian2Int($atom_data);
             break;
         case 'rmcs':
             // Reference Movie Cpu Speed atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['cpu_speed_rating'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             break;
         case 'rmvc':
             // Reference Movie Version Check atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['gestalt_selector'] = substr($atom_data, 4, 4);
             $atom_structure['gestalt_value_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['gestalt_value'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['gestalt_check_type'] = getid3_lib::BigEndian2Int(substr($atom_data, 14, 2));
             break;
         case 'rmcd':
             // Reference Movie Component check atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['component_type'] = substr($atom_data, 4, 4);
             $atom_structure['component_subtype'] = substr($atom_data, 8, 4);
             $atom_structure['component_manufacturer'] = substr($atom_data, 12, 4);
             $atom_structure['component_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['component_flags_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4));
             $atom_structure['component_min_version'] = getid3_lib::BigEndian2Int(substr($atom_data, 24, 4));
             break;
         case 'rmdr':
             // Reference Movie Data Rate atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['data_rate'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['data_rate_bps'] = $atom_structure['data_rate'] * 10;
             break;
         case 'rmla':
             // Reference Movie Language Atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']);
             if (empty($info['comments']['language']) || !in_array($atom_structure['language'], $info['comments']['language'])) {
                 $info['comments']['language'][] = $atom_structure['language'];
             }
             break;
         case 'rmla':
             // Reference Movie Language Atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             break;
         case 'ptv ':
             // Print To Video - defines a movie's full screen mode
             // http://developer.apple.com/documentation/QuickTime/APIREF/SOURCESIV/at_ptv-_pg.htm
             $atom_structure['display_size_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2));
             $atom_structure['reserved_1'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2));
             // hardcoded: 0x0000
             $atom_structure['reserved_2'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             // hardcoded: 0x0000
             $atom_structure['slide_show_flag'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 1));
             $atom_structure['play_on_open_flag'] = getid3_lib::BigEndian2Int(substr($atom_data, 7, 1));
             $atom_structure['flags']['play_on_open'] = (bool) $atom_structure['play_on_open_flag'];
             $atom_structure['flags']['slide_show'] = (bool) $atom_structure['slide_show_flag'];
             $ptv_lookup[0] = 'normal';
             $ptv_lookup[1] = 'double';
             $ptv_lookup[2] = 'half';
             $ptv_lookup[3] = 'full';
             $ptv_lookup[4] = 'current';
             if (isset($ptv_lookup[$atom_structure['display_size_raw']])) {
                 $atom_structure['display_size'] = $ptv_lookup[$atom_structure['display_size_raw']];
             } else {
                 $info['warning'][] = 'unknown "ptv " display constant (' . $atom_structure['display_size_raw'] . ')';
             }
             break;
         case 'stsd':
             // Sample Table Sample Description atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $stsdEntriesDataOffset = 8;
             for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                 $atom_structure['sample_description_table'][$i]['size'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 4));
                 $stsdEntriesDataOffset += 4;
                 $atom_structure['sample_description_table'][$i]['data_format'] = substr($atom_data, $stsdEntriesDataOffset, 4);
                 $stsdEntriesDataOffset += 4;
                 $atom_structure['sample_description_table'][$i]['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 6));
                 $stsdEntriesDataOffset += 6;
                 $atom_structure['sample_description_table'][$i]['reference_index'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 2));
                 $stsdEntriesDataOffset += 2;
                 $atom_structure['sample_description_table'][$i]['data'] = substr($atom_data, $stsdEntriesDataOffset, $atom_structure['sample_description_table'][$i]['size'] - 4 - 4 - 6 - 2);
                 $stsdEntriesDataOffset += $atom_structure['sample_description_table'][$i]['size'] - 4 - 4 - 6 - 2;
                 $atom_structure['sample_description_table'][$i]['encoder_version'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 0, 2));
                 $atom_structure['sample_description_table'][$i]['encoder_revision'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 2, 2));
                 $atom_structure['sample_description_table'][$i]['encoder_vendor'] = substr($atom_structure['sample_description_table'][$i]['data'], 4, 4);
                 switch ($atom_structure['sample_description_table'][$i]['encoder_vendor']) {
                     case "":
                         // audio tracks
                         $atom_structure['sample_description_table'][$i]['audio_channels'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 2));
                         $atom_structure['sample_description_table'][$i]['audio_bit_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 10, 2));
                         $atom_structure['sample_description_table'][$i]['audio_compression_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 2));
                         $atom_structure['sample_description_table'][$i]['audio_packet_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 14, 2));
                         $atom_structure['sample_description_table'][$i]['audio_sample_rate'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 16, 4));
                         // video tracks
                         // http://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
                         $atom_structure['sample_description_table'][$i]['temporal_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 4));
                         $atom_structure['sample_description_table'][$i]['spatial_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 4));
                         $atom_structure['sample_description_table'][$i]['width'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 16, 2));
                         $atom_structure['sample_description_table'][$i]['height'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 18, 2));
                         $atom_structure['sample_description_table'][$i]['resolution_x'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 24, 4));
                         $atom_structure['sample_description_table'][$i]['resolution_y'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 28, 4));
                         $atom_structure['sample_description_table'][$i]['data_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 32, 4));
                         $atom_structure['sample_description_table'][$i]['frame_count'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 36, 2));
                         $atom_structure['sample_description_table'][$i]['compressor_name'] = substr($atom_structure['sample_description_table'][$i]['data'], 38, 4);
                         $atom_structure['sample_description_table'][$i]['pixel_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 42, 2));
                         $atom_structure['sample_description_table'][$i]['color_table_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 44, 2));
                         switch ($atom_structure['sample_description_table'][$i]['data_format']) {
                             case '2vuY':
                             case 'avc1':
                             case 'cvid':
                             case 'dvc ':
                             case 'dvcp':
                             case 'gif ':
                             case 'h263':
                             case 'jpeg':
                             case 'kpcd':
                             case 'mjpa':
                             case 'mjpb':
                             case 'mp4v':
                             case 'png ':
                             case 'raw ':
                             case 'rle ':
                             case 'rpza':
                             case 'smc ':
                             case 'SVQ1':
                             case 'SVQ3':
                             case 'tiff':
                             case 'v210':
                             case 'v216':
                             case 'v308':
                             case 'v408':
                             case 'v410':
                             case 'yuv2':
                                 $info['fileformat'] = 'mp4';
                                 $info['video']['fourcc'] = $atom_structure['sample_description_table'][$i]['data_format'];
                                 // http://www.getid3.org/phpBB3/viewtopic.php?t=1550
                                 //if ((!empty($atom_structure['sample_description_table'][$i]['width']) && !empty($atom_structure['sample_description_table'][$i]['width'])) && (empty($info['video']['resolution_x']) || empty($info['video']['resolution_y']) || (number_format($info['video']['resolution_x'], 6) != number_format(round($info['video']['resolution_x']), 6)) || (number_format($info['video']['resolution_y'], 6) != number_format(round($info['video']['resolution_y']), 6)))) { // ugly check for floating point numbers
                                 if (!empty($atom_structure['sample_description_table'][$i]['width']) && !empty($atom_structure['sample_description_table'][$i]['height'])) {
                                     // assume that values stored here are more important than values stored in [tkhd] atom
                                     $info['video']['resolution_x'] = $atom_structure['sample_description_table'][$i]['width'];
                                     $info['video']['resolution_y'] = $atom_structure['sample_description_table'][$i]['height'];
                                     $info['quicktime']['video']['resolution_x'] = $info['video']['resolution_x'];
                                     $info['quicktime']['video']['resolution_y'] = $info['video']['resolution_y'];
                                 }
                                 break;
                             case 'qtvr':
                                 $info['video']['dataformat'] = 'quicktimevr';
                                 break;
                             case 'mp4a':
                             default:
                                 $info['quicktime']['audio']['codec'] = $this->QuicktimeAudioCodecLookup($atom_structure['sample_description_table'][$i]['data_format']);
                                 $info['quicktime']['audio']['sample_rate'] = $atom_structure['sample_description_table'][$i]['audio_sample_rate'];
                                 $info['quicktime']['audio']['channels'] = $atom_structure['sample_description_table'][$i]['audio_channels'];
                                 $info['quicktime']['audio']['bit_depth'] = $atom_structure['sample_description_table'][$i]['audio_bit_depth'];
                                 $info['audio']['codec'] = $info['quicktime']['audio']['codec'];
                                 $info['audio']['sample_rate'] = $info['quicktime']['audio']['sample_rate'];
                                 $info['audio']['channels'] = $info['quicktime']['audio']['channels'];
                                 $info['audio']['bits_per_sample'] = $info['quicktime']['audio']['bit_depth'];
                                 switch ($atom_structure['sample_description_table'][$i]['data_format']) {
                                     case 'raw ':
                                         // PCM
                                     // PCM
                                     case 'alac':
                                         // Apple Lossless Audio Codec
                                         $info['audio']['lossless'] = true;
                                         break;
                                     default:
                                         $info['audio']['lossless'] = false;
                                         break;
                                 }
                                 break;
                         }
                         break;
                     default:
                         switch ($atom_structure['sample_description_table'][$i]['data_format']) {
                             case 'mp4s':
                                 $info['fileformat'] = 'mp4';
                                 break;
                             default:
                                 // video atom
                                 $atom_structure['sample_description_table'][$i]['video_temporal_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 4));
                                 $atom_structure['sample_description_table'][$i]['video_spatial_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 4));
                                 $atom_structure['sample_description_table'][$i]['video_frame_width'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 16, 2));
                                 $atom_structure['sample_description_table'][$i]['video_frame_height'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 18, 2));
                                 $atom_structure['sample_description_table'][$i]['video_resolution_x'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 20, 4));
                                 $atom_structure['sample_description_table'][$i]['video_resolution_y'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 24, 4));
                                 $atom_structure['sample_description_table'][$i]['video_data_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 28, 4));
                                 $atom_structure['sample_description_table'][$i]['video_frame_count'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 32, 2));
                                 $atom_structure['sample_description_table'][$i]['video_encoder_name_len'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 34, 1));
                                 $atom_structure['sample_description_table'][$i]['video_encoder_name'] = substr($atom_structure['sample_description_table'][$i]['data'], 35, $atom_structure['sample_description_table'][$i]['video_encoder_name_len']);
                                 $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 66, 2));
                                 $atom_structure['sample_description_table'][$i]['video_color_table_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 68, 2));
                                 $atom_structure['sample_description_table'][$i]['video_pixel_color_type'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'] > 32 ? 'grayscale' : 'color';
                                 $atom_structure['sample_description_table'][$i]['video_pixel_color_name'] = $this->QuicktimeColorNameLookup($atom_structure['sample_description_table'][$i]['video_pixel_color_depth']);
                                 if ($atom_structure['sample_description_table'][$i]['video_pixel_color_name'] != 'invalid') {
                                     $info['quicktime']['video']['codec_fourcc'] = $atom_structure['sample_description_table'][$i]['data_format'];
                                     $info['quicktime']['video']['codec_fourcc_lookup'] = $this->QuicktimeVideoCodecLookup($atom_structure['sample_description_table'][$i]['data_format']);
                                     $info['quicktime']['video']['codec'] = $atom_structure['sample_description_table'][$i]['video_encoder_name_len'] > 0 ? $atom_structure['sample_description_table'][$i]['video_encoder_name'] : $atom_structure['sample_description_table'][$i]['data_format'];
                                     $info['quicktime']['video']['color_depth'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'];
                                     $info['quicktime']['video']['color_depth_name'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_name'];
                                     $info['video']['codec'] = $info['quicktime']['video']['codec'];
                                     $info['video']['bits_per_sample'] = $info['quicktime']['video']['color_depth'];
                                 }
                                 $info['video']['lossless'] = false;
                                 $info['video']['pixel_aspect_ratio'] = (double) 1;
                                 break;
                         }
                         break;
                 }
                 switch (strtolower($atom_structure['sample_description_table'][$i]['data_format'])) {
                     case 'mp4a':
                         $info['audio']['dataformat'] = 'mp4';
                         $info['quicktime']['audio']['codec'] = 'mp4';
                         break;
                     case '3ivx':
                     case '3iv1':
                     case '3iv2':
                         $info['video']['dataformat'] = '3ivx';
                         break;
                     case 'xvid':
                         $info['video']['dataformat'] = 'xvid';
                         break;
                     case 'mp4v':
                         $info['video']['dataformat'] = 'mpeg4';
                         break;
                     case 'divx':
                     case 'div1':
                     case 'div2':
                     case 'div3':
                     case 'div4':
                     case 'div5':
                     case 'div6':
                         $info['video']['dataformat'] = 'divx';
                         break;
                     default:
                         // do nothing
                         break;
                 }
                 unset($atom_structure['sample_description_table'][$i]['data']);
             }
             break;
         case 'stts':
             // Sample Table Time-to-Sample atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $sttsEntriesDataOffset = 8;
             //$FrameRateCalculatorArray = array();
             $frames_count = 0;
             for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                 $atom_structure['time_to_sample_table'][$i]['sample_count'] = getid3_lib::BigEndian2Int(substr($atom_data, $sttsEntriesDataOffset, 4));
                 $sttsEntriesDataOffset += 4;
                 $atom_structure['time_to_sample_table'][$i]['sample_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, $sttsEntriesDataOffset, 4));
                 $sttsEntriesDataOffset += 4;
                 $frames_count += $atom_structure['time_to_sample_table'][$i]['sample_count'];
                 // THIS SECTION REPLACED WITH CODE IN "stbl" ATOM
                 //if (!empty($info['quicktime']['time_scale']) && ($atom_structure['time_to_sample_table'][$i]['sample_duration'] > 0)) {
                 //	$stts_new_framerate = $info['quicktime']['time_scale'] / $atom_structure['time_to_sample_table'][$i]['sample_duration'];
                 //	if ($stts_new_framerate <= 60) {
                 //		// some atoms have durations of "1" giving a very large framerate, which probably is not right
                 //		$info['video']['frame_rate'] = max($info['video']['frame_rate'], $stts_new_framerate);
                 //	}
                 //}
                 //
                 //$FrameRateCalculatorArray[($info['quicktime']['time_scale'] / $atom_structure['time_to_sample_table'][$i]['sample_duration'])] += $atom_structure['time_to_sample_table'][$i]['sample_count'];
             }
             $info['quicktime']['stts_framecount'][] = $frames_count;
             //$sttsFramesTotal  = 0;
             //$sttsSecondsTotal = 0;
             //foreach ($FrameRateCalculatorArray as $frames_per_second => $frame_count) {
             //	if (($frames_per_second > 60) || ($frames_per_second < 1)) {
             //		// not video FPS information, probably audio information
             //		$sttsFramesTotal  = 0;
             //		$sttsSecondsTotal = 0;
             //		break;
             //	}
             //	$sttsFramesTotal  += $frame_count;
             //	$sttsSecondsTotal += $frame_count / $frames_per_second;
             //}
             //if (($sttsFramesTotal > 0) && ($sttsSecondsTotal > 0)) {
             //	if (($sttsFramesTotal / $sttsSecondsTotal) > $info['video']['frame_rate']) {
             //		$info['video']['frame_rate'] = $sttsFramesTotal / $sttsSecondsTotal;
             //	}
             //}
             break;
         case 'stss':
             // Sample Table Sync Sample (key frames) atom
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $stssEntriesDataOffset = 8;
                 for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                     $atom_structure['time_to_sample_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stssEntriesDataOffset, 4));
                     $stssEntriesDataOffset += 4;
                 }
             }
             break;
         case 'stsc':
             // Sample Table Sample-to-Chunk atom
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $stscEntriesDataOffset = 8;
                 for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                     $atom_structure['sample_to_chunk_table'][$i]['first_chunk'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4));
                     $stscEntriesDataOffset += 4;
                     $atom_structure['sample_to_chunk_table'][$i]['samples_per_chunk'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4));
                     $stscEntriesDataOffset += 4;
                     $atom_structure['sample_to_chunk_table'][$i]['sample_description'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4));
                     $stscEntriesDataOffset += 4;
                 }
             }
             break;
         case 'stsz':
             // Sample Table SiZe atom
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['sample_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
                 $stszEntriesDataOffset = 12;
                 if ($atom_structure['sample_size'] == 0) {
                     for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                         $atom_structure['sample_size_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stszEntriesDataOffset, 4));
                         $stszEntriesDataOffset += 4;
                     }
                 }
             }
             break;
         case 'stco':
             // Sample Table Chunk Offset atom
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $stcoEntriesDataOffset = 8;
                 for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                     $atom_structure['chunk_offset_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stcoEntriesDataOffset, 4));
                     $stcoEntriesDataOffset += 4;
                 }
             }
             break;
         case 'co64':
             // Chunk Offset 64-bit (version of "stco" that supports > 2GB files)
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $stcoEntriesDataOffset = 8;
                 for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                     $atom_structure['chunk_offset_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stcoEntriesDataOffset, 8));
                     $stcoEntriesDataOffset += 8;
                 }
             }
             break;
         case 'dref':
             // Data REFerence atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $drefDataOffset = 8;
             for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                 $atom_structure['data_references'][$i]['size'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 4));
                 $drefDataOffset += 4;
                 $atom_structure['data_references'][$i]['type'] = substr($atom_data, $drefDataOffset, 4);
                 $drefDataOffset += 4;
                 $atom_structure['data_references'][$i]['version'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 1));
                 $drefDataOffset += 1;
                 $atom_structure['data_references'][$i]['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 3));
                 // hardcoded: 0x0000
                 $drefDataOffset += 3;
                 $atom_structure['data_references'][$i]['data'] = substr($atom_data, $drefDataOffset, $atom_structure['data_references'][$i]['size'] - 4 - 4 - 1 - 3);
                 $drefDataOffset += $atom_structure['data_references'][$i]['size'] - 4 - 4 - 1 - 3;
                 $atom_structure['data_references'][$i]['flags']['self_reference'] = (bool) ($atom_structure['data_references'][$i]['flags_raw'] & 0x1);
             }
             break;
         case 'gmin':
             // base Media INformation atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['graphics_mode'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             $atom_structure['opcolor_red'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2));
             $atom_structure['opcolor_green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 2));
             $atom_structure['opcolor_blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2));
             $atom_structure['balance'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 2));
             $atom_structure['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, 14, 2));
             break;
         case 'smhd':
             // Sound Media information HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['balance'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             $atom_structure['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2));
             break;
         case 'vmhd':
             // Video Media information HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['graphics_mode'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             $atom_structure['opcolor_red'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2));
             $atom_structure['opcolor_green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 2));
             $atom_structure['opcolor_blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2));
             $atom_structure['flags']['no_lean_ahead'] = (bool) ($atom_structure['flags_raw'] & 0x1);
             break;
         case 'hdlr':
             // HanDLeR reference atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['component_type'] = substr($atom_data, 4, 4);
             $atom_structure['component_subtype'] = substr($atom_data, 8, 4);
             $atom_structure['component_manufacturer'] = substr($atom_data, 12, 4);
             $atom_structure['component_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['component_flags_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4));
             $atom_structure['component_name'] = $this->Pascal2String(substr($atom_data, 24));
             if ($atom_structure['component_subtype'] == 'STpn' && $atom_structure['component_manufacturer'] == 'zzzz') {
                 $info['video']['dataformat'] = 'quicktimevr';
             }
             break;
         case 'mdhd':
             // MeDia HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['time_scale'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 2));
             $atom_structure['quality'] = getid3_lib::BigEndian2Int(substr($atom_data, 22, 2));
             if ($atom_structure['time_scale'] == 0) {
                 $info['error'][] = 'Corrupt Quicktime file: mdhd.time_scale == zero';
                 return false;
             }
             $info['quicktime']['time_scale'] = isset($info['quicktime']['time_scale']) ? max($info['quicktime']['time_scale'], $atom_structure['time_scale']) : $atom_structure['time_scale'];
             $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']);
             $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']);
             $atom_structure['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale'];
             $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']);
             if (empty($info['comments']['language']) || !in_array($atom_structure['language'], $info['comments']['language'])) {
                 $info['comments']['language'][] = $atom_structure['language'];
             }
             break;
         case 'pnot':
             // Preview atom
             $atom_structure['modification_date'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             // "standard Macintosh format"
             $atom_structure['version_number'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             // hardcoded: 0x00
             $atom_structure['atom_type'] = substr($atom_data, 6, 4);
             // usually: 'PICT'
             $atom_structure['atom_index'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2));
             // usually: 0x01
             $atom_structure['modification_date_unix'] = getid3_lib::DateMac2Unix($atom_structure['modification_date']);
             break;
         case 'crgn':
             // Clipping ReGioN atom
             $atom_structure['region_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2));
             // The Region size, Region boundary box,
             $atom_structure['boundary_box'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 8));
             // and Clipping region data fields
             $atom_structure['clipping_data'] = substr($atom_data, 10);
             // constitute a QuickDraw region.
             break;
         case 'load':
             // track LOAD settings atom
             $atom_structure['preload_start_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             $atom_structure['preload_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['preload_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['default_hints_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['default_hints']['double_buffer'] = (bool) ($atom_structure['default_hints_raw'] & 0x20);
             $atom_structure['default_hints']['high_quality'] = (bool) ($atom_structure['default_hints_raw'] & 0x100);
             break;
         case 'tmcd':
             // TiMe CoDe atom
         // TiMe CoDe atom
         case 'chap':
             // CHAPter list atom
         // CHAPter list atom
         case 'sync':
             // SYNChronization atom
         // SYNChronization atom
         case 'scpt':
             // tranSCriPT atom
         // tranSCriPT atom
         case 'ssrc':
             // non-primary SouRCe atom
             for ($i = 0; $i < strlen($atom_data); $i += 4) {
                 @($atom_structure['track_id'][] = getid3_lib::BigEndian2Int(substr($atom_data, $i, 4)));
             }
             break;
         case 'elst':
             // Edit LiST atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                 $atom_structure['edit_list'][$i]['track_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $i * 12 + 0, 4));
                 $atom_structure['edit_list'][$i]['media_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $i * 12 + 4, 4));
                 $atom_structure['edit_list'][$i]['media_rate'] = getid3_lib::FixedPoint16_16(substr($atom_data, 8 + $i * 12 + 8, 4));
             }
             break;
         case 'kmat':
             // compressed MATte atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['matte_data_raw'] = substr($atom_data, 4);
             break;
         case 'ctab':
             // Color TABle atom
             $atom_structure['color_table_seed'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             // hardcoded: 0x00000000
             $atom_structure['color_table_flags'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             // hardcoded: 0x8000
             $atom_structure['color_table_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)) + 1;
             for ($colortableentry = 0; $colortableentry < $atom_structure['color_table_size']; $colortableentry++) {
                 $atom_structure['color_table'][$colortableentry]['alpha'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $colortableentry * 8 + 0, 2));
                 $atom_structure['color_table'][$colortableentry]['red'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $colortableentry * 8 + 2, 2));
                 $atom_structure['color_table'][$colortableentry]['green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $colortableentry * 8 + 4, 2));
                 $atom_structure['color_table'][$colortableentry]['blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $colortableentry * 8 + 6, 2));
             }
             break;
         case 'mvhd':
             // MoVie HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['time_scale'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['preferred_rate'] = getid3_lib::FixedPoint16_16(substr($atom_data, 20, 4));
             $atom_structure['preferred_volume'] = getid3_lib::FixedPoint8_8(substr($atom_data, 24, 2));
             $atom_structure['reserved'] = substr($atom_data, 26, 10);
             $atom_structure['matrix_a'] = getid3_lib::FixedPoint16_16(substr($atom_data, 36, 4));
             $atom_structure['matrix_b'] = getid3_lib::FixedPoint16_16(substr($atom_data, 40, 4));
             $atom_structure['matrix_u'] = getid3_lib::FixedPoint2_30(substr($atom_data, 44, 4));
             $atom_structure['matrix_c'] = getid3_lib::FixedPoint16_16(substr($atom_data, 48, 4));
             $atom_structure['matrix_d'] = getid3_lib::FixedPoint16_16(substr($atom_data, 52, 4));
             $atom_structure['matrix_v'] = getid3_lib::FixedPoint2_30(substr($atom_data, 56, 4));
             $atom_structure['matrix_x'] = getid3_lib::FixedPoint16_16(substr($atom_data, 60, 4));
             $atom_structure['matrix_y'] = getid3_lib::FixedPoint16_16(substr($atom_data, 64, 4));
             $atom_structure['matrix_w'] = getid3_lib::FixedPoint2_30(substr($atom_data, 68, 4));
             $atom_structure['preview_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 72, 4));
             $atom_structure['preview_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 76, 4));
             $atom_structure['poster_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 80, 4));
             $atom_structure['selection_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 84, 4));
             $atom_structure['selection_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 88, 4));
             $atom_structure['current_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 92, 4));
             $atom_structure['next_track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 96, 4));
             if ($atom_structure['time_scale'] == 0) {
                 $info['error'][] = 'Corrupt Quicktime file: mvhd.time_scale == zero';
                 return false;
             }
             $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']);
             $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']);
             $info['quicktime']['time_scale'] = isset($info['quicktime']['time_scale']) ? max($info['quicktime']['time_scale'], $atom_structure['time_scale']) : $atom_structure['time_scale'];
             $info['quicktime']['display_scale'] = $atom_structure['matrix_a'];
             $info['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale'];
             break;
         case 'tkhd':
             // TracK HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['trackid'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['reserved1'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4));
             $atom_structure['reserved2'] = getid3_lib::BigEndian2Int(substr($atom_data, 24, 8));
             $atom_structure['layer'] = getid3_lib::BigEndian2Int(substr($atom_data, 32, 2));
             $atom_structure['alternate_group'] = getid3_lib::BigEndian2Int(substr($atom_data, 34, 2));
             $atom_structure['volume'] = getid3_lib::FixedPoint8_8(substr($atom_data, 36, 2));
             $atom_structure['reserved3'] = getid3_lib::BigEndian2Int(substr($atom_data, 38, 2));
             // http://developer.apple.com/library/mac/#documentation/QuickTime/RM/MovieBasics/MTEditing/K-Chapter/11MatrixFunctions.html
             // http://developer.apple.com/library/mac/#documentation/QuickTime/qtff/QTFFChap4/qtff4.html#//apple_ref/doc/uid/TP40000939-CH206-18737
             $atom_structure['matrix_a'] = getid3_lib::FixedPoint16_16(substr($atom_data, 40, 4));
             $atom_structure['matrix_b'] = getid3_lib::FixedPoint16_16(substr($atom_data, 44, 4));
             $atom_structure['matrix_u'] = getid3_lib::FixedPoint2_30(substr($atom_data, 48, 4));
             $atom_structure['matrix_c'] = getid3_lib::FixedPoint16_16(substr($atom_data, 52, 4));
             $atom_structure['matrix_d'] = getid3_lib::FixedPoint16_16(substr($atom_data, 56, 4));
             $atom_structure['matrix_v'] = getid3_lib::FixedPoint2_30(substr($atom_data, 60, 4));
             $atom_structure['matrix_x'] = getid3_lib::FixedPoint16_16(substr($atom_data, 64, 4));
             $atom_structure['matrix_y'] = getid3_lib::FixedPoint16_16(substr($atom_data, 68, 4));
             $atom_structure['matrix_w'] = getid3_lib::FixedPoint2_30(substr($atom_data, 72, 4));
             $atom_structure['width'] = getid3_lib::FixedPoint16_16(substr($atom_data, 76, 4));
             $atom_structure['height'] = getid3_lib::FixedPoint16_16(substr($atom_data, 80, 4));
             $atom_structure['flags']['enabled'] = (bool) ($atom_structure['flags_raw'] & 0x1);
             $atom_structure['flags']['in_movie'] = (bool) ($atom_structure['flags_raw'] & 0x2);
             $atom_structure['flags']['in_preview'] = (bool) ($atom_structure['flags_raw'] & 0x4);
             $atom_structure['flags']['in_poster'] = (bool) ($atom_structure['flags_raw'] & 0x8);
             $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']);
             $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']);
             if ($atom_structure['flags']['enabled'] == 1) {
                 if (!isset($info['video']['resolution_x']) || !isset($info['video']['resolution_y'])) {
                     $info['video']['resolution_x'] = $atom_structure['width'];
                     $info['video']['resolution_y'] = $atom_structure['height'];
                 }
                 $info['video']['resolution_x'] = max($info['video']['resolution_x'], $atom_structure['width']);
                 $info['video']['resolution_y'] = max($info['video']['resolution_y'], $atom_structure['height']);
                 $info['quicktime']['video']['resolution_x'] = $info['video']['resolution_x'];
                 $info['quicktime']['video']['resolution_y'] = $info['video']['resolution_y'];
             } else {
                 // see: http://www.getid3.org/phpBB3/viewtopic.php?t=1295
                 //if (isset($info['video']['resolution_x'])) { unset($info['video']['resolution_x']); }
                 //if (isset($info['video']['resolution_y'])) { unset($info['video']['resolution_y']); }
                 //if (isset($info['quicktime']['video']))    { unset($info['quicktime']['video']);    }
             }
             break;
         case 'iods':
             // Initial Object DeScriptor atom
             // http://www.koders.com/c/fid1FAB3E762903DC482D8A246D4A4BF9F28E049594.aspx?s=windows.h
             // http://libquicktime.sourcearchive.com/documentation/1.0.2plus-pdebian/iods_8c-source.html
             $offset = 0;
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 3));
             $offset += 3;
             $atom_structure['mp4_iod_tag'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['length'] = $this->quicktime_read_mp4_descr_length($atom_data, $offset);
             //$offset already adjusted by quicktime_read_mp4_descr_length()
             $atom_structure['object_descriptor_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 2));
             $offset += 2;
             $atom_structure['od_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['scene_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['audio_profile_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['video_profile_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['graphics_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['num_iods_tracks'] = ($atom_structure['length'] - 7) / 6;
             // 6 bytes would only be right if all tracks use 1-byte length fields
             for ($i = 0; $i < $atom_structure['num_iods_tracks']; $i++) {
                 $atom_structure['track'][$i]['ES_ID_IncTag'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
                 $offset += 1;
                 $atom_structure['track'][$i]['length'] = $this->quicktime_read_mp4_descr_length($atom_data, $offset);
                 //$offset already adjusted by quicktime_read_mp4_descr_length()
                 $atom_structure['track'][$i]['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 4));
                 $offset += 4;
             }
             $atom_structure['audio_profile_name'] = $this->QuicktimeIODSaudioProfileName($atom_structure['audio_profile_id']);
             $atom_structure['video_profile_name'] = $this->QuicktimeIODSvideoProfileName($atom_structure['video_profile_id']);
             break;
         case 'ftyp':
             // FileTYPe (?) atom (for MP4 it seems)
             $atom_structure['signature'] = substr($atom_data, 0, 4);
             $atom_structure['unknown_1'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['fourcc'] = substr($atom_data, 8, 4);
             break;
         case 'mdat':
             // Media DATa atom
             // 'mdat' contains the actual data for the audio/video, possibly also subtitles
             /* due to lack of known documentation, this is a kludge implementation. If you know of documentation on how mdat is properly structed, please send it to info@getid3.org */
             // first, skip any 'wide' padding, and second 'mdat' header (with specified size of zero?)
             $mdat_offset = 0;
             while (true) {
                 if (substr($atom_data, $mdat_offset, 8) == "" . 'wide') {
                     $mdat_offset += 8;
                 } elseif (substr($atom_data, $mdat_offset, 8) == "" . 'mdat') {
                     $mdat_offset += 8;
                 } else {
                     break;
                 }
             }
             // check to see if it looks like chapter titles, in the form of unterminated strings with a leading 16-bit size field
             while (($chapter_string_length = getid3_lib::BigEndian2Int(substr($atom_data, $mdat_offset, 2))) && $chapter_string_length < 1000 && $chapter_string_length <= strlen($atom_data) - $mdat_offset - 2 && preg_match('#^[\\x20-\\xFF]+$#', substr($atom_data, $mdat_offset + 2, $chapter_string_length), $chapter_matches)) {
                 $mdat_offset += 2 + $chapter_string_length;
                 @($info['quicktime']['comments']['chapters'][] = $chapter_matches[0]);
             }
             if ($atomsize > 8 && (!isset($info['avdataend_tmp']) || $info['quicktime'][$atomname]['size'] > $info['avdataend_tmp'] - $info['avdataoffset'])) {
                 $info['avdataoffset'] = $atom_structure['offset'] + 8;
                 // $info['quicktime'][$atomname]['offset'] + 8;
                 $OldAVDataEnd = $info['avdataend'];
                 $info['avdataend'] = $atom_structure['offset'] + $atom_structure['size'];
                 // $info['quicktime'][$atomname]['offset'] + $info['quicktime'][$atomname]['size'];
                 $getid3_temp = new getID3();
                 $getid3_temp->openfile($this->getid3->filename);
                 $getid3_temp->info['avdataoffset'] = $info['avdataoffset'];
                 $getid3_temp->info['avdataend'] = $info['avdataend'];
                 $getid3_mp3 = new getid3_mp3($getid3_temp);
                 if ($getid3_mp3->MPEGaudioHeaderValid($getid3_mp3->MPEGaudioHeaderDecode($this->fread(4)))) {
                     $getid3_mp3->getOnlyMPEGaudioInfo($getid3_temp->info['avdataoffset'], false);
                     if (!empty($getid3_temp->info['warning'])) {
                         foreach ($getid3_temp->info['warning'] as $value) {
                             $info['warning'][] = $value;
                         }
                     }
                     if (!empty($getid3_temp->info['mpeg'])) {
                         $info['mpeg'] = $getid3_temp->info['mpeg'];
                         if (isset($info['mpeg']['audio'])) {
                             $info['audio']['dataformat'] = 'mp3';
                             $info['audio']['codec'] = !empty($info['mpeg']['audio']['encoder']) ? $info['mpeg']['audio']['encoder'] : (!empty($info['mpeg']['audio']['codec']) ? $info['mpeg']['audio']['codec'] : (!empty($info['mpeg']['audio']['LAME']) ? 'LAME' : 'mp3'));
                             $info['audio']['sample_rate'] = $info['mpeg']['audio']['sample_rate'];
                             $info['audio']['channels'] = $info['mpeg']['audio']['channels'];
                             $info['audio']['bitrate'] = $info['mpeg']['audio']['bitrate'];
                             $info['audio']['bitrate_mode'] = strtolower($info['mpeg']['audio']['bitrate_mode']);
                             $info['bitrate'] = $info['audio']['bitrate'];
                         }
                     }
                 }
                 unset($getid3_mp3, $getid3_temp);
                 $info['avdataend'] = $OldAVDataEnd;
                 unset($OldAVDataEnd);
             }
             unset($mdat_offset, $chapter_string_length, $chapter_matches);
             break;
         case 'free':
             // FREE space atom
         // FREE space atom
         case 'skip':
             // SKIP atom
         // SKIP atom
         case 'wide':
             // 64-bit expansion placeholder atom
             // 'free', 'skip' and 'wide' are just padding, contains no useful data at all
             // When writing QuickTime files, it is sometimes necessary to update an atom's size.
             // It is impossible to update a 32-bit atom to a 64-bit atom since the 32-bit atom
             // is only 8 bytes in size, and the 64-bit atom requires 16 bytes. Therefore, QuickTime
             // puts an 8-byte placeholder atom before any atoms it may have to update the size of.
             // In this way, if the atom needs to be converted from a 32-bit to a 64-bit atom, the
             // placeholder atom can be overwritten to obtain the necessary 8 extra bytes.
             // The placeholder atom has a type of kWideAtomPlaceholderType ( 'wide' ).
             break;
         case 'nsav':
             // NoSAVe atom
             // http://developer.apple.com/technotes/tn/tn2038.html
             $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             break;
         case 'ctyp':
             // Controller TYPe atom (seen on QTVR)
             // http://homepages.slingshot.co.nz/~helmboy/quicktime/formats/qtm-layout.txt
             // some controller names are:
             //   0x00 + 'std' for linear movie
             //   'none' for no controls
             $atom_structure['ctyp'] = substr($atom_data, 0, 4);
             $info['quicktime']['controller'] = $atom_structure['ctyp'];
             switch ($atom_structure['ctyp']) {
                 case 'qtvr':
                     $info['video']['dataformat'] = 'quicktimevr';
                     break;
             }
             break;
         case 'pano':
             // PANOrama track (seen on QTVR)
             $atom_structure['pano'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             break;
         case 'hint':
             // HINT track
         // HINT track
         case 'hinf':
             //
         //
         case 'hinv':
             //
         //
         case 'hnti':
             //
             $info['quicktime']['hinting'] = true;
             break;
         case 'imgt':
             // IMaGe Track reference (kQTVRImageTrackRefType) (seen on QTVR)
             for ($i = 0; $i < $atom_structure['size'] - 8; $i += 4) {
                 $atom_structure['imgt'][] = getid3_lib::BigEndian2Int(substr($atom_data, $i, 4));
             }
             break;
             // Observed-but-not-handled atom types are just listed here to prevent warnings being generated
         // Observed-but-not-handled atom types are just listed here to prevent warnings being generated
         case 'FXTC':
             // Something to do with Adobe After Effects (?)
         // Something to do with Adobe After Effects (?)
         case 'PrmA':
         case 'code':
         case 'FIEL':
             // this is NOT "fiel" (Field Ordering) as describe here: http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html
         // this is NOT "fiel" (Field Ordering) as describe here: http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html
         case 'tapt':
             // TrackApertureModeDimensionsAID - http://developer.apple.com/documentation/QuickTime/Reference/QT7-1_Update_Reference/Constants/Constants.html
             // tapt seems to be used to compute the video size [http://www.getid3.org/phpBB3/viewtopic.php?t=838]
             // * http://lists.apple.com/archives/quicktime-api/2006/Aug/msg00014.html
             // * http://handbrake.fr/irclogs/handbrake-dev/handbrake-dev20080128_pg2.html
         // TrackApertureModeDimensionsAID - http://developer.apple.com/documentation/QuickTime/Reference/QT7-1_Update_Reference/Constants/Constants.html
         // tapt seems to be used to compute the video size [http://www.getid3.org/phpBB3/viewtopic.php?t=838]
         // * http://lists.apple.com/archives/quicktime-api/2006/Aug/msg00014.html
         // * http://handbrake.fr/irclogs/handbrake-dev/handbrake-dev20080128_pg2.html
         case 'ctts':
             //  STCompositionOffsetAID             - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         //  STCompositionOffsetAID             - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         case 'cslg':
             //  STCompositionShiftLeastGreatestAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         //  STCompositionShiftLeastGreatestAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         case 'sdtp':
             //  STSampleDependencyAID              - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         //  STSampleDependencyAID              - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         case 'stps':
             //  STPartialSyncSampleAID             - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
             //$atom_structure['data'] = $atom_data;
             break;
         case "©" . 'xyz':
             // GPS latitude+longitude+altitude
             $atom_structure['data'] = $atom_data;
             if (preg_match('#([\\+\\-][0-9\\.]+)([\\+\\-][0-9\\.]+)([\\+\\-][0-9\\.]+)?/$#i', $atom_data, $matches)) {
                 @(list($all, $latitude, $longitude, $altitude) = $matches);
                 $info['quicktime']['comments']['gps_latitude'][] = floatval($latitude);
                 $info['quicktime']['comments']['gps_longitude'][] = floatval($longitude);
                 if (!empty($altitude)) {
                     $info['quicktime']['comments']['gps_altitude'][] = floatval($altitude);
                 }
             } else {
                 $info['warning'][] = 'QuickTime atom "©xyz" data does not match expected data pattern at offset ' . $baseoffset . '. Please report as getID3() bug.';
             }
             break;
         case 'NCDT':
             // http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html
             // Nikon-specific QuickTime tags found in the NCDT atom of MOV videos from some Nikon cameras such as the Coolpix S8000 and D5100
             $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 4, $atomHierarchy, $ParseAllPossibleAtoms);
             break;
         case 'NCTH':
             // Nikon Camera THumbnail image
         // Nikon Camera THumbnail image
         case 'NCVW':
             // Nikon Camera preVieW image
             // http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html
             if (preg_match('/^\\xFF\\xD8\\xFF/', $atom_data)) {
                 $atom_structure['data'] = $atom_data;
                 $atom_structure['image_mime'] = 'image/jpeg';
                 $atom_structure['description'] = $atomname == 'NCTH' ? 'Nikon Camera Thumbnail Image' : ($atomname == 'NCVW' ? 'Nikon Camera Preview Image' : 'Nikon preview image');
                 $info['quicktime']['comments']['picture'][] = array('image_mime' => $atom_structure['image_mime'], 'data' => $atom_data, 'description' => $atom_structure['description']);
             }
             break;
         case 'NCTG':
             // Nikon - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html#NCTG
             $atom_structure['data'] = $this->QuicktimeParseNikonNCTG($atom_data);
             break;
         case 'NCHD':
             // Nikon:MakerNoteVersion  - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html
         // Nikon:MakerNoteVersion  - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html
         case 'NCDB':
             // Nikon                   - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html
         // Nikon                   - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html
         case 'CNCV':
             // Canon:CompressorVersion - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Canon.html
             $atom_structure['data'] = $atom_data;
             break;
         case "":
         case 'meta':
             // METAdata atom
             // some kind of metacontainer, may contain a big data dump such as:
             // mdta keys  mdtacom.apple.quicktime.make (mdtacom.apple.quicktime.creationdate ,mdtacom.apple.quicktime.location.ISO6709 $mdtacom.apple.quicktime.software !mdtacom.apple.quicktime.model ilst   data DEApple 0  (data DE2011-05-11T17:54:04+0200 2  *data DE+52.4936+013.3897+040.247/   data DE4.3.1  data DEiPhone 4
             // http://www.geocities.com/xhelmboyx/quicktime/formats/qti-layout.txt
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom(substr($atom_data, 4), $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms);
             //$atom_structure['subatoms']  = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms);
             break;
         case 'data':
             // metaDATA atom
             // seems to be 2 bytes language code (ASCII), 2 bytes unknown (set to 0x10B5 in sample I have), remainder is useful data
             $atom_structure['language'] = substr($atom_data, 4 + 0, 2);
             $atom_structure['unknown'] = getid3_lib::BigEndian2Int(substr($atom_data, 4 + 2, 2));
             $atom_structure['data'] = substr($atom_data, 4 + 4);
             break;
         default:
             $info['warning'][] = 'Unknown QuickTime atom type: "' . $atomname . '" (' . trim(getid3_lib::PrintHexBytes($atomname)) . ') at offset ' . $baseoffset;
             $atom_structure['data'] = $atom_data;
             break;
     }
     array_pop($atomHierarchy);
     return $atom_structure;
 }
 public static function ParseID3v2GenreString($genre_string)
 {
     // Parse genres into arrays of genreName and genreID
     // ID3v2.2.x, ID3v2.3.x: '(21)' or '(4)Eurodisco' or '(51)(39)' or '(55)((I think...)'
     // ID3v2.4.x: '21' $00 'Eurodisco' $00
     $genre_string = trim($genre_string);
     $return_array = array();
     if (strpos($genre_string, "") !== false) {
         $unprocessed = trim($genre_string);
         // trailing nulls will cause an infinite loop.
         $genre_string = '';
         while (strpos($unprocessed, "") !== false) {
             // convert null-seperated v2.4-format into v2.3 ()-seperated format
             $end_pos = strpos($unprocessed, "");
             $genre_string .= '(' . substr($unprocessed, 0, $end_pos) . ')';
             $unprocessed = substr($unprocessed, $end_pos + 1);
         }
         unset($unprocessed);
     } elseif (preg_match('/^([0-9]+|CR|RX)$/i', $genre_string)) {
         // some tagging program (including some that use TagLib) fail to include null byte after numeric genre
         $genre_string = '(' . $genre_string . ')';
     }
     if (getid3_id3v1::LookupGenreID($genre_string)) {
         $return_array['genre'][] = $genre_string;
     } else {
         while (strpos($genre_string, '(') !== false) {
             $start_pos = strpos($genre_string, '(');
             $end_pos = strpos($genre_string, ')');
             if (substr($genre_string, $start_pos + 1, 1) == '(') {
                 $genre_string = substr($genre_string, 0, $start_pos) . substr($genre_string, $start_pos + 1);
                 $end_pos--;
             }
             $element = substr($genre_string, $start_pos + 1, $end_pos - ($start_pos + 1));
             $genre_string = substr($genre_string, 0, $start_pos) . substr($genre_string, $end_pos + 1);
             if (getid3_id3v1::LookupGenreName($element)) {
                 // $element is a valid genre id/abbreviation
                 if (empty($return_array['genre']) || !in_array(getid3_id3v1::LookupGenreName($element), $return_array['genre'])) {
                     // avoid duplicate entires
                     $return_array['genre'][] = getid3_id3v1::LookupGenreName($element);
                 }
             } else {
                 if (empty($return_array['genre']) || !in_array($element, $return_array['genre'])) {
                     // avoid duplicate entires
                     $return_array['genre'][] = $element;
                 }
             }
         }
     }
     if ($genre_string) {
         if (empty($return_array['genre']) || !in_array($genre_string, $return_array['genre'])) {
             // avoid duplicate entires
             $return_array['genre'][] = $genre_string;
         }
     }
     return $return_array;
 }
示例#10
0
 } elseif (!empty($OldThisFileInfo['comments']['track']) && is_array($OldThisFileInfo['comments']['track'])) {
     $RawTrackNumberArray = $OldThisFileInfo['comments']['track'];
 } else {
     $RawTrackNumberArray = array();
 }
 foreach ($RawTrackNumberArray as $key => $value) {
     if (strlen($value) > strlen($TrackNumber)) {
         // ID3v1 may store track as "3" but ID3v2/APE would store as "03/16"
         $TrackNumber = $value;
     }
 }
 if (strstr($TrackNumber, '/')) {
     list($TrackNumber, $TracksTotal) = explode('/', $TrackNumber);
 }
 echo '<tr><td align="right"><b>Track</b></td><td><input type="text" size="2" name="Track" value="' . htmlentities($TrackNumber, ENT_QUOTES) . '"> of <input type="text" size="2" name="TracksTotal" value="' . htmlentities($TracksTotal, ENT_QUOTES) . '"></TD></TR>';
 $ArrayOfGenresTemp = getid3_id3v1::ArrayOfGenres();
 // get the array of genres
 foreach ($ArrayOfGenresTemp as $key => $value) {
     // change keys to match displayed value
     $ArrayOfGenres[$value] = $value;
 }
 unset($ArrayOfGenresTemp);
 // remove temporary array
 unset($ArrayOfGenres['Cover']);
 // take off these special cases
 unset($ArrayOfGenres['Remix']);
 unset($ArrayOfGenres['Unknown']);
 $ArrayOfGenres[''] = '- Unknown -';
 // Add special cases back in with renamed key/value
 $ArrayOfGenres['Cover'] = '-Cover-';
 $ArrayOfGenres['Remix'] = '-Remix-';
示例#11
0
 /**
  * @covers \GravityMedia\Metadata\Tag\Id3v1::getGenre
  */
 public function testShouldWriteAndReadGenre()
 {
     $availableGenres = array_values(Id3v1Processor::ArrayOfGenres());
     $expected = $availableGenres[array_rand($availableGenres)];
     $this->file->getMetadata()->getId3v1Tag()->setGenre($expected)->save();
     $this->assertEquals($expected, $this->file->getMetadata()->getId3v1Tag()->getGenre());
 }
示例#12
0
 public function ParseID3v2GenreString($genrestring)
 {
     // Parse genres into arrays of genreName and genreID
     // ID3v2.2.x, ID3v2.3.x: '(21)' or '(4)Eurodisco' or '(51)(39)' or '(55)((I think...)'
     // ID3v2.4.x: '21' $00 'Eurodisco' $00
     $clean_genres = array();
     if (strpos($genrestring, "") === false) {
         $genrestring = preg_replace('#\\(([0-9]{1,3})\\)#', '$1' . "", $genrestring);
     }
     // note: MusicBrainz Picard incorrectly stores plaintext genres separated by "/" when writing in ID3v2.3 mode, hack-fix here:
     // replace / with NULL, then replace back the two ID3v1 genres that legitimately have "/" as part of the single genre name
     $genrestring = str_replace('/', "", $genrestring);
     $genrestring = str_replace('Pop' . "" . 'Funk', 'Pop/Funk', $genrestring);
     $genrestring = str_replace('Rock' . "" . 'Rock', 'Folk/Rock', $genrestring);
     // some other taggers separate multiple genres with semicolon, e.g. "Heavy Metal;Thrash Metal;Metal"
     $genrestring = str_replace(';', "", $genrestring);
     $genre_elements = explode("", $genrestring);
     foreach ($genre_elements as $element) {
         $element = trim($element);
         if ($element) {
             if (preg_match('#^[0-9]{1,3}#', $element)) {
                 $clean_genres[] = getid3_id3v1::LookupGenreName($element);
             } else {
                 $clean_genres[] = str_replace('((', '(', $element);
             }
         }
     }
     return $clean_genres;
 }
 protected function generate_tag()
 {
     $result = 'TAG';
     $result .= str_pad(trim(substr($this->title, 0, 30)), 30, "", STR_PAD_RIGHT);
     $result .= str_pad(trim(substr($this->artist, 0, 30)), 30, "", STR_PAD_RIGHT);
     $result .= str_pad(trim(substr($this->album, 0, 30)), 30, "", STR_PAD_RIGHT);
     $result .= str_pad(trim(substr($this->year, 0, 4)), 4, "", STR_PAD_LEFT);
     if (!empty($this->track) && $this->track > 0 && $this->track <= 255) {
         $result .= str_pad(trim(substr($this->comment, 0, 28)), 28, "", STR_PAD_RIGHT);
         $result .= "";
         $result .= chr($this->track);
     } else {
         $result .= str_pad(trim(substr($comment, 0, 30)), 30, "", STR_PAD_RIGHT);
     }
     // both genre and genre_id set
     if ($this->genre && $this->genre_id) {
         if ($this->genre != getid3_id3v1::LookupGenreName($this->genre_id)) {
             throw new getid3_exception('Genre and genre_id does not match. Unset one and the other will be determined automatically.');
         }
     } elseif ($this->genre) {
         $this->genre_id = getid3_id3v1::LookupGenreID($this->genre);
     } else {
         if ($this->genre_id < 0 || $this->genre_id > 147) {
             $this->genre_id = 255;
             // 'unknown' genre
         }
         $this->genre = getid3_id3v1::LookupGenreName($this->genre_id);
     }
     $result .= chr(intval($this->genre_id));
     return $result;
 }
 function QuicktimeParseAtom($atomname, $atomsize, $atom_data, &$ThisFileInfo, $baseoffset, &$atomHierarchy, $ParseAllPossibleAtoms)
 {
     // http://developer.apple.com/techpubs/quicktime/qtdevdocs/APIREF/INDEX/atomalphaindex.htm
     $atomparent = array_pop($atomHierarchy);
     array_push($atomHierarchy, $atomname);
     $atom_structure['hierarchy'] = implode(' ', $atomHierarchy);
     $atom_structure['name'] = $atomname;
     $atom_structure['size'] = $atomsize;
     $atom_structure['offset'] = $baseoffset;
     switch ($atomname) {
         case 'moov':
             // MOVie container atom
         // MOVie container atom
         case 'trak':
             // TRAcK container atom
         // TRAcK container atom
         case 'clip':
             // CLIPping container atom
         // CLIPping container atom
         case 'matt':
             // track MATTe container atom
         // track MATTe container atom
         case 'edts':
             // EDiTS container atom
         // EDiTS container atom
         case 'tref':
             // Track REFerence container atom
         // Track REFerence container atom
         case 'mdia':
             // MeDIA container atom
         // MeDIA container atom
         case 'minf':
             // Media INFormation container atom
         // Media INFormation container atom
         case 'dinf':
             // Data INFormation container atom
         // Data INFormation container atom
         case 'udta':
             // User DaTA container atom
         // User DaTA container atom
         case 'cmov':
             // Compressed MOVie container atom
         // Compressed MOVie container atom
         case 'rmra':
             // Reference Movie Record Atom
         // Reference Movie Record Atom
         case 'rmda':
             // Reference Movie Descriptor Atom
         // Reference Movie Descriptor Atom
         case 'gmhd':
             // Generic Media info HeaDer atom (seen on QTVR)
         // Generic Media info HeaDer atom (seen on QTVR)
         case 'ilst':
             // Item LiST container atom
             $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $ThisFileInfo, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms);
             break;
         case 'stbl':
             // Sample TaBLe container atom
             $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $ThisFileInfo, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms);
             $isVideo = false;
             $framerate = 0;
             $framecount = 0;
             foreach ($atom_structure['subatoms'] as $key => $value_array) {
                 if (isset($value_array['sample_description_table'])) {
                     foreach ($value_array['sample_description_table'] as $key2 => $value_array2) {
                         if (isset($value_array2['data_format'])) {
                             switch ($value_array2['data_format']) {
                                 case 'avc1':
                                 case 'mp4v':
                                     // video data
                                     $isVideo = true;
                                     break;
                                 case 'mp4a':
                                     // audio data
                                     break;
                             }
                         }
                     }
                 } elseif (isset($value_array['time_to_sample_table'])) {
                     foreach ($value_array['time_to_sample_table'] as $key2 => $value_array2) {
                         if (isset($value_array2['sample_count']) && isset($value_array2['sample_duration']) && $value_array2['sample_duration'] > 0) {
                             $framerate = round($ThisFileInfo['quicktime']['time_scale'] / $value_array2['sample_duration'], 3);
                             $framecount = $value_array2['sample_count'];
                         }
                     }
                 }
             }
             if ($isVideo && $framerate) {
                 $ThisFileInfo['quicktime']['video']['frame_rate'] = $framerate;
                 $ThisFileInfo['video']['frame_rate'] = $ThisFileInfo['quicktime']['video']['frame_rate'];
             }
             if ($isVideo && $framecount) {
                 $ThisFileInfo['quicktime']['video']['frame_count'] = $framecount;
             }
             break;
         case 'aART':
             // Album ARTist
         // Album ARTist
         case 'catg':
             // CaTeGory
         // CaTeGory
         case 'covr':
             // COVeR artwork
         // COVeR artwork
         case 'cpil':
             // ComPILation
         // ComPILation
         case 'cprt':
             // CoPyRighT
         // CoPyRighT
         case 'desc':
             // DESCription
         // DESCription
         case 'disk':
             // DISK number
         // DISK number
         case 'egid':
             // Episode Global ID
         // Episode Global ID
         case 'gnre':
             // GeNRE
         // GeNRE
         case 'keyw':
             // KEYWord
         // KEYWord
         case 'ldes':
         case 'pcst':
             // PodCaST
         // PodCaST
         case 'pgap':
             // GAPless Playback
         // GAPless Playback
         case 'purd':
             // PURchase Date
         // PURchase Date
         case 'purl':
             // Podcast URL
         // Podcast URL
         case 'rati':
         case 'rndu':
         case 'rpdu':
         case 'rtng':
             // RaTiNG
         // RaTiNG
         case 'stik':
         case 'tmpo':
             // TeMPO (BPM)
         // TeMPO (BPM)
         case 'trkn':
             // TRacK Number
         // TRacK Number
         case 'tves':
             // TV EpiSode
         // TV EpiSode
         case 'tvnn':
             // TV Network Name
         // TV Network Name
         case 'tvsh':
             // TV SHow Name
         // TV SHow Name
         case 'tvsn':
             // TV SeasoN
         // TV SeasoN
         case 'akID':
             // iTunes store account type
         // iTunes store account type
         case 'apID':
         case 'atID':
         case 'cmID':
         case 'cnID':
         case 'geID':
         case 'plID':
         case 'sfID':
             // iTunes store country
         // iTunes store country
         case '©alb':
             // ALBum
         // ALBum
         case '©art':
             // ARTist
         // ARTist
         case '©ART':
         case '©aut':
         case '©cmt':
             // CoMmenT
         // CoMmenT
         case '©com':
             // COMposer
         // COMposer
         case '©cpy':
         case '©day':
             // content created year
         // content created year
         case '©dir':
         case '©ed1':
         case '©ed2':
         case '©ed3':
         case '©ed4':
         case '©ed5':
         case '©ed6':
         case '©ed7':
         case '©ed8':
         case '©ed9':
         case '©enc':
         case '©fmt':
         case '©gen':
             // GENre
         // GENre
         case '©grp':
             // GRouPing
         // GRouPing
         case '©hst':
         case '©inf':
         case '©lyr':
             // LYRics
         // LYRics
         case '©mak':
         case '©mod':
         case '©nam':
             // full NAMe
         // full NAMe
         case '©ope':
         case '©PRD':
         case '©prd':
         case '©prf':
         case '©req':
         case '©src':
         case '©swr':
         case '©too':
             // encoder
         // encoder
         case '©trk':
             // TRacK
         // TRacK
         case '©url':
         case '©wrn':
         case '©wrt':
             // WRiTer
         // WRiTer
         case '----':
             // itunes specific
             if ($atomparent == 'udta') {
                 // User data atom handler
                 $atom_structure['data_length'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2));
                 $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2));
                 $atom_structure['data'] = substr($atom_data, 4);
                 $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']);
                 if (empty($ThisFileInfo['comments']['language']) || !in_array($atom_structure['language'], $ThisFileInfo['comments']['language'])) {
                     $ThisFileInfo['comments']['language'][] = $atom_structure['language'];
                 }
             } else {
                 // Apple item list box atom handler
                 $atomoffset = 0;
                 while ($atomoffset < strlen($atom_data)) {
                     $boxsize = getid3_lib::BigEndian2Int(substr($atom_data, $atomoffset, 4));
                     $boxtype = substr($atom_data, $atomoffset + 4, 4);
                     $boxdata = substr($atom_data, $atomoffset + 8, $boxsize - 8);
                     switch ($boxtype) {
                         case 'mean':
                         case 'name':
                             $atom_structure[$boxtype] = substr($boxdata, 4);
                             break;
                         case 'data':
                             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($boxdata, 0, 1));
                             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($boxdata, 1, 3));
                             switch ($atom_structure['flags_raw']) {
                                 case 0:
                                     // data flag
                                 // data flag
                                 case 21:
                                     // tmpo/cpil flag
                                     switch ($atomname) {
                                         case 'cpil':
                                         case 'pcst':
                                         case 'pgap':
                                             $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1));
                                             break;
                                         case 'tmpo':
                                             $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 2));
                                             break;
                                         case 'disk':
                                         case 'trkn':
                                             $num = getid3_lib::BigEndian2Int(substr($boxdata, 10, 2));
                                             $num_total = getid3_lib::BigEndian2Int(substr($boxdata, 12, 2));
                                             $atom_structure['data'] = empty($num) ? '' : $num;
                                             $atom_structure['data'] .= empty($num_total) ? '' : '/' . $num_total;
                                             break;
                                         case 'gnre':
                                             $GenreID = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4));
                                             $atom_structure['data'] = getid3_id3v1::LookupGenreName($GenreID - 1);
                                             break;
                                         case 'rtng':
                                             $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1));
                                             $atom_structure['data'] = $this->QuicktimeContentRatingLookup($atom_structure[$atomname]);
                                             break;
                                         case 'stik':
                                             $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1));
                                             $atom_structure['data'] = $this->QuicktimeSTIKLookup($atom_structure[$atomname]);
                                             break;
                                         case 'sfID':
                                             $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4));
                                             $atom_structure['data'] = $this->QuicktimeStoreFrontCodeLookup($atom_structure[$atomname]);
                                             break;
                                         case 'egid':
                                         case 'purl':
                                             $atom_structure['data'] = substr($boxdata, 8);
                                             break;
                                         default:
                                             $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4));
                                     }
                                     break;
                                 case 1:
                                     // text flag
                                 // text flag
                                 case 13:
                                     // image flag
                                 // image flag
                                 default:
                                     $atom_structure['data'] = substr($boxdata, 8);
                                     break;
                             }
                             break;
                         default:
                             $ThisFileInfo['warning'][] = 'Unknown QuickTime box type: "' . $boxtype . '" at offset ' . $baseoffset;
                             $atom_structure['data'] = $atom_data;
                     }
                     $atomoffset += $boxsize;
                 }
             }
             $this->CopyToAppropriateCommentsSection($atomname, $atom_structure['data'], $ThisFileInfo, $atom_structure['name']);
             break;
         case 'play':
             // auto-PLAY atom
             $atom_structure['autoplay'] = (bool) getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $ThisFileInfo['quicktime']['autoplay'] = $atom_structure['autoplay'];
             break;
         case 'WLOC':
             // Window LOCation atom
             $atom_structure['location_x'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2));
             $atom_structure['location_y'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2));
             break;
         case 'LOOP':
             // LOOPing atom
         // LOOPing atom
         case 'SelO':
             // play SELection Only atom
         // play SELection Only atom
         case 'AllF':
             // play ALL Frames atom
             $atom_structure['data'] = getid3_lib::BigEndian2Int($atom_data);
             break;
         case 'name':
             //
         //
         case 'MCPS':
             // Media Cleaner PRo
         // Media Cleaner PRo
         case '@PRM':
             // adobe PReMiere version
         // adobe PReMiere version
         case '@PRQ':
             // adobe PRemiere Quicktime version
             $atom_structure['data'] = $atom_data;
             break;
         case 'cmvd':
             // Compressed MooV Data atom
             // Code by ubergeekØubergeek*tv based on information from
             // http://developer.apple.com/quicktime/icefloe/dispatch012.html
             $atom_structure['unCompressedSize'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             $CompressedFileData = substr($atom_data, 4);
             ob_start();
             if ($UncompressedHeader = gzuncompress($CompressedFileData)) {
                 ob_end_clean();
                 $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($UncompressedHeader, $ThisFileInfo, 0, $atomHierarchy, $ParseAllPossibleAtoms);
             } else {
                 $errormessage = ob_get_contents();
                 ob_end_clean();
                 $ThisFileInfo['warning'][] = 'Error decompressing compressed MOV atom at offset ' . $atom_structure['offset'];
             }
             break;
         case 'dcom':
             // Data COMpression atom
             $atom_structure['compression_id'] = $atom_data;
             $atom_structure['compression_text'] = $this->QuicktimeDCOMLookup($atom_data);
             break;
         case 'rdrf':
             // Reference movie Data ReFerence atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['flags']['internal_data'] = (bool) ($atom_structure['flags_raw'] & 0x1);
             $atom_structure['reference_type_name'] = substr($atom_data, 4, 4);
             $atom_structure['reference_length'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             switch ($atom_structure['reference_type_name']) {
                 case 'url ':
                     $atom_structure['url'] = $this->NoNullString(substr($atom_data, 12));
                     break;
                 case 'alis':
                     $atom_structure['file_alias'] = substr($atom_data, 12);
                     break;
                 case 'rsrc':
                     $atom_structure['resource_alias'] = substr($atom_data, 12);
                     break;
                 default:
                     $atom_structure['data'] = substr($atom_data, 12);
                     break;
             }
             break;
         case 'rmqu':
             // Reference Movie QUality atom
             $atom_structure['movie_quality'] = getid3_lib::BigEndian2Int($atom_data);
             break;
         case 'rmcs':
             // Reference Movie Cpu Speed atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['cpu_speed_rating'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             break;
         case 'rmvc':
             // Reference Movie Version Check atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['gestalt_selector'] = substr($atom_data, 4, 4);
             $atom_structure['gestalt_value_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['gestalt_value'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['gestalt_check_type'] = getid3_lib::BigEndian2Int(substr($atom_data, 14, 2));
             break;
         case 'rmcd':
             // Reference Movie Component check atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['component_type'] = substr($atom_data, 4, 4);
             $atom_structure['component_subtype'] = substr($atom_data, 8, 4);
             $atom_structure['component_manufacturer'] = substr($atom_data, 12, 4);
             $atom_structure['component_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['component_flags_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4));
             $atom_structure['component_min_version'] = getid3_lib::BigEndian2Int(substr($atom_data, 24, 4));
             break;
         case 'rmdr':
             // Reference Movie Data Rate atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['data_rate'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['data_rate_bps'] = $atom_structure['data_rate'] * 10;
             break;
         case 'rmla':
             // Reference Movie Language Atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']);
             if (empty($ThisFileInfo['comments']['language']) || !in_array($atom_structure['language'], $ThisFileInfo['comments']['language'])) {
                 $ThisFileInfo['comments']['language'][] = $atom_structure['language'];
             }
             break;
         case 'rmla':
             // Reference Movie Language Atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             break;
         case 'ptv ':
             // Print To Video - defines a movie's full screen mode
             // http://developer.apple.com/documentation/QuickTime/APIREF/SOURCESIV/at_ptv-_pg.htm
             $atom_structure['display_size_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2));
             $atom_structure['reserved_1'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2));
             // hardcoded: 0x0000
             $atom_structure['reserved_2'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             // hardcoded: 0x0000
             $atom_structure['slide_show_flag'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 1));
             $atom_structure['play_on_open_flag'] = getid3_lib::BigEndian2Int(substr($atom_data, 7, 1));
             $atom_structure['flags']['play_on_open'] = (bool) $atom_structure['play_on_open_flag'];
             $atom_structure['flags']['slide_show'] = (bool) $atom_structure['slide_show_flag'];
             $ptv_lookup[0] = 'normal';
             $ptv_lookup[1] = 'double';
             $ptv_lookup[2] = 'half';
             $ptv_lookup[3] = 'full';
             $ptv_lookup[4] = 'current';
             if (isset($ptv_lookup[$atom_structure['display_size_raw']])) {
                 $atom_structure['display_size'] = $ptv_lookup[$atom_structure['display_size_raw']];
             } else {
                 $ThisFileInfo['warning'][] = 'unknown "ptv " display constant (' . $atom_structure['display_size_raw'] . ')';
             }
             break;
         case 'stsd':
             // Sample Table Sample Description atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $stsdEntriesDataOffset = 8;
             for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                 $atom_structure['sample_description_table'][$i]['size'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 4));
                 $stsdEntriesDataOffset += 4;
                 $atom_structure['sample_description_table'][$i]['data_format'] = substr($atom_data, $stsdEntriesDataOffset, 4);
                 $stsdEntriesDataOffset += 4;
                 $atom_structure['sample_description_table'][$i]['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 6));
                 $stsdEntriesDataOffset += 6;
                 $atom_structure['sample_description_table'][$i]['reference_index'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 2));
                 $stsdEntriesDataOffset += 2;
                 $atom_structure['sample_description_table'][$i]['data'] = substr($atom_data, $stsdEntriesDataOffset, $atom_structure['sample_description_table'][$i]['size'] - 4 - 4 - 6 - 2);
                 $stsdEntriesDataOffset += $atom_structure['sample_description_table'][$i]['size'] - 4 - 4 - 6 - 2;
                 $atom_structure['sample_description_table'][$i]['encoder_version'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 0, 2));
                 $atom_structure['sample_description_table'][$i]['encoder_revision'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 2, 2));
                 $atom_structure['sample_description_table'][$i]['encoder_vendor'] = substr($atom_structure['sample_description_table'][$i]['data'], 4, 4);
                 switch ($atom_structure['sample_description_table'][$i]['encoder_vendor']) {
                     case "":
                         // audio atom
                         $atom_structure['sample_description_table'][$i]['audio_channels'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 2));
                         $atom_structure['sample_description_table'][$i]['audio_bit_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 10, 2));
                         $atom_structure['sample_description_table'][$i]['audio_compression_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 2));
                         $atom_structure['sample_description_table'][$i]['audio_packet_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 14, 2));
                         $atom_structure['sample_description_table'][$i]['audio_sample_rate'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 16, 4));
                         switch ($atom_structure['sample_description_table'][$i]['data_format']) {
                             case 'avc1':
                             case 'mp4v':
                                 $ThisFileInfo['fileformat'] = 'mp4';
                                 $ThisFileInfo['video']['fourcc'] = $atom_structure['sample_description_table'][$i]['data_format'];
                                 //$ThisFileInfo['warning'][] = 'This version of getID3() [v'.GETID3_VERSION.'] does not fully support MPEG-4 audio/video streams'; // 2011-02-18: why am I warning about this again? What's not supported?
                                 break;
                             case 'qtvr':
                                 $ThisFileInfo['video']['dataformat'] = 'quicktimevr';
                                 break;
                             case 'mp4a':
                             default:
                                 $ThisFileInfo['quicktime']['audio']['codec'] = $this->QuicktimeAudioCodecLookup($atom_structure['sample_description_table'][$i]['data_format']);
                                 $ThisFileInfo['quicktime']['audio']['sample_rate'] = $atom_structure['sample_description_table'][$i]['audio_sample_rate'];
                                 $ThisFileInfo['quicktime']['audio']['channels'] = $atom_structure['sample_description_table'][$i]['audio_channels'];
                                 $ThisFileInfo['quicktime']['audio']['bit_depth'] = $atom_structure['sample_description_table'][$i]['audio_bit_depth'];
                                 $ThisFileInfo['audio']['codec'] = $ThisFileInfo['quicktime']['audio']['codec'];
                                 $ThisFileInfo['audio']['sample_rate'] = $ThisFileInfo['quicktime']['audio']['sample_rate'];
                                 $ThisFileInfo['audio']['channels'] = $ThisFileInfo['quicktime']['audio']['channels'];
                                 $ThisFileInfo['audio']['bits_per_sample'] = $ThisFileInfo['quicktime']['audio']['bit_depth'];
                                 switch ($atom_structure['sample_description_table'][$i]['data_format']) {
                                     case 'raw ':
                                         // PCM
                                     // PCM
                                     case 'alac':
                                         // Apple Lossless Audio Codec
                                         $ThisFileInfo['audio']['lossless'] = true;
                                         break;
                                     default:
                                         $ThisFileInfo['audio']['lossless'] = false;
                                         break;
                                 }
                                 break;
                         }
                         break;
                     default:
                         switch ($atom_structure['sample_description_table'][$i]['data_format']) {
                             case 'mp4s':
                                 $ThisFileInfo['fileformat'] = 'mp4';
                                 break;
                             default:
                                 // video atom
                                 $atom_structure['sample_description_table'][$i]['video_temporal_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 4));
                                 $atom_structure['sample_description_table'][$i]['video_spatial_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 4));
                                 $atom_structure['sample_description_table'][$i]['video_frame_width'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 16, 2));
                                 $atom_structure['sample_description_table'][$i]['video_frame_height'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 18, 2));
                                 $atom_structure['sample_description_table'][$i]['video_resolution_x'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 20, 4));
                                 $atom_structure['sample_description_table'][$i]['video_resolution_y'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 24, 4));
                                 $atom_structure['sample_description_table'][$i]['video_data_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 28, 4));
                                 $atom_structure['sample_description_table'][$i]['video_frame_count'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 32, 2));
                                 $atom_structure['sample_description_table'][$i]['video_encoder_name_len'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 34, 1));
                                 $atom_structure['sample_description_table'][$i]['video_encoder_name'] = substr($atom_structure['sample_description_table'][$i]['data'], 35, $atom_structure['sample_description_table'][$i]['video_encoder_name_len']);
                                 $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 66, 2));
                                 $atom_structure['sample_description_table'][$i]['video_color_table_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 68, 2));
                                 $atom_structure['sample_description_table'][$i]['video_pixel_color_type'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'] > 32 ? 'grayscale' : 'color';
                                 $atom_structure['sample_description_table'][$i]['video_pixel_color_name'] = $this->QuicktimeColorNameLookup($atom_structure['sample_description_table'][$i]['video_pixel_color_depth']);
                                 if ($atom_structure['sample_description_table'][$i]['video_pixel_color_name'] != 'invalid') {
                                     $ThisFileInfo['quicktime']['video']['codec_fourcc'] = $atom_structure['sample_description_table'][$i]['data_format'];
                                     $ThisFileInfo['quicktime']['video']['codec_fourcc_lookup'] = $this->QuicktimeVideoCodecLookup($atom_structure['sample_description_table'][$i]['data_format']);
                                     $ThisFileInfo['quicktime']['video']['codec'] = $atom_structure['sample_description_table'][$i]['video_encoder_name_len'] > 0 ? $atom_structure['sample_description_table'][$i]['video_encoder_name'] : $atom_structure['sample_description_table'][$i]['data_format'];
                                     $ThisFileInfo['quicktime']['video']['color_depth'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'];
                                     $ThisFileInfo['quicktime']['video']['color_depth_name'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_name'];
                                     $ThisFileInfo['video']['codec'] = $ThisFileInfo['quicktime']['video']['codec'];
                                     $ThisFileInfo['video']['bits_per_sample'] = $ThisFileInfo['quicktime']['video']['color_depth'];
                                 }
                                 $ThisFileInfo['video']['lossless'] = false;
                                 $ThisFileInfo['video']['pixel_aspect_ratio'] = (double) 1;
                                 break;
                         }
                         break;
                 }
                 switch (strtolower($atom_structure['sample_description_table'][$i]['data_format'])) {
                     case 'mp4a':
                         $ThisFileInfo['audio']['dataformat'] = 'mp4';
                         $ThisFileInfo['quicktime']['audio']['codec'] = 'mp4';
                         break;
                     case '3ivx':
                     case '3iv1':
                     case '3iv2':
                         $ThisFileInfo['video']['dataformat'] = '3ivx';
                         break;
                     case 'xvid':
                         $ThisFileInfo['video']['dataformat'] = 'xvid';
                         break;
                     case 'mp4v':
                         $ThisFileInfo['video']['dataformat'] = 'mpeg4';
                         break;
                     case 'divx':
                     case 'div1':
                     case 'div2':
                     case 'div3':
                     case 'div4':
                     case 'div5':
                     case 'div6':
                         $TDIVXileInfo['video']['dataformat'] = 'divx';
                         break;
                     default:
                         // do nothing
                         break;
                 }
                 unset($atom_structure['sample_description_table'][$i]['data']);
             }
             break;
         case 'stts':
             // Sample Table Time-to-Sample atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $sttsEntriesDataOffset = 8;
             //$FrameRateCalculatorArray = array();
             $frames_count = 0;
             for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                 $atom_structure['time_to_sample_table'][$i]['sample_count'] = getid3_lib::BigEndian2Int(substr($atom_data, $sttsEntriesDataOffset, 4));
                 $sttsEntriesDataOffset += 4;
                 $atom_structure['time_to_sample_table'][$i]['sample_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, $sttsEntriesDataOffset, 4));
                 $sttsEntriesDataOffset += 4;
                 $frames_count += $atom_structure['time_to_sample_table'][$i]['sample_count'];
                 // THIS SECTION REPLACED WITH CODE IN "stbl" ATOM
                 //if (!empty($ThisFileInfo['quicktime']['time_scale']) && ($atom_structure['time_to_sample_table'][$i]['sample_duration'] > 0)) {
                 //	$stts_new_framerate = $ThisFileInfo['quicktime']['time_scale'] / $atom_structure['time_to_sample_table'][$i]['sample_duration'];
                 //	if ($stts_new_framerate <= 60) {
                 //		// some atoms have durations of "1" giving a very large framerate, which probably is not right
                 //		$ThisFileInfo['video']['frame_rate'] = max($ThisFileInfo['video']['frame_rate'], $stts_new_framerate);
                 //	}
                 //}
                 //
                 //$FrameRateCalculatorArray[($ThisFileInfo['quicktime']['time_scale'] / $atom_structure['time_to_sample_table'][$i]['sample_duration'])] += $atom_structure['time_to_sample_table'][$i]['sample_count'];
             }
             $ThisFileInfo['quicktime']['stts_framecount'][] = $frames_count;
             //$sttsFramesTotal  = 0;
             //$sttsSecondsTotal = 0;
             //foreach ($FrameRateCalculatorArray as $frames_per_second => $frame_count) {
             //	if (($frames_per_second > 60) || ($frames_per_second < 1)) {
             //		// not video FPS information, probably audio information
             //		$sttsFramesTotal  = 0;
             //		$sttsSecondsTotal = 0;
             //		break;
             //	}
             //	$sttsFramesTotal  += $frame_count;
             //	$sttsSecondsTotal += $frame_count / $frames_per_second;
             //}
             //if (($sttsFramesTotal > 0) && ($sttsSecondsTotal > 0)) {
             //	if (($sttsFramesTotal / $sttsSecondsTotal) > $ThisFileInfo['video']['frame_rate']) {
             //		$ThisFileInfo['video']['frame_rate'] = $sttsFramesTotal / $sttsSecondsTotal;
             //	}
             //}
             break;
         case 'stss':
             // Sample Table Sync Sample (key frames) atom
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $stssEntriesDataOffset = 8;
                 for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                     $atom_structure['time_to_sample_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stssEntriesDataOffset, 4));
                     $stssEntriesDataOffset += 4;
                 }
             }
             break;
         case 'stsc':
             // Sample Table Sample-to-Chunk atom
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $stscEntriesDataOffset = 8;
                 for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                     $atom_structure['sample_to_chunk_table'][$i]['first_chunk'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4));
                     $stscEntriesDataOffset += 4;
                     $atom_structure['sample_to_chunk_table'][$i]['samples_per_chunk'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4));
                     $stscEntriesDataOffset += 4;
                     $atom_structure['sample_to_chunk_table'][$i]['sample_description'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4));
                     $stscEntriesDataOffset += 4;
                 }
             }
             break;
         case 'stsz':
             // Sample Table SiZe atom
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['sample_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
                 $stszEntriesDataOffset = 12;
                 if ($atom_structure['sample_size'] == 0) {
                     for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                         $atom_structure['sample_size_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stszEntriesDataOffset, 4));
                         $stszEntriesDataOffset += 4;
                     }
                 }
             }
             break;
         case 'stco':
             // Sample Table Chunk Offset atom
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $stcoEntriesDataOffset = 8;
                 for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                     $atom_structure['chunk_offset_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stcoEntriesDataOffset, 4));
                     $stcoEntriesDataOffset += 4;
                 }
             }
             break;
         case 'co64':
             // Chunk Offset 64-bit (version of "stco" that supports > 2GB files)
             if ($ParseAllPossibleAtoms) {
                 $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
                 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
                 // hardcoded: 0x0000
                 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
                 $stcoEntriesDataOffset = 8;
                 for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                     $atom_structure['chunk_offset_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stcoEntriesDataOffset, 8));
                     $stcoEntriesDataOffset += 8;
                 }
             }
             break;
         case 'dref':
             // Data REFerence atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $drefDataOffset = 8;
             for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                 $atom_structure['data_references'][$i]['size'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 4));
                 $drefDataOffset += 4;
                 $atom_structure['data_references'][$i]['type'] = substr($atom_data, $drefDataOffset, 4);
                 $drefDataOffset += 4;
                 $atom_structure['data_references'][$i]['version'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 1));
                 $drefDataOffset += 1;
                 $atom_structure['data_references'][$i]['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 3));
                 // hardcoded: 0x0000
                 $drefDataOffset += 3;
                 $atom_structure['data_references'][$i]['data'] = substr($atom_data, $drefDataOffset, $atom_structure['data_references'][$i]['size'] - 4 - 4 - 1 - 3);
                 $drefDataOffset += $atom_structure['data_references'][$i]['size'] - 4 - 4 - 1 - 3;
                 $atom_structure['data_references'][$i]['flags']['self_reference'] = (bool) ($atom_structure['data_references'][$i]['flags_raw'] & 0x1);
             }
             break;
         case 'gmin':
             // base Media INformation atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['graphics_mode'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             $atom_structure['opcolor_red'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2));
             $atom_structure['opcolor_green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 2));
             $atom_structure['opcolor_blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2));
             $atom_structure['balance'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 2));
             $atom_structure['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, 14, 2));
             break;
         case 'smhd':
             // Sound Media information HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['balance'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             $atom_structure['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2));
             break;
         case 'vmhd':
             // Video Media information HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['graphics_mode'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             $atom_structure['opcolor_red'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2));
             $atom_structure['opcolor_green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 2));
             $atom_structure['opcolor_blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2));
             $atom_structure['flags']['no_lean_ahead'] = (bool) ($atom_structure['flags_raw'] & 0x1);
             break;
         case 'hdlr':
             // HanDLeR reference atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['component_type'] = substr($atom_data, 4, 4);
             $atom_structure['component_subtype'] = substr($atom_data, 8, 4);
             $atom_structure['component_manufacturer'] = substr($atom_data, 12, 4);
             $atom_structure['component_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['component_flags_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4));
             $atom_structure['component_name'] = $this->Pascal2String(substr($atom_data, 24));
             if ($atom_structure['component_subtype'] == 'STpn' && $atom_structure['component_manufacturer'] == 'zzzz') {
                 $ThisFileInfo['video']['dataformat'] = 'quicktimevr';
             }
             break;
         case 'mdhd':
             // MeDia HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['time_scale'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 2));
             $atom_structure['quality'] = getid3_lib::BigEndian2Int(substr($atom_data, 22, 2));
             if ($atom_structure['time_scale'] == 0) {
                 $ThisFileInfo['error'][] = 'Corrupt Quicktime file: mdhd.time_scale == zero';
                 return false;
             }
             $ThisFileInfo['quicktime']['time_scale'] = isset($ThisFileInfo['quicktime']['time_scale']) ? max($ThisFileInfo['quicktime']['time_scale'], $atom_structure['time_scale']) : $atom_structure['time_scale'];
             $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']);
             $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']);
             $atom_structure['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale'];
             $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']);
             if (empty($ThisFileInfo['comments']['language']) || !in_array($atom_structure['language'], $ThisFileInfo['comments']['language'])) {
                 $ThisFileInfo['comments']['language'][] = $atom_structure['language'];
             }
             break;
         case 'pnot':
             // Preview atom
             $atom_structure['modification_date'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             // "standard Macintosh format"
             $atom_structure['version_number'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             // hardcoded: 0x00
             $atom_structure['atom_type'] = substr($atom_data, 6, 4);
             // usually: 'PICT'
             $atom_structure['atom_index'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2));
             // usually: 0x01
             $atom_structure['modification_date_unix'] = getid3_lib::DateMac2Unix($atom_structure['modification_date']);
             break;
         case 'crgn':
             // Clipping ReGioN atom
             $atom_structure['region_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2));
             // The Region size, Region boundary box,
             $atom_structure['boundary_box'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 8));
             // and Clipping region data fields
             $atom_structure['clipping_data'] = substr($atom_data, 10);
             // constitute a QuickDraw region.
             break;
         case 'load':
             // track LOAD settings atom
             $atom_structure['preload_start_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             $atom_structure['preload_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['preload_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['default_hints_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['default_hints']['double_buffer'] = (bool) ($atom_structure['default_hints_raw'] & 0x20);
             $atom_structure['default_hints']['high_quality'] = (bool) ($atom_structure['default_hints_raw'] & 0x100);
             break;
         case 'tmcd':
             // TiMe CoDe atom
         // TiMe CoDe atom
         case 'chap':
             // CHAPter list atom
         // CHAPter list atom
         case 'sync':
             // SYNChronization atom
         // SYNChronization atom
         case 'scpt':
             // tranSCriPT atom
         // tranSCriPT atom
         case 'ssrc':
             // non-primary SouRCe atom
             for ($i = 0; $i < strlen($atom_data) % 4; $i++) {
                 $atom_structure['track_id'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $i * 4, 4));
             }
             break;
         case 'elst':
             // Edit LiST atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             for ($i = 0; $i < $atom_structure['number_entries']; $i++) {
                 $atom_structure['edit_list'][$i]['track_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $i * 12 + 0, 4));
                 $atom_structure['edit_list'][$i]['media_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $i * 12 + 4, 4));
                 $atom_structure['edit_list'][$i]['media_rate'] = getid3_lib::FixedPoint16_16(substr($atom_data, 8 + $i * 12 + 8, 4));
             }
             break;
         case 'kmat':
             // compressed MATte atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             // hardcoded: 0x0000
             $atom_structure['matte_data_raw'] = substr($atom_data, 4);
             break;
         case 'ctab':
             // Color TABle atom
             $atom_structure['color_table_seed'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             // hardcoded: 0x00000000
             $atom_structure['color_table_flags'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2));
             // hardcoded: 0x8000
             $atom_structure['color_table_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)) + 1;
             for ($colortableentry = 0; $colortableentry < $atom_structure['color_table_size']; $colortableentry++) {
                 $atom_structure['color_table'][$colortableentry]['alpha'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $colortableentry * 8 + 0, 2));
                 $atom_structure['color_table'][$colortableentry]['red'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $colortableentry * 8 + 2, 2));
                 $atom_structure['color_table'][$colortableentry]['green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $colortableentry * 8 + 4, 2));
                 $atom_structure['color_table'][$colortableentry]['blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + $colortableentry * 8 + 6, 2));
             }
             break;
         case 'mvhd':
             // MoVie HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['time_scale'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['preferred_rate'] = getid3_lib::FixedPoint16_16(substr($atom_data, 20, 4));
             $atom_structure['preferred_volume'] = getid3_lib::FixedPoint8_8(substr($atom_data, 24, 2));
             $atom_structure['reserved'] = substr($atom_data, 26, 10);
             $atom_structure['matrix_a'] = getid3_lib::FixedPoint16_16(substr($atom_data, 36, 4));
             $atom_structure['matrix_b'] = getid3_lib::FixedPoint16_16(substr($atom_data, 40, 4));
             $atom_structure['matrix_u'] = getid3_lib::FixedPoint2_30(substr($atom_data, 44, 4));
             $atom_structure['matrix_c'] = getid3_lib::FixedPoint16_16(substr($atom_data, 48, 4));
             $atom_structure['matrix_d'] = getid3_lib::FixedPoint16_16(substr($atom_data, 52, 4));
             $atom_structure['matrix_v'] = getid3_lib::FixedPoint2_30(substr($atom_data, 56, 4));
             $atom_structure['matrix_x'] = getid3_lib::FixedPoint16_16(substr($atom_data, 60, 4));
             $atom_structure['matrix_y'] = getid3_lib::FixedPoint16_16(substr($atom_data, 64, 4));
             $atom_structure['matrix_w'] = getid3_lib::FixedPoint2_30(substr($atom_data, 68, 4));
             $atom_structure['preview_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 72, 4));
             $atom_structure['preview_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 76, 4));
             $atom_structure['poster_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 80, 4));
             $atom_structure['selection_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 84, 4));
             $atom_structure['selection_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 88, 4));
             $atom_structure['current_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 92, 4));
             $atom_structure['next_track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 96, 4));
             if ($atom_structure['time_scale'] == 0) {
                 $ThisFileInfo['error'][] = 'Corrupt Quicktime file: mvhd.time_scale == zero';
                 return false;
             }
             $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']);
             $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']);
             $ThisFileInfo['quicktime']['time_scale'] = isset($ThisFileInfo['quicktime']['time_scale']) ? max($ThisFileInfo['quicktime']['time_scale'], $atom_structure['time_scale']) : $atom_structure['time_scale'];
             $ThisFileInfo['quicktime']['display_scale'] = $atom_structure['matrix_a'];
             $ThisFileInfo['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale'];
             break;
         case 'tkhd':
             // TracK HeaDer atom
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4));
             $atom_structure['trackid'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4));
             $atom_structure['reserved1'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4));
             $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4));
             $atom_structure['reserved2'] = getid3_lib::BigEndian2Int(substr($atom_data, 24, 8));
             $atom_structure['layer'] = getid3_lib::BigEndian2Int(substr($atom_data, 32, 2));
             $atom_structure['alternate_group'] = getid3_lib::BigEndian2Int(substr($atom_data, 34, 2));
             $atom_structure['volume'] = getid3_lib::FixedPoint8_8(substr($atom_data, 36, 2));
             $atom_structure['reserved3'] = getid3_lib::BigEndian2Int(substr($atom_data, 38, 2));
             $atom_structure['matrix_a'] = getid3_lib::FixedPoint16_16(substr($atom_data, 40, 4));
             $atom_structure['matrix_b'] = getid3_lib::FixedPoint16_16(substr($atom_data, 44, 4));
             $atom_structure['matrix_u'] = getid3_lib::FixedPoint16_16(substr($atom_data, 48, 4));
             $atom_structure['matrix_c'] = getid3_lib::FixedPoint16_16(substr($atom_data, 52, 4));
             $atom_structure['matrix_d'] = getid3_lib::FixedPoint16_16(substr($atom_data, 56, 4));
             $atom_structure['matrix_v'] = getid3_lib::FixedPoint16_16(substr($atom_data, 60, 4));
             $atom_structure['matrix_x'] = getid3_lib::FixedPoint2_30(substr($atom_data, 64, 4));
             $atom_structure['matrix_y'] = getid3_lib::FixedPoint2_30(substr($atom_data, 68, 4));
             $atom_structure['matrix_w'] = getid3_lib::FixedPoint2_30(substr($atom_data, 72, 4));
             $atom_structure['width'] = getid3_lib::FixedPoint16_16(substr($atom_data, 76, 4));
             $atom_structure['height'] = getid3_lib::FixedPoint16_16(substr($atom_data, 80, 4));
             $atom_structure['flags']['enabled'] = (bool) ($atom_structure['flags_raw'] & 0x1);
             $atom_structure['flags']['in_movie'] = (bool) ($atom_structure['flags_raw'] & 0x2);
             $atom_structure['flags']['in_preview'] = (bool) ($atom_structure['flags_raw'] & 0x4);
             $atom_structure['flags']['in_poster'] = (bool) ($atom_structure['flags_raw'] & 0x8);
             $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']);
             $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']);
             if ($atom_structure['flags']['enabled'] == 1) {
                 if (!isset($ThisFileInfo['video']['resolution_x']) || !isset($ThisFileInfo['video']['resolution_y'])) {
                     $ThisFileInfo['video']['resolution_x'] = $atom_structure['width'];
                     $ThisFileInfo['video']['resolution_y'] = $atom_structure['height'];
                 }
                 $ThisFileInfo['video']['resolution_x'] = max($ThisFileInfo['video']['resolution_x'], $atom_structure['width']);
                 $ThisFileInfo['video']['resolution_y'] = max($ThisFileInfo['video']['resolution_y'], $atom_structure['height']);
                 $ThisFileInfo['quicktime']['video']['resolution_x'] = $ThisFileInfo['video']['resolution_x'];
                 $ThisFileInfo['quicktime']['video']['resolution_y'] = $ThisFileInfo['video']['resolution_y'];
             } else {
                 if (isset($ThisFileInfo['video']['resolution_x'])) {
                     unset($ThisFileInfo['video']['resolution_x']);
                 }
                 if (isset($ThisFileInfo['video']['resolution_y'])) {
                     unset($ThisFileInfo['video']['resolution_y']);
                 }
                 if (isset($ThisFileInfo['quicktime']['video'])) {
                     unset($ThisFileInfo['quicktime']['video']);
                 }
             }
             break;
         case 'iods':
             // Initial Object DeScriptor atom
             // http://www.koders.com/c/fid1FAB3E762903DC482D8A246D4A4BF9F28E049594.aspx?s=windows.h
             // http://libquicktime.sourcearchive.com/documentation/1.0.2plus-pdebian/iods_8c-source.html
             $offset = 0;
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 3));
             $offset += 3;
             $atom_structure['mp4_iod_tag'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['length'] = $this->quicktime_read_mp4_descr_length($atom_data, $offset);
             //$offset already adjusted by quicktime_read_mp4_descr_length()
             $atom_structure['object_descriptor_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 2));
             $offset += 2;
             $atom_structure['od_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['scene_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['audio_profile_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['video_profile_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['graphics_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
             $offset += 1;
             $atom_structure['num_iods_tracks'] = ($atom_structure['length'] - 7) / 6;
             // 6 bytes would only be right if all tracks use 1-byte length fields
             for ($i = 0; $i < $atom_structure['num_iods_tracks']; $i++) {
                 $atom_structure['track'][$i]['ES_ID_IncTag'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1));
                 $offset += 1;
                 $atom_structure['track'][$i]['length'] = $this->quicktime_read_mp4_descr_length($atom_data, $offset);
                 //$offset already adjusted by quicktime_read_mp4_descr_length()
                 $atom_structure['track'][$i]['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 4));
                 $offset += 4;
             }
             $atom_structure['audio_profile_name'] = $this->QuicktimeIODSaudioProfileName($atom_structure['audio_profile_id']);
             $atom_structure['video_profile_name'] = $this->QuicktimeIODSvideoProfileName($atom_structure['video_profile_id']);
             break;
         case 'meta':
             // METAdata atom
             // http://www.geocities.com/xhelmboyx/quicktime/formats/qti-layout.txt
             /*
             $NextTagPosition = strpos($atom_data, '©');
             while ($NextTagPosition < strlen($atom_data)) {
             	$metaItemSize = getid3_lib::BigEndian2Int(substr($atom_data, $NextTagPosition - 4, 4)) - 4;
             	if ($metaItemSize == -4) {
             		break;
             	}
             	$metaItemRaw  = substr($atom_data, $NextTagPosition, $metaItemSize);
             	$metaItemKey  = substr($metaItemRaw, 0, 4);
             	$metaItemData = substr($metaItemRaw, 20);
             	$NextTagPosition += $metaItemSize + 4;
             
             	$this->CopyToAppropriateCommentsSection($metaItemKey, $metaItemData, $ThisFileInfo);
             }
             */
             $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1));
             $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3));
             $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom(substr($atom_data, 4), $ThisFileInfo, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms);
             break;
         case 'ftyp':
             // FileTYPe (?) atom (for MP4 it seems)
             $atom_structure['signature'] = substr($atom_data, 0, 4);
             $atom_structure['unknown_1'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4));
             $atom_structure['fourcc'] = substr($atom_data, 8, 4);
             break;
         case 'mdat':
             // Media DATa atom
         // Media DATa atom
         case 'free':
             // FREE space atom
         // FREE space atom
         case 'skip':
             // SKIP atom
         // SKIP atom
         case 'wide':
             // 64-bit expansion placeholder atom
             // 'mdat' data is too big to deal with, contains no useful metadata
             // 'free', 'skip' and 'wide' are just padding, contains no useful data at all
             // When writing QuickTime files, it is sometimes necessary to update an atom's size.
             // It is impossible to update a 32-bit atom to a 64-bit atom since the 32-bit atom
             // is only 8 bytes in size, and the 64-bit atom requires 16 bytes. Therefore, QuickTime
             // puts an 8-byte placeholder atom before any atoms it may have to update the size of.
             // In this way, if the atom needs to be converted from a 32-bit to a 64-bit atom, the
             // placeholder atom can be overwritten to obtain the necessary 8 extra bytes.
             // The placeholder atom has a type of kWideAtomPlaceholderType ( 'wide' ).
             break;
         case 'nsav':
             // NoSAVe atom
             // http://developer.apple.com/technotes/tn/tn2038.html
             $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             break;
         case 'ctyp':
             // Controller TYPe atom (seen on QTVR)
             // http://homepages.slingshot.co.nz/~helmboy/quicktime/formats/qtm-layout.txt
             // some controller names are:
             //   0x00 + 'std' for linear movie
             //   'none' for no controls
             $atom_structure['ctyp'] = substr($atom_data, 0, 4);
             $ThisFileInfo['quicktime']['controller'] = $atom_structure['ctyp'];
             switch ($atom_structure['ctyp']) {
                 case 'qtvr':
                     $ThisFileInfo['video']['dataformat'] = 'quicktimevr';
                     break;
             }
             break;
         case 'pano':
             // PANOrama track (seen on QTVR)
             $atom_structure['pano'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4));
             break;
         case 'hint':
             // HINT track
         // HINT track
         case 'hinf':
             //
         //
         case 'hinv':
             //
         //
         case 'hnti':
             //
             $ThisFileInfo['quicktime']['hinting'] = true;
             break;
         case 'imgt':
             // IMaGe Track reference (kQTVRImageTrackRefType) (seen on QTVR)
             for ($i = 0; $i < $atom_structure['size'] - 8; $i += 4) {
                 $atom_structure['imgt'][] = getid3_lib::BigEndian2Int(substr($atom_data, $i, 4));
             }
             break;
             // Observed-but-not-handled atom types are just listed here to prevent warnings being generated
         // Observed-but-not-handled atom types are just listed here to prevent warnings being generated
         case 'FXTC':
             // Something to do with Adobe After Effects (?)
         // Something to do with Adobe After Effects (?)
         case 'PrmA':
         case 'code':
         case 'FIEL':
             // this is NOT "fiel" (Field Ordering) as describe here: http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html
         // this is NOT "fiel" (Field Ordering) as describe here: http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html
         case 'tapt':
             // TrackApertureModeDimensionsAID - http://developer.apple.com/documentation/QuickTime/Reference/QT7-1_Update_Reference/Constants/Constants.html
             // tapt seems to be used to compute the video size [http://www.getid3.org/phpBB3/viewtopic.php?t=838]
             // * http://lists.apple.com/archives/quicktime-api/2006/Aug/msg00014.html
             // * http://handbrake.fr/irclogs/handbrake-dev/handbrake-dev20080128_pg2.html
         // TrackApertureModeDimensionsAID - http://developer.apple.com/documentation/QuickTime/Reference/QT7-1_Update_Reference/Constants/Constants.html
         // tapt seems to be used to compute the video size [http://www.getid3.org/phpBB3/viewtopic.php?t=838]
         // * http://lists.apple.com/archives/quicktime-api/2006/Aug/msg00014.html
         // * http://handbrake.fr/irclogs/handbrake-dev/handbrake-dev20080128_pg2.html
         case 'ctts':
             //  STCompositionOffsetAID             - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         //  STCompositionOffsetAID             - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         case 'cslg':
             //  STCompositionShiftLeastGreatestAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         //  STCompositionShiftLeastGreatestAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         case 'sdtp':
             //  STSampleDependencyAID              - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         //  STSampleDependencyAID              - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
         case 'stps':
             //  STPartialSyncSampleAID             - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html
             //$atom_structure['data'] = $atom_data;
             break;
         default:
             $ThisFileInfo['warning'][] = 'Unknown QuickTime atom type: "' . $atomname . '" at offset ' . $baseoffset;
             $atom_structure['data'] = $atom_data;
             break;
     }
     array_pop($atomHierarchy);
     return $atom_structure;
 }
示例#15
0
 function ParseID3v2GenreString($genrestring)
 {
     // Parse genres into arrays of genreName and genreID
     // ID3v2.2.x, ID3v2.3.x: '(21)' or '(4)Eurodisco' or '(51)(39)' or '(55)((I think...)'
     // ID3v2.4.x: '21' $00 'Eurodisco' $00
     $genrestring = trim($genrestring);
     $returnarray = array();
     if (strpos($genrestring, "") !== false) {
         $unprocessed = trim($genrestring);
         // trailing nulls will cause an infinite loop.
         $genrestring = '';
         while (strpos($unprocessed, "") !== false) {
             // convert null-seperated v2.4-format into v2.3 ()-seperated format
             $endpos = strpos($unprocessed, "");
             $genrestring .= '(' . substr($unprocessed, 0, $endpos) . ')';
             $unprocessed = substr($unprocessed, $endpos + 1);
         }
         unset($unprocessed);
     }
     if (getid3_id3v1::LookupGenreID($genrestring)) {
         $returnarray['genre'][] = $genrestring;
     } else {
         while (strpos($genrestring, '(') !== false) {
             $startpos = strpos($genrestring, '(');
             $endpos = strpos($genrestring, ')');
             if (substr($genrestring, $startpos + 1, 1) == '(') {
                 $genrestring = substr($genrestring, 0, $startpos) . substr($genrestring, $startpos + 1);
                 $endpos--;
             }
             $element = substr($genrestring, $startpos + 1, $endpos - ($startpos + 1));
             $genrestring = substr($genrestring, 0, $startpos) . substr($genrestring, $endpos + 1);
             if (getid3_id3v1::LookupGenreName($element)) {
                 // $element is a valid genre id/abbreviation
                 if (empty($returnarray['genre']) || !in_array(getid3_id3v1::LookupGenreName($element), $returnarray['genre'])) {
                     // avoid duplicate entires
                     $returnarray['genre'][] = getid3_id3v1::LookupGenreName($element);
                 }
             } else {
                 if (empty($returnarray['genre']) || !in_array($element, $returnarray['genre'])) {
                     // avoid duplicate entires
                     $returnarray['genre'][] = $element;
                 }
             }
         }
     }
     if ($genrestring) {
         if (empty($returnarray['genre']) || !in_array($genrestring, $returnarray['genre'])) {
             // avoid duplicate entires
             $returnarray['genre'][] = $genrestring;
         }
     }
     return $returnarray;
 }
示例#16
0
 public static function LookupGenreID($genre, $allow_SCMPX_extended = false)
 {
     $lookup = getid3_id3v1::ArrayOfGenres($allow_SCMPX_extended);
     $lower_case_no_space_search_term = strtolower(str_replace(' ', '', $genre));
     foreach ($lookup as $key => $value) {
         foreach ($lookup as $key => $value) {
             if (strtolower(str_replace(' ', '', $value)) == $lower_case_no_space_search_term) {
                 return $key;
             }
         }
         return false;
     }
     return isset($lookup[$genre_id]) ? $lookup[$genre_id] : false;
 }
示例#17
0
 function StandardiseID3v1GenreName($OriginalGenre)
 {
     if (($GenreID = getid3_id3v1::LookupGenreID($OriginalGenre)) !== false) {
         return getid3_id3v1::LookupGenreName($GenreID);
     }
     return $OriginalGenre;
 }
 function getid3_asf(&$fd, &$ThisFileInfo)
 {
     // Shortcuts
     $thisfile_audio =& $ThisFileInfo['audio'];
     $thisfile_video =& $ThisFileInfo['video'];
     $ThisFileInfo['asf'] = array();
     $thisfile_asf =& $ThisFileInfo['asf'];
     $thisfile_asf['comments'] = array();
     $thisfile_asf_comments =& $thisfile_asf['comments'];
     $thisfile_asf['header_object'] = array();
     $thisfile_asf_headerobject =& $thisfile_asf['header_object'];
     // ASF structure:
     // * Header Object [required]
     //   * File Properties Object [required]   (global file attributes)
     //   * Stream Properties Object [required] (defines media stream & characteristics)
     //   * Header Extension Object [required]  (additional functionality)
     //   * Content Description Object          (bibliographic information)
     //   * Script Command Object               (commands for during playback)
     //   * Marker Object                       (named jumped points within the file)
     // * Data Object [required]
     //   * Data Packets
     // * Index Object
     // Header Object: (mandatory, one only)
     // Field Name                   Field Type   Size (bits)
     // Object ID                    GUID         128             // GUID for header object - GETID3_ASF_Header_Object
     // Object Size                  QWORD        64              // size of header object, including 30 bytes of Header Object header
     // Number of Header Objects     DWORD        32              // number of objects in header object
     // Reserved1                    BYTE         8               // hardcoded: 0x01
     // Reserved2                    BYTE         8               // hardcoded: 0x02
     $ThisFileInfo['fileformat'] = 'asf';
     fseek($fd, $ThisFileInfo['avdataoffset'], SEEK_SET);
     $HeaderObjectData = fread($fd, 30);
     $thisfile_asf_headerobject['objectid'] = substr($HeaderObjectData, 0, 16);
     $thisfile_asf_headerobject['objectid_guid'] = $this->BytestringToGUID($thisfile_asf_headerobject['objectid']);
     if ($thisfile_asf_headerobject['objectid'] != GETID3_ASF_Header_Object) {
         $ThisFileInfo['warning'][] = 'ASF header GUID {' . $this->BytestringToGUID($thisfile_asf_headerobject['objectid']) . '} does not match expected "GETID3_ASF_Header_Object" GUID {' . $this->BytestringToGUID(GETID3_ASF_Header_Object) . '}';
         unset($ThisFileInfo['fileformat']);
         unset($ThisFileInfo['asf']);
         return false;
         break;
     }
     $thisfile_asf_headerobject['objectsize'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 16, 8));
     $thisfile_asf_headerobject['headerobjects'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 24, 4));
     $thisfile_asf_headerobject['reserved1'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 28, 1));
     $thisfile_asf_headerobject['reserved2'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 29, 1));
     //$ASFHeaderData  = $HeaderObjectData;
     $ASFHeaderData = fread($fd, $thisfile_asf_headerobject['objectsize'] - 30);
     //$offset = 30;
     $offset = 0;
     for ($HeaderObjectsCounter = 0; $HeaderObjectsCounter < $thisfile_asf_headerobject['headerobjects']; $HeaderObjectsCounter++) {
         $NextObjectGUID = substr($ASFHeaderData, $offset, 16);
         $offset += 16;
         $NextObjectGUIDtext = $this->BytestringToGUID($NextObjectGUID);
         $NextObjectSize = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
         $offset += 8;
         switch ($NextObjectGUID) {
             case GETID3_ASF_File_Properties_Object:
                 // File Properties Object: (mandatory, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for file properties object - GETID3_ASF_File_Properties_Object
                 // Object Size                  QWORD        64              // size of file properties object, including 104 bytes of File Properties Object header
                 // File ID                      GUID         128             // unique ID - identical to File ID in Data Object
                 // File Size                    QWORD        64              // entire file in bytes. Invalid if Broadcast Flag == 1
                 // Creation Date                QWORD        64              // date & time of file creation. Maybe invalid if Broadcast Flag == 1
                 // Data Packets Count           QWORD        64              // number of data packets in Data Object. Invalid if Broadcast Flag == 1
                 // Play Duration                QWORD        64              // playtime, in 100-nanosecond units. Invalid if Broadcast Flag == 1
                 // Send Duration                QWORD        64              // time needed to send file, in 100-nanosecond units. Players can ignore this value. Invalid if Broadcast Flag == 1
                 // Preroll                      QWORD        64              // time to buffer data before starting to play file, in 1-millisecond units. If <> 0, PlayDuration and PresentationTime have been offset by this amount
                 // Flags                        DWORD        32              //
                 // * Broadcast Flag             bits         1  (0x01)       // file is currently being written, some header values are invalid
                 // * Seekable Flag              bits         1  (0x02)       // is file seekable
                 // * Reserved                   bits         30 (0xFFFFFFFC) // reserved - set to zero
                 // Minimum Data Packet Size     DWORD        32              // in bytes. should be same as Maximum Data Packet Size. Invalid if Broadcast Flag == 1
                 // Maximum Data Packet Size     DWORD        32              // in bytes. should be same as Minimum Data Packet Size. Invalid if Broadcast Flag == 1
                 // Maximum Bitrate              DWORD        32              // maximum instantaneous bitrate in bits per second for entire file, including all data streams and ASF overhead
                 // shortcut
                 $thisfile_asf['file_properties_object'] = array();
                 $thisfile_asf_filepropertiesobject =& $thisfile_asf['file_properties_object'];
                 $thisfile_asf_filepropertiesobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_filepropertiesobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_filepropertiesobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_filepropertiesobject['fileid'] = substr($ASFHeaderData, $offset, 16);
                 $offset += 16;
                 $thisfile_asf_filepropertiesobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_filepropertiesobject['fileid']);
                 $thisfile_asf_filepropertiesobject['filesize'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                 $offset += 8;
                 $thisfile_asf_filepropertiesobject['creation_date'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                 $thisfile_asf_filepropertiesobject['creation_date_unix'] = $this->FILETIMEtoUNIXtime($thisfile_asf_filepropertiesobject['creation_date']);
                 $offset += 8;
                 $thisfile_asf_filepropertiesobject['data_packets'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                 $offset += 8;
                 $thisfile_asf_filepropertiesobject['play_duration'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                 $offset += 8;
                 $thisfile_asf_filepropertiesobject['send_duration'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                 $offset += 8;
                 $thisfile_asf_filepropertiesobject['preroll'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                 $offset += 8;
                 $ThisFileInfo['playtime_seconds'] = $thisfile_asf_filepropertiesobject['play_duration'] / 10000000 - $thisfile_asf_filepropertiesobject['preroll'] / 1000;
                 $thisfile_asf_filepropertiesobject['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 $thisfile_asf_filepropertiesobject['flags']['broadcast'] = (bool) ($thisfile_asf_filepropertiesobject['flags_raw'] & 0x1);
                 $thisfile_asf_filepropertiesobject['flags']['seekable'] = (bool) ($thisfile_asf_filepropertiesobject['flags_raw'] & 0x2);
                 $thisfile_asf_filepropertiesobject['min_packet_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 $thisfile_asf_filepropertiesobject['max_packet_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 $thisfile_asf_filepropertiesobject['max_bitrate'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 $ThisFileInfo['bitrate'] = $thisfile_asf_filepropertiesobject['max_bitrate'];
                 break;
             case GETID3_ASF_Stream_Properties_Object:
                 // Stream Properties Object: (mandatory, one per media stream)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for stream properties object - GETID3_ASF_Stream_Properties_Object
                 // Object Size                  QWORD        64              // size of stream properties object, including 78 bytes of Stream Properties Object header
                 // Stream Type                  GUID         128             // GETID3_ASF_Audio_Media, GETID3_ASF_Video_Media or GETID3_ASF_Command_Media
                 // Error Correction Type        GUID         128             // GETID3_ASF_Audio_Spread for audio-only streams, GETID3_ASF_No_Error_Correction for other stream types
                 // Time Offset                  QWORD        64              // 100-nanosecond units. typically zero. added to all timestamps of samples in the stream
                 // Type-Specific Data Length    DWORD        32              // number of bytes for Type-Specific Data field
                 // Error Correction Data Length DWORD        32              // number of bytes for Error Correction Data field
                 // Flags                        WORD         16              //
                 // * Stream Number              bits         7 (0x007F)      // number of this stream.  1 <= valid <= 127
                 // * Reserved                   bits         8 (0x7F80)      // reserved - set to zero
                 // * Encrypted Content Flag     bits         1 (0x8000)      // stream contents encrypted if set
                 // Reserved                     DWORD        32              // reserved - set to zero
                 // Type-Specific Data           BYTESTREAM   variable        // type-specific format data, depending on value of Stream Type
                 // Error Correction Data        BYTESTREAM   variable        // error-correction-specific format data, depending on value of Error Correct Type
                 // There is one GETID3_ASF_Stream_Properties_Object for each stream (audio, video) but the
                 // stream number isn't known until halfway through decoding the structure, hence it
                 // it is decoded to a temporary variable and then stuck in the appropriate index later
                 $StreamPropertiesObjectData['objectid'] = $NextObjectGUID;
                 $StreamPropertiesObjectData['objectid_guid'] = $NextObjectGUIDtext;
                 $StreamPropertiesObjectData['objectsize'] = $NextObjectSize;
                 $StreamPropertiesObjectData['stream_type'] = substr($ASFHeaderData, $offset, 16);
                 $offset += 16;
                 $StreamPropertiesObjectData['stream_type_guid'] = $this->BytestringToGUID($StreamPropertiesObjectData['stream_type']);
                 $StreamPropertiesObjectData['error_correct_type'] = substr($ASFHeaderData, $offset, 16);
                 $offset += 16;
                 $StreamPropertiesObjectData['error_correct_guid'] = $this->BytestringToGUID($StreamPropertiesObjectData['error_correct_type']);
                 $StreamPropertiesObjectData['time_offset'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                 $offset += 8;
                 $StreamPropertiesObjectData['type_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 $StreamPropertiesObjectData['error_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 $StreamPropertiesObjectData['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 $StreamPropertiesObjectStreamNumber = $StreamPropertiesObjectData['flags_raw'] & 0x7f;
                 $StreamPropertiesObjectData['flags']['encrypted'] = (bool) ($StreamPropertiesObjectData['flags_raw'] & 0x8000);
                 $offset += 4;
                 // reserved - DWORD
                 $StreamPropertiesObjectData['type_specific_data'] = substr($ASFHeaderData, $offset, $StreamPropertiesObjectData['type_data_length']);
                 $offset += $StreamPropertiesObjectData['type_data_length'];
                 $StreamPropertiesObjectData['error_correct_data'] = substr($ASFHeaderData, $offset, $StreamPropertiesObjectData['error_data_length']);
                 $offset += $StreamPropertiesObjectData['error_data_length'];
                 switch ($StreamPropertiesObjectData['stream_type']) {
                     case GETID3_ASF_Audio_Media:
                         $thisfile_audio['dataformat'] = !empty($thisfile_audio['dataformat']) ? $thisfile_audio['dataformat'] : 'asf';
                         $thisfile_audio['bitrate_mode'] = !empty($thisfile_audio['bitrate_mode']) ? $thisfile_audio['bitrate_mode'] : 'cbr';
                         $audiodata = getid3_riff::RIFFparseWAVEFORMATex(substr($StreamPropertiesObjectData['type_specific_data'], 0, 16));
                         unset($audiodata['raw']);
                         $thisfile_audio = getid3_lib::array_merge_noclobber($audiodata, $thisfile_audio);
                         break;
                     case GETID3_ASF_Video_Media:
                         $thisfile_video['dataformat'] = !empty($thisfile_video['dataformat']) ? $thisfile_video['dataformat'] : 'asf';
                         $thisfile_video['bitrate_mode'] = !empty($thisfile_video['bitrate_mode']) ? $thisfile_video['bitrate_mode'] : 'cbr';
                         break;
                     case GETID3_ASF_Command_Media:
                     default:
                         // do nothing
                         break;
                 }
                 $thisfile_asf['stream_properties_object'][$StreamPropertiesObjectStreamNumber] = $StreamPropertiesObjectData;
                 unset($StreamPropertiesObjectData);
                 // clear for next stream, if any
                 break;
             case GETID3_ASF_Header_Extension_Object:
                 // Header Extension Object: (mandatory, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Header Extension object - GETID3_ASF_Header_Extension_Object
                 // Object Size                  QWORD        64              // size of Header Extension object, including 46 bytes of Header Extension Object header
                 // Reserved Field 1             GUID         128             // hardcoded: GETID3_ASF_Reserved_1
                 // Reserved Field 2             WORD         16              // hardcoded: 0x00000006
                 // Header Extension Data Size   DWORD        32              // in bytes. valid: 0, or > 24. equals object size minus 46
                 // Header Extension Data        BYTESTREAM   variable        // array of zero or more extended header objects
                 // shortcut
                 $thisfile_asf['header_extension_object'] = array();
                 $thisfile_asf_headerextensionobject =& $thisfile_asf['header_extension_object'];
                 $thisfile_asf_headerextensionobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_headerextensionobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_headerextensionobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_headerextensionobject['reserved_1'] = substr($ASFHeaderData, $offset, 16);
                 $offset += 16;
                 $thisfile_asf_headerextensionobject['reserved_1_guid'] = $this->BytestringToGUID($thisfile_asf_headerextensionobject['reserved_1']);
                 if ($thisfile_asf_headerextensionobject['reserved_1'] != GETID3_ASF_Reserved_1) {
                     $ThisFileInfo['warning'][] = 'header_extension_object.reserved_1 GUID (' . $this->BytestringToGUID($thisfile_asf_headerextensionobject['reserved_1']) . ') does not match expected "GETID3_ASF_Reserved_1" GUID (' . $this->BytestringToGUID(GETID3_ASF_Reserved_1) . ')';
                     //return false;
                     break;
                 }
                 $thisfile_asf_headerextensionobject['reserved_2'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 if ($thisfile_asf_headerextensionobject['reserved_2'] != 6) {
                     $ThisFileInfo['warning'][] = 'header_extension_object.reserved_2 (' . getid3_lib::PrintHexBytes($thisfile_asf_headerextensionobject['reserved_2']) . ') does not match expected value of "6"';
                     //return false;
                     break;
                 }
                 $thisfile_asf_headerextensionobject['extension_data_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 $thisfile_asf_headerextensionobject['extension_data'] = substr($ASFHeaderData, $offset, $thisfile_asf_headerextensionobject['extension_data_size']);
                 $offset += $thisfile_asf_headerextensionobject['extension_data_size'];
                 break;
             case GETID3_ASF_Codec_List_Object:
                 // Codec List Object: (optional, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Codec List object - GETID3_ASF_Codec_List_Object
                 // Object Size                  QWORD        64              // size of Codec List object, including 44 bytes of Codec List Object header
                 // Reserved                     GUID         128             // hardcoded: 86D15241-311D-11D0-A3A4-00A0C90348F6
                 // Codec Entries Count          DWORD        32              // number of entries in Codec Entries array
                 // Codec Entries                array of:    variable        //
                 // * Type                       WORD         16              // 0x0001 = Video Codec, 0x0002 = Audio Codec, 0xFFFF = Unknown Codec
                 // * Codec Name Length          WORD         16              // number of Unicode characters stored in the Codec Name field
                 // * Codec Name                 WCHAR        variable        // array of Unicode characters - name of codec used to create the content
                 // * Codec Description Length   WORD         16              // number of Unicode characters stored in the Codec Description field
                 // * Codec Description          WCHAR        variable        // array of Unicode characters - description of format used to create the content
                 // * Codec Information Length   WORD         16              // number of Unicode characters stored in the Codec Information field
                 // * Codec Information          BYTESTREAM   variable        // opaque array of information bytes about the codec used to create the content
                 // shortcut
                 $thisfile_asf['codec_list_object'] = array();
                 $thisfile_asf_codeclistobject =& $thisfile_asf['codec_list_object'];
                 $thisfile_asf_codeclistobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_codeclistobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_codeclistobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_codeclistobject['reserved'] = substr($ASFHeaderData, $offset, 16);
                 $offset += 16;
                 $thisfile_asf_codeclistobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_codeclistobject['reserved']);
                 if ($thisfile_asf_codeclistobject['reserved'] != $this->GUIDtoBytestring('86D15241-311D-11D0-A3A4-00A0C90348F6')) {
                     $ThisFileInfo['warning'][] = 'codec_list_object.reserved GUID {' . $this->BytestringToGUID($thisfile_asf_codeclistobject['reserved']) . '} does not match expected "GETID3_ASF_Reserved_1" GUID {86D15241-311D-11D0-A3A4-00A0C90348F6}';
                     //return false;
                     break;
                 }
                 $thisfile_asf_codeclistobject['codec_entries_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 for ($CodecEntryCounter = 0; $CodecEntryCounter < $thisfile_asf_codeclistobject['codec_entries_count']; $CodecEntryCounter++) {
                     // shortcut
                     $thisfile_asf_codeclistobject['codec_entries'][$CodecEntryCounter] = array();
                     $thisfile_asf_codeclistobject_codecentries_current =& $thisfile_asf_codeclistobject['codec_entries'][$CodecEntryCounter];
                     $thisfile_asf_codeclistobject_codecentries_current['type_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_codeclistobject_codecentries_current['type'] = $this->ASFCodecListObjectTypeLookup($thisfile_asf_codeclistobject_codecentries_current['type_raw']);
                     $CodecNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2;
                     // 2 bytes per character
                     $offset += 2;
                     $thisfile_asf_codeclistobject_codecentries_current['name'] = substr($ASFHeaderData, $offset, $CodecNameLength);
                     $offset += $CodecNameLength;
                     $CodecDescriptionLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2;
                     // 2 bytes per character
                     $offset += 2;
                     $thisfile_asf_codeclistobject_codecentries_current['description'] = substr($ASFHeaderData, $offset, $CodecDescriptionLength);
                     $offset += $CodecDescriptionLength;
                     $CodecInformationLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_codeclistobject_codecentries_current['information'] = substr($ASFHeaderData, $offset, $CodecInformationLength);
                     $offset += $CodecInformationLength;
                     if ($thisfile_asf_codeclistobject_codecentries_current['type_raw'] == 2) {
                         // audio codec
                         if (strpos($thisfile_asf_codeclistobject_codecentries_current['description'], ',') === false) {
                             $ThisFileInfo['error'][] = '[asf][codec_list_object][codec_entries][' . $CodecEntryCounter . '][description] expected to contain comma-seperated list of parameters: "' . $thisfile_asf_codeclistobject_codecentries_current['description'] . '"';
                             return false;
                         }
                         list($AudioCodecBitrate, $AudioCodecFrequency, $AudioCodecChannels) = explode(',', $this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['description']));
                         $thisfile_audio['codec'] = $this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['name']);
                         if (!isset($thisfile_audio['bitrate']) && strstr($AudioCodecBitrate, 'kbps')) {
                             $thisfile_audio['bitrate'] = (int) (trim(str_replace('kbps', '', $AudioCodecBitrate)) * 1000);
                         }
                         if (!isset($thisfile_video['bitrate']) && isset($thisfile_audio['bitrate']) && isset($thisfile_asf['file_properties_object']['max_bitrate']) && $thisfile_asf_codeclistobject['codec_entries_count'] > 1) {
                             $thisfile_video['bitrate'] = $thisfile_asf['file_properties_object']['max_bitrate'] - $thisfile_audio['bitrate'];
                         }
                         $AudioCodecFrequency = (int) trim(str_replace('kHz', '', $AudioCodecFrequency));
                         switch ($AudioCodecFrequency) {
                             case 8:
                                 $thisfile_audio['sample_rate'] = 8000;
                                 break;
                             case 11:
                                 $thisfile_audio['sample_rate'] = 11025;
                                 break;
                             case 12:
                                 $thisfile_audio['sample_rate'] = 12000;
                                 break;
                             case 16:
                                 $thisfile_audio['sample_rate'] = 16000;
                                 break;
                             case 22:
                                 $thisfile_audio['sample_rate'] = 22050;
                                 break;
                             case 24:
                                 $thisfile_audio['sample_rate'] = 24000;
                                 break;
                             case 32:
                                 $thisfile_audio['sample_rate'] = 32000;
                                 break;
                             case 44:
                                 $thisfile_audio['sample_rate'] = 44100;
                                 break;
                             case 48:
                                 $thisfile_audio['sample_rate'] = 48000;
                                 break;
                             default:
                                 $ThisFileInfo['warning'][] = 'unknown frequency: "' . $AudioCodecFrequency . '" (' . $this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['description']) . ')';
                                 //                                return false;
                                 break;
                         }
                         if (!isset($thisfile_audio['channels'])) {
                             if (strstr($AudioCodecChannels, 'stereo')) {
                                 $thisfile_audio['channels'] = 2;
                             } elseif (strstr($AudioCodecChannels, 'mono')) {
                                 $thisfile_audio['channels'] = 1;
                             }
                         }
                     }
                 }
                 break;
             case GETID3_ASF_Script_Command_Object:
                 // Script Command Object: (optional, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Script Command object - GETID3_ASF_Script_Command_Object
                 // Object Size                  QWORD        64              // size of Script Command object, including 44 bytes of Script Command Object header
                 // Reserved                     GUID         128             // hardcoded: 4B1ACBE3-100B-11D0-A39B-00A0C90348F6
                 // Commands Count               WORD         16              // number of Commands structures in the Script Commands Objects
                 // Command Types Count          WORD         16              // number of Command Types structures in the Script Commands Objects
                 // Command Types                array of:    variable        //
                 // * Command Type Name Length   WORD         16              // number of Unicode characters for Command Type Name
                 // * Command Type Name          WCHAR        variable        // array of Unicode characters - name of a type of command
                 // Commands                     array of:    variable        //
                 // * Presentation Time          DWORD        32              // presentation time of that command, in milliseconds
                 // * Type Index                 WORD         16              // type of this command, as a zero-based index into the array of Command Types of this object
                 // * Command Name Length        WORD         16              // number of Unicode characters for Command Name
                 // * Command Name               WCHAR        variable        // array of Unicode characters - name of this command
                 // shortcut
                 $thisfile_asf['script_command_object'] = array();
                 $thisfile_asf_scriptcommandobject =& $thisfile_asf['script_command_object'];
                 $thisfile_asf_scriptcommandobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_scriptcommandobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_scriptcommandobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_scriptcommandobject['reserved'] = substr($ASFHeaderData, $offset, 16);
                 $offset += 16;
                 $thisfile_asf_scriptcommandobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_scriptcommandobject['reserved']);
                 if ($thisfile_asf_scriptcommandobject['reserved'] != $this->GUIDtoBytestring('4B1ACBE3-100B-11D0-A39B-00A0C90348F6')) {
                     $ThisFileInfo['warning'][] = 'script_command_object.reserved GUID {' . $this->BytestringToGUID($thisfile_asf_scriptcommandobject['reserved']) . '} does not match expected "GETID3_ASF_Reserved_1" GUID {4B1ACBE3-100B-11D0-A39B-00A0C90348F6}';
                     //return false;
                     break;
                 }
                 $thisfile_asf_scriptcommandobject['commands_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 $thisfile_asf_scriptcommandobject['command_types_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 for ($CommandTypesCounter = 0; $CommandTypesCounter < $thisfile_asf_scriptcommandobject['command_types_count']; $CommandTypesCounter++) {
                     $CommandTypeNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2;
                     // 2 bytes per character
                     $offset += 2;
                     $thisfile_asf_scriptcommandobject['command_types'][$CommandTypesCounter]['name'] = substr($ASFHeaderData, $offset, $CommandTypeNameLength);
                     $offset += $CommandTypeNameLength;
                 }
                 for ($CommandsCounter = 0; $CommandsCounter < $thisfile_asf_scriptcommandobject['commands_count']; $CommandsCounter++) {
                     $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['presentation_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                     $offset += 4;
                     $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['type_index'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                     $CommandTypeNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2;
                     // 2 bytes per character
                     $offset += 2;
                     $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['name'] = substr($ASFHeaderData, $offset, $CommandTypeNameLength);
                     $offset += $CommandTypeNameLength;
                 }
                 break;
             case GETID3_ASF_Marker_Object:
                 // Marker Object: (optional, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Marker object - GETID3_ASF_Marker_Object
                 // Object Size                  QWORD        64              // size of Marker object, including 48 bytes of Marker Object header
                 // Reserved                     GUID         128             // hardcoded: 4CFEDB20-75F6-11CF-9C0F-00A0C90349CB
                 // Markers Count                DWORD        32              // number of Marker structures in Marker Object
                 // Reserved                     WORD         16              // hardcoded: 0x0000
                 // Name Length                  WORD         16              // number of bytes in the Name field
                 // Name                         WCHAR        variable        // name of the Marker Object
                 // Markers                      array of:    variable        //
                 // * Offset                     QWORD        64              // byte offset into Data Object
                 // * Presentation Time          QWORD        64              // in 100-nanosecond units
                 // * Entry Length               WORD         16              // length in bytes of (Send Time + Flags + Marker Description Length + Marker Description + Padding)
                 // * Send Time                  DWORD        32              // in milliseconds
                 // * Flags                      DWORD        32              // hardcoded: 0x00000000
                 // * Marker Description Length  DWORD        32              // number of bytes in Marker Description field
                 // * Marker Description         WCHAR        variable        // array of Unicode characters - description of marker entry
                 // * Padding                    BYTESTREAM   variable        // optional padding bytes
                 // shortcut
                 $thisfile_asf['marker_object'] = array();
                 $thisfile_asf_markerobject =& $thisfile_asf['marker_object'];
                 $thisfile_asf_markerobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_markerobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_markerobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_markerobject['reserved'] = substr($ASFHeaderData, $offset, 16);
                 $offset += 16;
                 $thisfile_asf_markerobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_markerobject['reserved']);
                 if ($thisfile_asf_markerobject['reserved'] != $this->GUIDtoBytestring('4CFEDB20-75F6-11CF-9C0F-00A0C90349CB')) {
                     $ThisFileInfo['warning'][] = 'marker_object.reserved GUID {' . $this->BytestringToGUID($thisfile_asf_markerobject['reserved_1']) . '} does not match expected "GETID3_ASF_Reserved_1" GUID {4CFEDB20-75F6-11CF-9C0F-00A0C90349CB}';
                     break;
                 }
                 $thisfile_asf_markerobject['markers_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 $thisfile_asf_markerobject['reserved_2'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 if ($thisfile_asf_markerobject['reserved_2'] != 0) {
                     $ThisFileInfo['warning'][] = 'marker_object.reserved_2 (' . getid3_lib::PrintHexBytes($thisfile_asf_markerobject['reserved_2']) . ') does not match expected value of "0"';
                     break;
                 }
                 $thisfile_asf_markerobject['name_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 $thisfile_asf_markerobject['name'] = substr($ASFHeaderData, $offset, $thisfile_asf_markerobject['name_length']);
                 $offset += $thisfile_asf_markerobject['name_length'];
                 for ($MarkersCounter = 0; $MarkersCounter < $thisfile_asf_markerobject['markers_count']; $MarkersCounter++) {
                     $thisfile_asf_markerobject['markers'][$MarkersCounter]['offset'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                     $offset += 8;
                     $thisfile_asf_markerobject['markers'][$MarkersCounter]['presentation_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
                     $offset += 8;
                     $thisfile_asf_markerobject['markers'][$MarkersCounter]['entry_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_markerobject['markers'][$MarkersCounter]['send_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                     $offset += 4;
                     $thisfile_asf_markerobject['markers'][$MarkersCounter]['flags'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                     $offset += 4;
                     $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                     $offset += 4;
                     $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description'] = substr($ASFHeaderData, $offset, $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length']);
                     $offset += $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length'];
                     $PaddingLength = $thisfile_asf_markerobject['markers'][$MarkersCounter]['entry_length'] - 4 - 4 - 4 - $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length'];
                     if ($PaddingLength > 0) {
                         $thisfile_asf_markerobject['markers'][$MarkersCounter]['padding'] = substr($ASFHeaderData, $offset, $PaddingLength);
                         $offset += $PaddingLength;
                     }
                 }
                 break;
             case GETID3_ASF_Bitrate_Mutual_Exclusion_Object:
                 // Bitrate Mutual Exclusion Object: (optional)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Bitrate Mutual Exclusion object - GETID3_ASF_Bitrate_Mutual_Exclusion_Object
                 // Object Size                  QWORD        64              // size of Bitrate Mutual Exclusion object, including 42 bytes of Bitrate Mutual Exclusion Object header
                 // Exlusion Type                GUID         128             // nature of mutual exclusion relationship. one of: (GETID3_ASF_Mutex_Bitrate, GETID3_ASF_Mutex_Unknown)
                 // Stream Numbers Count         WORD         16              // number of video streams
                 // Stream Numbers               WORD         variable        // array of mutually exclusive video stream numbers. 1 <= valid <= 127
                 // shortcut
                 $thisfile_asf['bitrate_mutual_exclusion_object'] = array();
                 $thisfile_asf_bitratemutualexclusionobject =& $thisfile_asf['bitrate_mutual_exclusion_object'];
                 $thisfile_asf_bitratemutualexclusionobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_bitratemutualexclusionobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_bitratemutualexclusionobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_bitratemutualexclusionobject['reserved'] = substr($ASFHeaderData, $offset, 16);
                 $thisfile_asf_bitratemutualexclusionobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_bitratemutualexclusionobject['reserved']);
                 $offset += 16;
                 if ($thisfile_asf_bitratemutualexclusionobject['reserved'] != GETID3_ASF_Mutex_Bitrate && $thisfile_asf_bitratemutualexclusionobject['reserved'] != GETID3_ASF_Mutex_Unknown) {
                     $ThisFileInfo['warning'][] = 'bitrate_mutual_exclusion_object.reserved GUID {' . $this->BytestringToGUID($thisfile_asf_bitratemutualexclusionobject['reserved']) . '} does not match expected "GETID3_ASF_Mutex_Bitrate" GUID {' . $this->BytestringToGUID(GETID3_ASF_Mutex_Bitrate) . '} or  "GETID3_ASF_Mutex_Unknown" GUID {' . $this->BytestringToGUID(GETID3_ASF_Mutex_Unknown) . '}';
                     //return false;
                     break;
                 }
                 $thisfile_asf_bitratemutualexclusionobject['stream_numbers_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 for ($StreamNumberCounter = 0; $StreamNumberCounter < $thisfile_asf_bitratemutualexclusionobject['stream_numbers_count']; $StreamNumberCounter++) {
                     $thisfile_asf_bitratemutualexclusionobject['stream_numbers'][$StreamNumberCounter] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                 }
                 break;
             case GETID3_ASF_Error_Correction_Object:
                 // Error Correction Object: (optional, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Error Correction object - GETID3_ASF_Error_Correction_Object
                 // Object Size                  QWORD        64              // size of Error Correction object, including 44 bytes of Error Correction Object header
                 // Error Correction Type        GUID         128             // type of error correction. one of: (GETID3_ASF_No_Error_Correction, GETID3_ASF_Audio_Spread)
                 // Error Correction Data Length DWORD        32              // number of bytes in Error Correction Data field
                 // Error Correction Data        BYTESTREAM   variable        // structure depends on value of Error Correction Type field
                 // shortcut
                 $thisfile_asf['error_correction_object'] = array();
                 $thisfile_asf_errorcorrectionobject =& $thisfile_asf['error_correction_object'];
                 $thisfile_asf_errorcorrectionobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_errorcorrectionobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_errorcorrectionobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_errorcorrectionobject['error_correction_type'] = substr($ASFHeaderData, $offset, 16);
                 $offset += 16;
                 $thisfile_asf_errorcorrectionobject['error_correction_guid'] = $this->BytestringToGUID($thisfile_asf_errorcorrectionobject['error_correction_type']);
                 $thisfile_asf_errorcorrectionobject['error_correction_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                 $offset += 4;
                 switch ($thisfile_asf_errorcorrectionobject['error_correction_type']) {
                     case GETID3_ASF_No_Error_Correction:
                         // should be no data, but just in case there is, skip to the end of the field
                         $offset += $thisfile_asf_errorcorrectionobject['error_correction_data_length'];
                         break;
                     case GETID3_ASF_Audio_Spread:
                         // Field Name                   Field Type   Size (bits)
                         // Span                         BYTE         8               // number of packets over which audio will be spread.
                         // Virtual Packet Length        WORD         16              // size of largest audio payload found in audio stream
                         // Virtual Chunk Length         WORD         16              // size of largest audio payload found in audio stream
                         // Silence Data Length          WORD         16              // number of bytes in Silence Data field
                         // Silence Data                 BYTESTREAM   variable        // hardcoded: 0x00 * (Silence Data Length) bytes
                         $thisfile_asf_errorcorrectionobject['span'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 1));
                         $offset += 1;
                         $thisfile_asf_errorcorrectionobject['virtual_packet_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                         $offset += 2;
                         $thisfile_asf_errorcorrectionobject['virtual_chunk_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                         $offset += 2;
                         $thisfile_asf_errorcorrectionobject['silence_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                         $offset += 2;
                         $thisfile_asf_errorcorrectionobject['silence_data'] = substr($ASFHeaderData, $offset, $thisfile_asf_errorcorrectionobject['silence_data_length']);
                         $offset += $thisfile_asf_errorcorrectionobject['silence_data_length'];
                         break;
                     default:
                         $ThisFileInfo['warning'][] = 'error_correction_object.error_correction_type GUID {' . $this->BytestringToGUID($thisfile_asf_errorcorrectionobject['reserved']) . '} does not match expected "GETID3_ASF_No_Error_Correction" GUID {' . $this->BytestringToGUID(GETID3_ASF_No_Error_Correction) . '} or  "GETID3_ASF_Audio_Spread" GUID {' . $this->BytestringToGUID(GETID3_ASF_Audio_Spread) . '}';
                         //return false;
                         break;
                 }
                 break;
             case GETID3_ASF_Content_Description_Object:
                 // Content Description Object: (optional, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Content Description object - GETID3_ASF_Content_Description_Object
                 // Object Size                  QWORD        64              // size of Content Description object, including 34 bytes of Content Description Object header
                 // Title Length                 WORD         16              // number of bytes in Title field
                 // Author Length                WORD         16              // number of bytes in Author field
                 // Copyright Length             WORD         16              // number of bytes in Copyright field
                 // Description Length           WORD         16              // number of bytes in Description field
                 // Rating Length                WORD         16              // number of bytes in Rating field
                 // Title                        WCHAR        16              // array of Unicode characters - Title
                 // Author                       WCHAR        16              // array of Unicode characters - Author
                 // Copyright                    WCHAR        16              // array of Unicode characters - Copyright
                 // Description                  WCHAR        16              // array of Unicode characters - Description
                 // Rating                       WCHAR        16              // array of Unicode characters - Rating
                 // shortcut
                 $thisfile_asf['content_description_object'] = array();
                 $thisfile_asf_contentdescriptionobject =& $thisfile_asf['content_description_object'];
                 $thisfile_asf_contentdescriptionobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_contentdescriptionobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_contentdescriptionobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_contentdescriptionobject['title_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 $thisfile_asf_contentdescriptionobject['author_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 $thisfile_asf_contentdescriptionobject['copyright_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 $thisfile_asf_contentdescriptionobject['description_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 $thisfile_asf_contentdescriptionobject['rating_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 $thisfile_asf_contentdescriptionobject['title'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['title_length']);
                 $offset += $thisfile_asf_contentdescriptionobject['title_length'];
                 $thisfile_asf_contentdescriptionobject['author'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['author_length']);
                 $offset += $thisfile_asf_contentdescriptionobject['author_length'];
                 $thisfile_asf_contentdescriptionobject['copyright'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['copyright_length']);
                 $offset += $thisfile_asf_contentdescriptionobject['copyright_length'];
                 $thisfile_asf_contentdescriptionobject['description'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['description_length']);
                 $offset += $thisfile_asf_contentdescriptionobject['description_length'];
                 $thisfile_asf_contentdescriptionobject['rating'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['rating_length']);
                 $offset += $thisfile_asf_contentdescriptionobject['rating_length'];
                 $ASFcommentKeysToCopy = array('title' => 'title', 'author' => 'artist', 'copyright' => 'copyright', 'description' => 'comment', 'rating' => 'rating');
                 foreach ($ASFcommentKeysToCopy as $keytocopyfrom => $keytocopyto) {
                     if (!empty($thisfile_asf_contentdescriptionobject[$keytocopyfrom])) {
                         $thisfile_asf_comments[$keytocopyto][] = $this->TrimTerm($thisfile_asf_contentdescriptionobject[$keytocopyfrom]);
                     }
                 }
                 break;
             case GETID3_ASF_Extended_Content_Description_Object:
                 // Extended Content Description Object: (optional, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Extended Content Description object - GETID3_ASF_Extended_Content_Description_Object
                 // Object Size                  QWORD        64              // size of ExtendedContent Description object, including 26 bytes of Extended Content Description Object header
                 // Content Descriptors Count    WORD         16              // number of entries in Content Descriptors list
                 // Content Descriptors          array of:    variable        //
                 // * Descriptor Name Length     WORD         16              // size in bytes of Descriptor Name field
                 // * Descriptor Name            WCHAR        variable        // array of Unicode characters - Descriptor Name
                 // * Descriptor Value Data Type WORD         16              // Lookup array:
                 // 0x0000 = Unicode String (variable length)
                 // 0x0001 = BYTE array     (variable length)
                 // 0x0002 = BOOL           (DWORD, 32 bits)
                 // 0x0003 = DWORD          (DWORD, 32 bits)
                 // 0x0004 = QWORD          (QWORD, 64 bits)
                 // 0x0005 = WORD           (WORD,  16 bits)
                 // * Descriptor Value Length    WORD         16              // number of bytes stored in Descriptor Value field
                 // * Descriptor Value           variable     variable        // value for Content Descriptor
                 // shortcut
                 $thisfile_asf['extended_content_description_object'] = array();
                 $thisfile_asf_extendedcontentdescriptionobject =& $thisfile_asf['extended_content_description_object'];
                 $thisfile_asf_extendedcontentdescriptionobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_extendedcontentdescriptionobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_extendedcontentdescriptionobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_extendedcontentdescriptionobject['content_descriptors_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 for ($ExtendedContentDescriptorsCounter = 0; $ExtendedContentDescriptorsCounter < $thisfile_asf_extendedcontentdescriptionobject['content_descriptors_count']; $ExtendedContentDescriptorsCounter++) {
                     // shortcut
                     $thisfile_asf_extendedcontentdescriptionobject['content_descriptors'][$ExtendedContentDescriptorsCounter] = array();
                     $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current =& $thisfile_asf_extendedcontentdescriptionobject['content_descriptors'][$ExtendedContentDescriptorsCounter];
                     $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['base_offset'] = $offset + 30;
                     $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name'] = substr($ASFHeaderData, $offset, $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length']);
                     $offset += $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length'];
                     $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = substr($ASFHeaderData, $offset, $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length']);
                     $offset += $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length'];
                     switch ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type']) {
                         case 0x0:
                             // Unicode string
                             break;
                         case 0x1:
                             // BYTE array
                             // do nothing
                             break;
                         case 0x2:
                             // BOOL
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = (bool) getid3_lib::LittleEndian2Int($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
                             break;
                         case 0x3:
                             // DWORD
                         // DWORD
                         case 0x4:
                             // QWORD
                         // QWORD
                         case 0x5:
                             // WORD
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = getid3_lib::LittleEndian2Int($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
                             break;
                         default:
                             $ThisFileInfo['warning'][] = 'extended_content_description.content_descriptors.' . $ExtendedContentDescriptorsCounter . '.value_type is invalid (' . $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type'] . ')';
                             //return false;
                             break;
                     }
                     switch ($this->TrimConvert(strtolower($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name']))) {
                         case 'wm/albumartist':
                         case 'artist':
                             $thisfile_asf_comments['artist'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
                             break;
                         case 'wm/albumtitle':
                         case 'album':
                             $thisfile_asf_comments['album'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
                             break;
                         case 'wm/genre':
                         case 'genre':
                             $genre = $this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
                             // id3v1 module might not be loaded
                             $GETID3_ERRORARRAY =& $ThisFileInfo['warning'];
                             if (getid3_lib::IncludeDependency(GETID3_INCLUDEPATH . 'module.tag.id3v1.php', __FILE__, false)) {
                                 $CleanedGenre = getid3_id3v1::StandardiseID3v1GenreName($genre);
                                 // convert to standard GenreID and back to standard spelling/capitalization
                                 if ($CleanedGenre != $genre) {
                                     $genre = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', $CleanedGenre);
                                 }
                             }
                             $thisfile_asf_comments['genre'] = array($genre);
                             break;
                         case 'wm/tracknumber':
                         case 'tracknumber':
                             $thisfile_asf_comments['track'] = array(intval($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])));
                             break;
                         case 'wm/track':
                             if (empty($thisfile_asf_comments['track'])) {
                                 $thisfile_asf_comments['track'] = array(1 + $this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
                             }
                             break;
                         case 'wm/year':
                         case 'year':
                         case 'date':
                             $thisfile_asf_comments['year'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
                             break;
                         case 'isvbr':
                             if ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']) {
                                 $thisfile_audio['bitrate_mode'] = 'vbr';
                                 $thisfile_video['bitrate_mode'] = 'vbr';
                             }
                             break;
                         case 'id3':
                             // id3v2 module might not be loaded
                             if (class_exists('getid3_id3v2')) {
                                 if ($tempfilehandle = tmpfile()) {
                                     $tempThisfileInfo = array('encoding' => $ThisFileInfo['encoding']);
                                     fwrite($tempfilehandle, $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
                                     $id3 = new getid3_id3v2($tempfilehandle, $tempThisfileInfo);
                                     fclose($tempfilehandle);
                                     $ThisFileInfo['id3v2'] = $tempThisfileInfo['id3v2'];
                                 }
                             }
                             break;
                         case 'wm/encodingtime':
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['encoding_time_unix'] = $this->FILETIMEtoUNIXtime($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
                             $thisfile_asf_comments['encoding_time_unix'] = array($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['encoding_time_unix']);
                             break;
                         case 'wm/picture':
                             //typedef struct _WMPicture{
                             //  LPWSTR  pwszMIMEType;
                             //  BYTE  bPictureType;
                             //  LPWSTR  pwszDescription;
                             //  DWORD  dwDataLen;
                             //  BYTE*  pbData;
                             //} WM_PICTURE;
                             $wm_picture_offset = 0;
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type_id'] = getid3_lib::LittleEndian2Int(substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 1));
                             $wm_picture_offset += 1;
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type'] = $this->WMpictureTypeLookup($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type_id']);
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_size'] = getid3_lib::LittleEndian2Int(substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 4));
                             $wm_picture_offset += 4;
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] = '';
                             do {
                                 $next_byte_pair = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 2);
                                 $wm_picture_offset += 2;
                                 $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] .= $next_byte_pair;
                             } while ($next_byte_pair !== "");
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_description'] = '';
                             do {
                                 $next_byte_pair = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 2);
                                 $wm_picture_offset += 2;
                                 $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_description'] .= $next_byte_pair;
                             } while ($next_byte_pair !== "");
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['dataoffset'] = $wm_picture_offset;
                             $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['data'] = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset);
                             unset($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
                             break;
                         default:
                             switch ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type']) {
                                 case 0:
                                     // Unicode string
                                     if (substr($this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name']), 0, 3) == 'WM/') {
                                         $thisfile_asf_comments[str_replace('wm/', '', strtolower($this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name'])))] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
                                     }
                                     break;
                                 case 1:
                                     break;
                             }
                             break;
                     }
                 }
                 break;
             case GETID3_ASF_Stream_Bitrate_Properties_Object:
                 // Stream Bitrate Properties Object: (optional, one only)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Stream Bitrate Properties object - GETID3_ASF_Stream_Bitrate_Properties_Object
                 // Object Size                  QWORD        64              // size of Extended Content Description object, including 26 bytes of Stream Bitrate Properties Object header
                 // Bitrate Records Count        WORD         16              // number of records in Bitrate Records
                 // Bitrate Records              array of:    variable        //
                 // * Flags                      WORD         16              //
                 // * * Stream Number            bits         7  (0x007F)     // number of this stream
                 // * * Reserved                 bits         9  (0xFF80)     // hardcoded: 0
                 // * Average Bitrate            DWORD        32              // in bits per second
                 // shortcut
                 $thisfile_asf['stream_bitrate_properties_object'] = array();
                 $thisfile_asf_streambitratepropertiesobject =& $thisfile_asf['stream_bitrate_properties_object'];
                 $thisfile_asf_streambitrateproperties['objectid'] = $NextObjectGUID;
                 $thisfile_asf_streambitrateproperties['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_streambitrateproperties['objectsize'] = $NextObjectSize;
                 $thisfile_asf_streambitrateproperties['bitrate_records_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                 $offset += 2;
                 for ($BitrateRecordsCounter = 0; $BitrateRecordsCounter < $thisfile_asf_streambitrateproperties['bitrate_records_count']; $BitrateRecordsCounter++) {
                     $thisfile_asf_streambitrateproperties['bitrate_records'][$BitrateRecordsCounter]['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_streambitrateproperties['bitrate_records'][$BitrateRecordsCounter]['flags']['stream_number'] = $thisfile_asf_streambitrateproperties['bitrate_records'][$BitrateRecordsCounter]['flags_raw'] & 0x7f;
                     $thisfile_asf_streambitrateproperties['bitrate_records'][$BitrateRecordsCounter]['bitrate'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
                     $offset += 4;
                 }
                 break;
             case GETID3_ASF_Padding_Object:
                 // Padding Object: (optional)
                 // Field Name                   Field Type   Size (bits)
                 // Object ID                    GUID         128             // GUID for Padding object - GETID3_ASF_Padding_Object
                 // Object Size                  QWORD        64              // size of Padding object, including 24 bytes of ASF Padding Object header
                 // Padding Data                 BYTESTREAM   variable        // ignore
                 // shortcut
                 $thisfile_asf['padding_object'] = array();
                 $thisfile_asf_paddingobject =& $thisfile_asf['padding_object'];
                 $thisfile_asf_paddingobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_paddingobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_paddingobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_paddingobject['padding_length'] = $thisfile_asf_paddingobject['objectsize'] - 16 - 8;
                 $thisfile_asf_paddingobject['padding'] = substr($ASFHeaderData, $offset, $thisfile_asf_paddingobject['padding_length']);
                 break;
             case GETID3_ASF_Extended_Content_Encryption_Object:
             case GETID3_ASF_Content_Encryption_Object:
                 // WMA DRM - just ignore
                 $offset += $NextObjectSize - 16 - 8;
                 break;
             default:
                 // Implementations shall ignore any standard or non-standard object that they do not know how to handle.
                 if ($this->GUIDname($NextObjectGUIDtext)) {
                     $ThisFileInfo['warning'][] = 'unhandled GUID "' . $this->GUIDname($NextObjectGUIDtext) . '" {' . $NextObjectGUIDtext . '} in ASF header at offset ' . ($offset - 16 - 8);
                 } else {
                     $ThisFileInfo['warning'][] = 'unknown GUID {' . $NextObjectGUIDtext . '} in ASF header at offset ' . ($offset - 16 - 8);
                 }
                 $offset += $NextObjectSize - 16 - 8;
                 break;
         }
     }
     if (isset($thisfile_asf_streambitrateproperties['bitrate_records_count'])) {
         $ASFbitrateAudio = 0;
         $ASFbitrateVideo = 0;
         for ($BitrateRecordsCounter = 0; $BitrateRecordsCounter < $thisfile_asf_streambitrateproperties['bitrate_records_count']; $BitrateRecordsCounter++) {
             if (isset($thisfile_asf_codeclistobject['codec_entries'][$BitrateRecordsCounter])) {
                 switch ($thisfile_asf_codeclistobject['codec_entries'][$BitrateRecordsCounter]['type_raw']) {
                     case 1:
                         $ASFbitrateVideo += $thisfile_asf_streambitrateproperties['bitrate_records'][$BitrateRecordsCounter]['bitrate'];
                         break;
                     case 2:
                         $ASFbitrateAudio += $thisfile_asf_streambitrateproperties['bitrate_records'][$BitrateRecordsCounter]['bitrate'];
                         break;
                     default:
                         // do nothing
                         break;
                 }
             }
         }
         if ($ASFbitrateAudio > 0) {
             $thisfile_audio['bitrate'] = $ASFbitrateAudio;
         }
         if ($ASFbitrateVideo > 0) {
             $thisfile_video['bitrate'] = $ASFbitrateVideo;
         }
     }
     if (isset($thisfile_asf['stream_properties_object']) && is_array($thisfile_asf['stream_properties_object'])) {
         foreach ($thisfile_asf['stream_properties_object'] as $streamnumber => $streamdata) {
             switch ($streamdata['stream_type']) {
                 case GETID3_ASF_Audio_Media:
                     // Field Name                   Field Type   Size (bits)
                     // Codec ID / Format Tag        WORD         16              // unique ID of audio codec - defined as wFormatTag field of WAVEFORMATEX structure
                     // Number of Channels           WORD         16              // number of channels of audio - defined as nChannels field of WAVEFORMATEX structure
                     // Samples Per Second           DWORD        32              // in Hertz - defined as nSamplesPerSec field of WAVEFORMATEX structure
                     // Average number of Bytes/sec  DWORD        32              // bytes/sec of audio stream  - defined as nAvgBytesPerSec field of WAVEFORMATEX structure
                     // Block Alignment              WORD         16              // block size in bytes of audio codec - defined as nBlockAlign field of WAVEFORMATEX structure
                     // Bits per sample              WORD         16              // bits per sample of mono data. set to zero for variable bitrate codecs. defined as wBitsPerSample field of WAVEFORMATEX structure
                     // Codec Specific Data Size     WORD         16              // size in bytes of Codec Specific Data buffer - defined as cbSize field of WAVEFORMATEX structure
                     // Codec Specific Data          BYTESTREAM   variable        // array of codec-specific data bytes
                     // shortcut
                     $thisfile_asf['audio_media'][$streamnumber] = array();
                     $thisfile_asf_audiomedia_currentstream =& $thisfile_asf['audio_media'][$streamnumber];
                     $audiomediaoffset = 0;
                     $thisfile_asf_audiomedia_currentstream = getid3_riff::RIFFparseWAVEFORMATex(substr($streamdata['type_specific_data'], $audiomediaoffset, 16));
                     $audiomediaoffset += 16;
                     $thisfile_audio['lossless'] = false;
                     switch ($thisfile_asf_audiomedia_currentstream['raw']['wFormatTag']) {
                         case 0x1:
                             // PCM
                         // PCM
                         case 0x163:
                             // WMA9 Lossless
                             $thisfile_audio['lossless'] = true;
                             break;
                     }
                     if (!isset($thisfile_audio['bitrate'])) {
                         $thisfile_audio['bitrate'] = $thisfile_asf_audiomedia_currentstream['bytes_sec'] * 8;
                     }
                     $thisfile_audio['streams'][$streamnumber] = $thisfile_asf_audiomedia_currentstream;
                     $thisfile_audio['streams'][$streamnumber]['wformattag'] = $thisfile_asf_audiomedia_currentstream['raw']['wFormatTag'];
                     $thisfile_audio['streams'][$streamnumber]['lossless'] = $thisfile_audio['lossless'];
                     $thisfile_audio['streams'][$streamnumber]['bitrate'] = $thisfile_audio['bitrate'];
                     unset($thisfile_audio['streams'][$streamnumber]['raw']);
                     $thisfile_asf_audiomedia_currentstream['codec_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $audiomediaoffset, 2));
                     $audiomediaoffset += 2;
                     $thisfile_asf_audiomedia_currentstream['codec_data'] = substr($streamdata['type_specific_data'], $audiomediaoffset, $thisfile_asf_audiomedia_currentstream['codec_data_size']);
                     $audiomediaoffset += $thisfile_asf_audiomedia_currentstream['codec_data_size'];
                     break;
                 case GETID3_ASF_Video_Media:
                     // Field Name                   Field Type   Size (bits)
                     // Encoded Image Width          DWORD        32              // width of image in pixels
                     // Encoded Image Height         DWORD        32              // height of image in pixels
                     // Reserved Flags               BYTE         8               // hardcoded: 0x02
                     // Format Data Size             WORD         16              // size of Format Data field in bytes
                     // Format Data                  array of:    variable        //
                     // * Format Data Size           DWORD        32              // number of bytes in Format Data field, in bytes - defined as biSize field of BITMAPINFOHEADER structure
                     // * Image Width                LONG         32              // width of encoded image in pixels - defined as biWidth field of BITMAPINFOHEADER structure
                     // * Image Height               LONG         32              // height of encoded image in pixels - defined as biHeight field of BITMAPINFOHEADER structure
                     // * Reserved                   WORD         16              // hardcoded: 0x0001 - defined as biPlanes field of BITMAPINFOHEADER structure
                     // * Bits Per Pixel Count       WORD         16              // bits per pixel - defined as biBitCount field of BITMAPINFOHEADER structure
                     // * Compression ID             FOURCC       32              // fourcc of video codec - defined as biCompression field of BITMAPINFOHEADER structure
                     // * Image Size                 DWORD        32              // image size in bytes - defined as biSizeImage field of BITMAPINFOHEADER structure
                     // * Horizontal Pixels / Meter  DWORD        32              // horizontal resolution of target device in pixels per meter - defined as biXPelsPerMeter field of BITMAPINFOHEADER structure
                     // * Vertical Pixels / Meter    DWORD        32              // vertical resolution of target device in pixels per meter - defined as biYPelsPerMeter field of BITMAPINFOHEADER structure
                     // * Colors Used Count          DWORD        32              // number of color indexes in the color table that are actually used - defined as biClrUsed field of BITMAPINFOHEADER structure
                     // * Important Colors Count     DWORD        32              // number of color index required for displaying bitmap. if zero, all colors are required. defined as biClrImportant field of BITMAPINFOHEADER structure
                     // * Codec Specific Data        BYTESTREAM   variable        // array of codec-specific data bytes
                     // shortcut
                     $thisfile_asf['video_media'][$streamnumber] = array();
                     $thisfile_asf_videomedia_currentstream =& $thisfile_asf['video_media'][$streamnumber];
                     $videomediaoffset = 0;
                     $thisfile_asf_videomedia_currentstream['image_width'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['image_height'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['flags'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 1));
                     $videomediaoffset += 1;
                     $thisfile_asf_videomedia_currentstream['format_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2));
                     $videomediaoffset += 2;
                     $thisfile_asf_videomedia_currentstream['format_data']['format_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['image_width'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['image_height'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['reserved'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2));
                     $videomediaoffset += 2;
                     $thisfile_asf_videomedia_currentstream['format_data']['bits_per_pixel'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2));
                     $videomediaoffset += 2;
                     $thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc'] = substr($streamdata['type_specific_data'], $videomediaoffset, 4);
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['image_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['horizontal_pels'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['vertical_pels'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['colors_used'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['colors_important'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
                     $videomediaoffset += 4;
                     $thisfile_asf_videomedia_currentstream['format_data']['codec_data'] = substr($streamdata['type_specific_data'], $videomediaoffset);
                     $thisfile_asf_videomedia_currentstream['format_data']['codec'] = getid3_riff::RIFFfourccLookup($thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc']);
                     $thisfile_video['fourcc'] = $thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc'];
                     $thisfile_video['codec'] = $thisfile_asf_videomedia_currentstream['format_data']['codec'];
                     $thisfile_video['resolution_x'] = $thisfile_asf_videomedia_currentstream['image_width'];
                     $thisfile_video['resolution_y'] = $thisfile_asf_videomedia_currentstream['image_height'];
                     $thisfile_video['bits_per_sample'] = $thisfile_asf_videomedia_currentstream['format_data']['bits_per_pixel'];
                     break;
                 default:
                     break;
             }
         }
     }
     while (ftell($fd) < $ThisFileInfo['avdataend']) {
         $NextObjectDataHeader = fread($fd, 24);
         $offset = 0;
         $NextObjectGUID = substr($NextObjectDataHeader, 0, 16);
         $offset += 16;
         $NextObjectGUIDtext = $this->BytestringToGUID($NextObjectGUID);
         $NextObjectSize = getid3_lib::LittleEndian2Int(substr($NextObjectDataHeader, $offset, 8));
         $offset += 8;
         switch ($NextObjectGUID) {
             case GETID3_ASF_Data_Object:
                 // Data Object: (mandatory, one only)
                 // Field Name                       Field Type   Size (bits)
                 // Object ID                        GUID         128             // GUID for Data object - GETID3_ASF_Data_Object
                 // Object Size                      QWORD        64              // size of Data object, including 50 bytes of Data Object header. may be 0 if FilePropertiesObject.BroadcastFlag == 1
                 // File ID                          GUID         128             // unique identifier. identical to File ID field in Header Object
                 // Total Data Packets               QWORD        64              // number of Data Packet entries in Data Object. invalid if FilePropertiesObject.BroadcastFlag == 1
                 // Reserved                         WORD         16              // hardcoded: 0x0101
                 // shortcut
                 $thisfile_asf['data_object'] = array();
                 $thisfile_asf_dataobject =& $thisfile_asf['data_object'];
                 $DataObjectData = $NextObjectDataHeader . fread($fd, 50 - 24);
                 $offset = 24;
                 $thisfile_asf_dataobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_dataobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_dataobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_dataobject['fileid'] = substr($DataObjectData, $offset, 16);
                 $offset += 16;
                 $thisfile_asf_dataobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_dataobject['fileid']);
                 $thisfile_asf_dataobject['total_data_packets'] = getid3_lib::LittleEndian2Int(substr($DataObjectData, $offset, 8));
                 $offset += 8;
                 $thisfile_asf_dataobject['reserved'] = getid3_lib::LittleEndian2Int(substr($DataObjectData, $offset, 2));
                 $offset += 2;
                 if ($thisfile_asf_dataobject['reserved'] != 0x101) {
                     $ThisFileInfo['warning'][] = 'data_object.reserved (' . getid3_lib::PrintHexBytes($thisfile_asf_dataobject['reserved']) . ') does not match expected value of "0x0101"';
                     //return false;
                     break;
                 }
                 // Data Packets                     array of:    variable        //
                 // * Error Correction Flags         BYTE         8               //
                 // * * Error Correction Data Length bits         4               // if Error Correction Length Type == 00, size of Error Correction Data in bytes, else hardcoded: 0000
                 // * * Opaque Data Present          bits         1               //
                 // * * Error Correction Length Type bits         2               // number of bits for size of the error correction data. hardcoded: 00
                 // * * Error Correction Present     bits         1               // If set, use Opaque Data Packet structure, else use Payload structure
                 // * Error Correction Data
                 $ThisFileInfo['avdataoffset'] = ftell($fd);
                 fseek($fd, $thisfile_asf_dataobject['objectsize'] - 50, SEEK_CUR);
                 // skip actual audio/video data
                 $ThisFileInfo['avdataend'] = ftell($fd);
                 break;
             case GETID3_ASF_Simple_Index_Object:
                 // Simple Index Object: (optional, recommended, one per video stream)
                 // Field Name                       Field Type   Size (bits)
                 // Object ID                        GUID         128             // GUID for Simple Index object - GETID3_ASF_Data_Object
                 // Object Size                      QWORD        64              // size of Simple Index object, including 56 bytes of Simple Index Object header
                 // File ID                          GUID         128             // unique identifier. may be zero or identical to File ID field in Data Object and Header Object
                 // Index Entry Time Interval        QWORD        64              // interval between index entries in 100-nanosecond units
                 // Maximum Packet Count             DWORD        32              // maximum packet count for all index entries
                 // Index Entries Count              DWORD        32              // number of Index Entries structures
                 // Index Entries                    array of:    variable        //
                 // * Packet Number                  DWORD        32              // number of the Data Packet associated with this index entry
                 // * Packet Count                   WORD         16              // number of Data Packets to sent at this index entry
                 // shortcut
                 $thisfile_asf['simple_index_object'] = array();
                 $thisfile_asf_simpleindexobject =& $thisfile_asf['simple_index_object'];
                 $SimpleIndexObjectData = $NextObjectDataHeader . fread($fd, 56 - 24);
                 $offset = 24;
                 $thisfile_asf_simpleindexobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_simpleindexobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_simpleindexobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_simpleindexobject['fileid'] = substr($SimpleIndexObjectData, $offset, 16);
                 $offset += 16;
                 $thisfile_asf_simpleindexobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_simpleindexobject['fileid']);
                 $thisfile_asf_simpleindexobject['index_entry_time_interval'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 8));
                 $offset += 8;
                 $thisfile_asf_simpleindexobject['maximum_packet_count'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 4));
                 $offset += 4;
                 $thisfile_asf_simpleindexobject['index_entries_count'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 4));
                 $offset += 4;
                 $IndexEntriesData = $SimpleIndexObjectData . fread($fd, 6 * $thisfile_asf_simpleindexobject['index_entries_count']);
                 for ($IndexEntriesCounter = 0; $IndexEntriesCounter < $thisfile_asf_simpleindexobject['index_entries_count']; $IndexEntriesCounter++) {
                     $thisfile_asf_simpleindexobject['index_entries'][$IndexEntriesCounter]['packet_number'] = getid3_lib::LittleEndian2Int(substr($IndexEntriesData, $offset, 4));
                     $offset += 4;
                     $thisfile_asf_simpleindexobject['index_entries'][$IndexEntriesCounter]['packet_count'] = getid3_lib::LittleEndian2Int(substr($IndexEntriesData, $offset, 4));
                     $offset += 2;
                 }
                 break;
             case GETID3_ASF_Index_Object:
                 // 6.2 ASF top-level Index Object (optional but recommended when appropriate, 0 or 1)
                 // Field Name                       Field Type   Size (bits)
                 // Object ID                        GUID         128             // GUID for the Index Object - GETID3_ASF_Index_Object
                 // Object Size                      QWORD        64              // Specifies the size, in bytes, of the Index Object, including at least 34 bytes of Index Object header
                 // Index Entry Time Interval        DWORD        32              // Specifies the time interval between each index entry in ms.
                 // Index Specifiers Count           WORD         16              // Specifies the number of Index Specifiers structures in this Index Object.
                 // Index Blocks Count               DWORD        32              // Specifies the number of Index Blocks structures in this Index Object.
                 // Index Entry Time Interval        DWORD        32              // Specifies the time interval between index entries in milliseconds.  This value cannot be 0.
                 // Index Specifiers Count           WORD         16              // Specifies the number of entries in the Index Specifiers list.  Valid values are 1 and greater.
                 // Index Specifiers                 array of:    varies          //
                 // * Stream Number                  WORD         16              // Specifies the stream number that the Index Specifiers refer to. Valid values are between 1 and 127.
                 // * Index Type                     WORD         16              // Specifies Index Type values as follows:
                 //   1 = Nearest Past Data Packet - indexes point to the data packet whose presentation time is closest to the index entry time.
                 //   2 = Nearest Past Media Object - indexes point to the closest data packet containing an entire object or first fragment of an object.
                 //   3 = Nearest Past Cleanpoint. - indexes point to the closest data packet containing an entire object (or first fragment of an object) that has the Cleanpoint Flag set.
                 //   Nearest Past Cleanpoint is the most common type of index.
                 // Index Entry Count                DWORD        32              // Specifies the number of Index Entries in the block.
                 // * Block Positions                QWORD        varies          // Specifies a list of byte offsets of the beginnings of the blocks relative to the beginning of the first Data Packet (i.e., the beginning of the Data Object + 50 bytes). The number of entries in this list is specified by the value of the Index Specifiers Count field. The order of those byte offsets is tied to the order in which Index Specifiers are listed.
                 // * Index Entries                  array of:    varies          //
                 // * * Offsets                      DWORD        varies          // An offset value of 0xffffffff indicates an invalid offset value
                 // shortcut
                 $thisfile_asf['asf_index_object'] = array();
                 $thisfile_asf_asfindexobject =& $thisfile_asf['asf_index_object'];
                 $ASFIndexObjectData = $NextObjectDataHeader . fread($fd, 34 - 24);
                 $offset = 24;
                 $thisfile_asf_asfindexobject['objectid'] = $NextObjectGUID;
                 $thisfile_asf_asfindexobject['objectid_guid'] = $NextObjectGUIDtext;
                 $thisfile_asf_asfindexobject['objectsize'] = $NextObjectSize;
                 $thisfile_asf_asfindexobject['entry_time_interval'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4));
                 $offset += 4;
                 $thisfile_asf_asfindexobject['index_specifiers_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2));
                 $offset += 2;
                 $thisfile_asf_asfindexobject['index_blocks_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4));
                 $offset += 4;
                 $ASFIndexObjectData .= fread($fd, 4 * $thisfile_asf_asfindexobject['index_specifiers_count']);
                 for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) {
                     $IndexSpecifierStreamNumber = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['stream_number'] = $IndexSpecifierStreamNumber;
                     $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2));
                     $offset += 2;
                     $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type_text'] = $this->ASFIndexObjectIndexTypeLookup($thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type']);
                 }
                 $ASFIndexObjectData .= fread($fd, 4);
                 $thisfile_asf_asfindexobject['index_entry_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4));
                 $offset += 4;
                 $ASFIndexObjectData .= fread($fd, 8 * $thisfile_asf_asfindexobject['index_specifiers_count']);
                 for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) {
                     $thisfile_asf_asfindexobject['block_positions'][$IndexSpecifiersCounter] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 8));
                     $offset += 8;
                 }
                 $ASFIndexObjectData .= fread($fd, 4 * $thisfile_asf_asfindexobject['index_specifiers_count'] * $thisfile_asf_asfindexobject['index_entry_count']);
                 for ($IndexEntryCounter = 0; $IndexEntryCounter < $thisfile_asf_asfindexobject['index_entry_count']; $IndexEntryCounter++) {
                     for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) {
                         $thisfile_asf_asfindexobject['offsets'][$IndexSpecifiersCounter][$IndexEntryCounter] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4));
                         $offset += 4;
                     }
                 }
                 break;
             default:
                 // Implementations shall ignore any standard or non-standard object that they do not know how to handle.
                 if ($this->GUIDname($NextObjectGUIDtext)) {
                     $ThisFileInfo['warning'][] = 'unhandled GUID "' . $this->GUIDname($NextObjectGUIDtext) . '" {' . $NextObjectGUIDtext . '} in ASF body at offset ' . ($offset - 16 - 8);
                 } else {
                     $ThisFileInfo['warning'][] = 'unknown GUID {' . $NextObjectGUIDtext . '} in ASF body at offset ' . (ftell($fd) - 16 - 8);
                 }
                 fseek($fd, $NextObjectSize - 16 - 8, SEEK_CUR);
                 break;
         }
     }
     if (isset($thisfile_asf_codeclistobject['codec_entries']) && is_array($thisfile_asf_codeclistobject['codec_entries'])) {
         foreach ($thisfile_asf_codeclistobject['codec_entries'] as $streamnumber => $streamdata) {
             switch ($streamdata['information']) {
                 case 'WMV1':
                 case 'WMV2':
                 case 'WMV3':
                     $thisfile_video['dataformat'] = 'wmv';
                     $ThisFileInfo['mime_type'] = 'video/x-ms-wmv';
                     break;
                 case 'MP42':
                 case 'MP43':
                 case 'MP4S':
                 case 'mp4s':
                     $thisfile_video['dataformat'] = 'asf';
                     $ThisFileInfo['mime_type'] = 'video/x-ms-asf';
                     break;
                 default:
                     switch ($streamdata['type_raw']) {
                         case 1:
                             if (strstr($this->TrimConvert($streamdata['name']), 'Windows Media')) {
                                 $thisfile_video['dataformat'] = 'wmv';
                                 if ($ThisFileInfo['mime_type'] == 'video/x-ms-asf') {
                                     $ThisFileInfo['mime_type'] = 'video/x-ms-wmv';
                                 }
                             }
                             break;
                         case 2:
                             if (strstr($this->TrimConvert($streamdata['name']), 'Windows Media')) {
                                 $thisfile_audio['dataformat'] = 'wma';
                                 if ($ThisFileInfo['mime_type'] == 'video/x-ms-asf') {
                                     $ThisFileInfo['mime_type'] = 'audio/x-ms-wma';
                                 }
                             }
                             break;
                     }
                     break;
             }
         }
     }
     switch ($thisfile_audio['codec']) {
         case 'MPEG Layer-3':
             $thisfile_audio['dataformat'] = 'mp3';
             break;
         default:
             break;
     }
     if (isset($thisfile_asf_codeclistobject['codec_entries'])) {
         foreach ($thisfile_asf_codeclistobject['codec_entries'] as $streamnumber => $streamdata) {
             switch ($streamdata['type_raw']) {
                 case 1:
                     // video
                     $thisfile_video['encoder'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][$streamnumber]['name']);
                     break;
                 case 2:
                     // audio
                     $thisfile_audio['encoder'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][$streamnumber]['name']);
                     // AH 2003-10-01
                     $thisfile_audio['encoder_options'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][0]['description']);
                     $thisfile_audio['codec'] = $thisfile_audio['encoder'];
                     break;
                 default:
                     $ThisFileInfo['warning'][] = 'Unknown streamtype: [codec_list_object][codec_entries][' . $streamnumber . '][type_raw] == ' . $streamdata['type_raw'];
                     break;
             }
         }
     }
     if (isset($ThisFileInfo['audio'])) {
         $thisfile_audio['lossless'] = isset($thisfile_audio['lossless']) ? $thisfile_audio['lossless'] : false;
         $thisfile_audio['dataformat'] = !empty($thisfile_audio['dataformat']) ? $thisfile_audio['dataformat'] : 'asf';
     }
     if (!empty($thisfile_video['dataformat'])) {
         $thisfile_video['lossless'] = isset($thisfile_audio['lossless']) ? $thisfile_audio['lossless'] : false;
         $thisfile_video['pixel_aspect_ratio'] = isset($thisfile_audio['pixel_aspect_ratio']) ? $thisfile_audio['pixel_aspect_ratio'] : (double) 1;
         $thisfile_video['dataformat'] = !empty($thisfile_video['dataformat']) ? $thisfile_video['dataformat'] : 'asf';
     }
     return true;
 }