PageRenderTime 65ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 1ms

/getid3/module.audio-video.asf.php

https://bitbucket.org/holyfield/getid3
PHP | 2020 lines | 1378 code | 274 blank | 368 comment | 133 complexity | 2af3479c0e61dd9723bf41986ac2c054 MD5 | raw file
Possible License(s): GPL-2.0
  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at http://getid3.sourceforge.net //
  5. // or http://www.getid3.org //
  6. /////////////////////////////////////////////////////////////////
  7. // See readme.txt for more details //
  8. /////////////////////////////////////////////////////////////////
  9. // //
  10. // module.audio-video.asf.php //
  11. // module for analyzing ASF, WMA and WMV files //
  12. // dependencies: module.audio-video.riff.php //
  13. // ///
  14. /////////////////////////////////////////////////////////////////
  15. getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true);
  16. class getid3_asf extends getid3_handler
  17. {
  18. function __construct(getID3 $getid3) {
  19. parent::__construct($getid3); // extends getid3_handler::__construct()
  20. // initialize all GUID constants
  21. $GUIDarray = $this->KnownGUIDs();
  22. foreach ($GUIDarray as $GUIDname => $hexstringvalue) {
  23. if (!defined($GUIDname)) {
  24. define($GUIDname, $this->GUIDtoBytestring($hexstringvalue));
  25. }
  26. }
  27. }
  28. function Analyze() {
  29. $info = &$this->getid3->info;
  30. // Shortcuts
  31. $thisfile_audio = &$info['audio'];
  32. $thisfile_video = &$info['video'];
  33. $info['asf'] = array();
  34. $thisfile_asf = &$info['asf'];
  35. $thisfile_asf['comments'] = array();
  36. $thisfile_asf_comments = &$thisfile_asf['comments'];
  37. $thisfile_asf['header_object'] = array();
  38. $thisfile_asf_headerobject = &$thisfile_asf['header_object'];
  39. // ASF structure:
  40. // * Header Object [required]
  41. // * File Properties Object [required] (global file attributes)
  42. // * Stream Properties Object [required] (defines media stream & characteristics)
  43. // * Header Extension Object [required] (additional functionality)
  44. // * Content Description Object (bibliographic information)
  45. // * Script Command Object (commands for during playback)
  46. // * Marker Object (named jumped points within the file)
  47. // * Data Object [required]
  48. // * Data Packets
  49. // * Index Object
  50. // Header Object: (mandatory, one only)
  51. // Field Name Field Type Size (bits)
  52. // Object ID GUID 128 // GUID for header object - GETID3_ASF_Header_Object
  53. // Object Size QWORD 64 // size of header object, including 30 bytes of Header Object header
  54. // Number of Header Objects DWORD 32 // number of objects in header object
  55. // Reserved1 BYTE 8 // hardcoded: 0x01
  56. // Reserved2 BYTE 8 // hardcoded: 0x02
  57. $info['fileformat'] = 'asf';
  58. fseek($this->getid3->fp, $info['avdataoffset'], SEEK_SET);
  59. $HeaderObjectData = fread($this->getid3->fp, 30);
  60. $thisfile_asf_headerobject['objectid'] = substr($HeaderObjectData, 0, 16);
  61. $thisfile_asf_headerobject['objectid_guid'] = $this->BytestringToGUID($thisfile_asf_headerobject['objectid']);
  62. if ($thisfile_asf_headerobject['objectid'] != GETID3_ASF_Header_Object) {
  63. $info['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).'}';
  64. unset($info['fileformat']);
  65. unset($info['asf']);
  66. return false;
  67. break;
  68. }
  69. $thisfile_asf_headerobject['objectsize'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 16, 8));
  70. $thisfile_asf_headerobject['headerobjects'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 24, 4));
  71. $thisfile_asf_headerobject['reserved1'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 28, 1));
  72. $thisfile_asf_headerobject['reserved2'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 29, 1));
  73. $NextObjectOffset = ftell($this->getid3->fp);
  74. $ASFHeaderData = fread($this->getid3->fp, $thisfile_asf_headerobject['objectsize'] - 30);
  75. $offset = 0;
  76. for ($HeaderObjectsCounter = 0; $HeaderObjectsCounter < $thisfile_asf_headerobject['headerobjects']; $HeaderObjectsCounter++) {
  77. $NextObjectGUID = substr($ASFHeaderData, $offset, 16);
  78. $offset += 16;
  79. $NextObjectGUIDtext = $this->BytestringToGUID($NextObjectGUID);
  80. $NextObjectSize = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  81. $offset += 8;
  82. switch ($NextObjectGUID) {
  83. case GETID3_ASF_File_Properties_Object:
  84. // File Properties Object: (mandatory, one only)
  85. // Field Name Field Type Size (bits)
  86. // Object ID GUID 128 // GUID for file properties object - GETID3_ASF_File_Properties_Object
  87. // Object Size QWORD 64 // size of file properties object, including 104 bytes of File Properties Object header
  88. // File ID GUID 128 // unique ID - identical to File ID in Data Object
  89. // File Size QWORD 64 // entire file in bytes. Invalid if Broadcast Flag == 1
  90. // Creation Date QWORD 64 // date & time of file creation. Maybe invalid if Broadcast Flag == 1
  91. // Data Packets Count QWORD 64 // number of data packets in Data Object. Invalid if Broadcast Flag == 1
  92. // Play Duration QWORD 64 // playtime, in 100-nanosecond units. Invalid if Broadcast Flag == 1
  93. // Send Duration QWORD 64 // time needed to send file, in 100-nanosecond units. Players can ignore this value. Invalid if Broadcast Flag == 1
  94. // 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
  95. // Flags DWORD 32 //
  96. // * Broadcast Flag bits 1 (0x01) // file is currently being written, some header values are invalid
  97. // * Seekable Flag bits 1 (0x02) // is file seekable
  98. // * Reserved bits 30 (0xFFFFFFFC) // reserved - set to zero
  99. // Minimum Data Packet Size DWORD 32 // in bytes. should be same as Maximum Data Packet Size. Invalid if Broadcast Flag == 1
  100. // Maximum Data Packet Size DWORD 32 // in bytes. should be same as Minimum Data Packet Size. Invalid if Broadcast Flag == 1
  101. // Maximum Bitrate DWORD 32 // maximum instantaneous bitrate in bits per second for entire file, including all data streams and ASF overhead
  102. // shortcut
  103. $thisfile_asf['file_properties_object'] = array();
  104. $thisfile_asf_filepropertiesobject = &$thisfile_asf['file_properties_object'];
  105. $thisfile_asf_filepropertiesobject['offset'] = $NextObjectOffset + $offset;
  106. $thisfile_asf_filepropertiesobject['objectid'] = $NextObjectGUID;
  107. $thisfile_asf_filepropertiesobject['objectid_guid'] = $NextObjectGUIDtext;
  108. $thisfile_asf_filepropertiesobject['objectsize'] = $NextObjectSize;
  109. $thisfile_asf_filepropertiesobject['fileid'] = substr($ASFHeaderData, $offset, 16);
  110. $offset += 16;
  111. $thisfile_asf_filepropertiesobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_filepropertiesobject['fileid']);
  112. $thisfile_asf_filepropertiesobject['filesize'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  113. $offset += 8;
  114. $thisfile_asf_filepropertiesobject['creation_date'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  115. $thisfile_asf_filepropertiesobject['creation_date_unix'] = $this->FILETIMEtoUNIXtime($thisfile_asf_filepropertiesobject['creation_date']);
  116. $offset += 8;
  117. $thisfile_asf_filepropertiesobject['data_packets'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  118. $offset += 8;
  119. $thisfile_asf_filepropertiesobject['play_duration'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  120. $offset += 8;
  121. $thisfile_asf_filepropertiesobject['send_duration'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  122. $offset += 8;
  123. $thisfile_asf_filepropertiesobject['preroll'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  124. $offset += 8;
  125. $thisfile_asf_filepropertiesobject['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  126. $offset += 4;
  127. $thisfile_asf_filepropertiesobject['flags']['broadcast'] = (bool) ($thisfile_asf_filepropertiesobject['flags_raw'] & 0x0001);
  128. $thisfile_asf_filepropertiesobject['flags']['seekable'] = (bool) ($thisfile_asf_filepropertiesobject['flags_raw'] & 0x0002);
  129. $thisfile_asf_filepropertiesobject['min_packet_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  130. $offset += 4;
  131. $thisfile_asf_filepropertiesobject['max_packet_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  132. $offset += 4;
  133. $thisfile_asf_filepropertiesobject['max_bitrate'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  134. $offset += 4;
  135. if ($thisfile_asf_filepropertiesobject['flags']['broadcast']) {
  136. // broadcast flag is set, some values invalid
  137. unset($thisfile_asf_filepropertiesobject['filesize']);
  138. unset($thisfile_asf_filepropertiesobject['data_packets']);
  139. unset($thisfile_asf_filepropertiesobject['play_duration']);
  140. unset($thisfile_asf_filepropertiesobject['send_duration']);
  141. unset($thisfile_asf_filepropertiesobject['min_packet_size']);
  142. unset($thisfile_asf_filepropertiesobject['max_packet_size']);
  143. } else {
  144. // broadcast flag NOT set, perform calculations
  145. $info['playtime_seconds'] = ($thisfile_asf_filepropertiesobject['play_duration'] / 10000000) - ($thisfile_asf_filepropertiesobject['preroll'] / 1000);
  146. //$info['bitrate'] = $thisfile_asf_filepropertiesobject['max_bitrate'];
  147. $info['bitrate'] = ((isset($thisfile_asf_filepropertiesobject['filesize']) ? $thisfile_asf_filepropertiesobject['filesize'] : $info['filesize']) * 8) / $info['playtime_seconds'];
  148. }
  149. break;
  150. case GETID3_ASF_Stream_Properties_Object:
  151. // Stream Properties Object: (mandatory, one per media stream)
  152. // Field Name Field Type Size (bits)
  153. // Object ID GUID 128 // GUID for stream properties object - GETID3_ASF_Stream_Properties_Object
  154. // Object Size QWORD 64 // size of stream properties object, including 78 bytes of Stream Properties Object header
  155. // Stream Type GUID 128 // GETID3_ASF_Audio_Media, GETID3_ASF_Video_Media or GETID3_ASF_Command_Media
  156. // Error Correction Type GUID 128 // GETID3_ASF_Audio_Spread for audio-only streams, GETID3_ASF_No_Error_Correction for other stream types
  157. // Time Offset QWORD 64 // 100-nanosecond units. typically zero. added to all timestamps of samples in the stream
  158. // Type-Specific Data Length DWORD 32 // number of bytes for Type-Specific Data field
  159. // Error Correction Data Length DWORD 32 // number of bytes for Error Correction Data field
  160. // Flags WORD 16 //
  161. // * Stream Number bits 7 (0x007F) // number of this stream. 1 <= valid <= 127
  162. // * Reserved bits 8 (0x7F80) // reserved - set to zero
  163. // * Encrypted Content Flag bits 1 (0x8000) // stream contents encrypted if set
  164. // Reserved DWORD 32 // reserved - set to zero
  165. // Type-Specific Data BYTESTREAM variable // type-specific format data, depending on value of Stream Type
  166. // Error Correction Data BYTESTREAM variable // error-correction-specific format data, depending on value of Error Correct Type
  167. // There is one GETID3_ASF_Stream_Properties_Object for each stream (audio, video) but the
  168. // stream number isn't known until halfway through decoding the structure, hence it
  169. // it is decoded to a temporary variable and then stuck in the appropriate index later
  170. $StreamPropertiesObjectData['offset'] = $NextObjectOffset + $offset;
  171. $StreamPropertiesObjectData['objectid'] = $NextObjectGUID;
  172. $StreamPropertiesObjectData['objectid_guid'] = $NextObjectGUIDtext;
  173. $StreamPropertiesObjectData['objectsize'] = $NextObjectSize;
  174. $StreamPropertiesObjectData['stream_type'] = substr($ASFHeaderData, $offset, 16);
  175. $offset += 16;
  176. $StreamPropertiesObjectData['stream_type_guid'] = $this->BytestringToGUID($StreamPropertiesObjectData['stream_type']);
  177. $StreamPropertiesObjectData['error_correct_type'] = substr($ASFHeaderData, $offset, 16);
  178. $offset += 16;
  179. $StreamPropertiesObjectData['error_correct_guid'] = $this->BytestringToGUID($StreamPropertiesObjectData['error_correct_type']);
  180. $StreamPropertiesObjectData['time_offset'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  181. $offset += 8;
  182. $StreamPropertiesObjectData['type_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  183. $offset += 4;
  184. $StreamPropertiesObjectData['error_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  185. $offset += 4;
  186. $StreamPropertiesObjectData['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  187. $offset += 2;
  188. $StreamPropertiesObjectStreamNumber = $StreamPropertiesObjectData['flags_raw'] & 0x007F;
  189. $StreamPropertiesObjectData['flags']['encrypted'] = (bool) ($StreamPropertiesObjectData['flags_raw'] & 0x8000);
  190. $offset += 4; // reserved - DWORD
  191. $StreamPropertiesObjectData['type_specific_data'] = substr($ASFHeaderData, $offset, $StreamPropertiesObjectData['type_data_length']);
  192. $offset += $StreamPropertiesObjectData['type_data_length'];
  193. $StreamPropertiesObjectData['error_correct_data'] = substr($ASFHeaderData, $offset, $StreamPropertiesObjectData['error_data_length']);
  194. $offset += $StreamPropertiesObjectData['error_data_length'];
  195. switch ($StreamPropertiesObjectData['stream_type']) {
  196. case GETID3_ASF_Audio_Media:
  197. $thisfile_audio['dataformat'] = (!empty($thisfile_audio['dataformat']) ? $thisfile_audio['dataformat'] : 'asf');
  198. $thisfile_audio['bitrate_mode'] = (!empty($thisfile_audio['bitrate_mode']) ? $thisfile_audio['bitrate_mode'] : 'cbr');
  199. $audiodata = getid3_riff::RIFFparseWAVEFORMATex(substr($StreamPropertiesObjectData['type_specific_data'], 0, 16));
  200. unset($audiodata['raw']);
  201. $thisfile_audio = getid3_lib::array_merge_noclobber($audiodata, $thisfile_audio);
  202. break;
  203. case GETID3_ASF_Video_Media:
  204. $thisfile_video['dataformat'] = (!empty($thisfile_video['dataformat']) ? $thisfile_video['dataformat'] : 'asf');
  205. $thisfile_video['bitrate_mode'] = (!empty($thisfile_video['bitrate_mode']) ? $thisfile_video['bitrate_mode'] : 'cbr');
  206. break;
  207. case GETID3_ASF_Command_Media:
  208. default:
  209. // do nothing
  210. break;
  211. }
  212. $thisfile_asf['stream_properties_object'][$StreamPropertiesObjectStreamNumber] = $StreamPropertiesObjectData;
  213. unset($StreamPropertiesObjectData); // clear for next stream, if any
  214. break;
  215. case GETID3_ASF_Header_Extension_Object:
  216. // Header Extension Object: (mandatory, one only)
  217. // Field Name Field Type Size (bits)
  218. // Object ID GUID 128 // GUID for Header Extension object - GETID3_ASF_Header_Extension_Object
  219. // Object Size QWORD 64 // size of Header Extension object, including 46 bytes of Header Extension Object header
  220. // Reserved Field 1 GUID 128 // hardcoded: GETID3_ASF_Reserved_1
  221. // Reserved Field 2 WORD 16 // hardcoded: 0x00000006
  222. // Header Extension Data Size DWORD 32 // in bytes. valid: 0, or > 24. equals object size minus 46
  223. // Header Extension Data BYTESTREAM variable // array of zero or more extended header objects
  224. // shortcut
  225. $thisfile_asf['header_extension_object'] = array();
  226. $thisfile_asf_headerextensionobject = &$thisfile_asf['header_extension_object'];
  227. $thisfile_asf_headerextensionobject['offset'] = $NextObjectOffset + $offset;
  228. $thisfile_asf_headerextensionobject['objectid'] = $NextObjectGUID;
  229. $thisfile_asf_headerextensionobject['objectid_guid'] = $NextObjectGUIDtext;
  230. $thisfile_asf_headerextensionobject['objectsize'] = $NextObjectSize;
  231. $thisfile_asf_headerextensionobject['reserved_1'] = substr($ASFHeaderData, $offset, 16);
  232. $offset += 16;
  233. $thisfile_asf_headerextensionobject['reserved_1_guid'] = $this->BytestringToGUID($thisfile_asf_headerextensionobject['reserved_1']);
  234. if ($thisfile_asf_headerextensionobject['reserved_1'] != GETID3_ASF_Reserved_1) {
  235. $info['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).')';
  236. //return false;
  237. break;
  238. }
  239. $thisfile_asf_headerextensionobject['reserved_2'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  240. $offset += 2;
  241. if ($thisfile_asf_headerextensionobject['reserved_2'] != 6) {
  242. $info['warning'][] = 'header_extension_object.reserved_2 ('.getid3_lib::PrintHexBytes($thisfile_asf_headerextensionobject['reserved_2']).') does not match expected value of "6"';
  243. //return false;
  244. break;
  245. }
  246. $thisfile_asf_headerextensionobject['extension_data_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  247. $offset += 4;
  248. $thisfile_asf_headerextensionobject['extension_data'] = substr($ASFHeaderData, $offset, $thisfile_asf_headerextensionobject['extension_data_size']);
  249. $unhandled_sections = 0;
  250. $thisfile_asf_headerextensionobject['extension_data_parsed'] = $this->ASF_HeaderExtensionObjectDataParse($thisfile_asf_headerextensionobject['extension_data'], $unhandled_sections);
  251. if ($unhandled_sections === 0) {
  252. unset($thisfile_asf_headerextensionobject['extension_data']);
  253. }
  254. $offset += $thisfile_asf_headerextensionobject['extension_data_size'];
  255. break;
  256. case GETID3_ASF_Codec_List_Object:
  257. // Codec List Object: (optional, one only)
  258. // Field Name Field Type Size (bits)
  259. // Object ID GUID 128 // GUID for Codec List object - GETID3_ASF_Codec_List_Object
  260. // Object Size QWORD 64 // size of Codec List object, including 44 bytes of Codec List Object header
  261. // Reserved GUID 128 // hardcoded: 86D15241-311D-11D0-A3A4-00A0C90348F6
  262. // Codec Entries Count DWORD 32 // number of entries in Codec Entries array
  263. // Codec Entries array of: variable //
  264. // * Type WORD 16 // 0x0001 = Video Codec, 0x0002 = Audio Codec, 0xFFFF = Unknown Codec
  265. // * Codec Name Length WORD 16 // number of Unicode characters stored in the Codec Name field
  266. // * Codec Name WCHAR variable // array of Unicode characters - name of codec used to create the content
  267. // * Codec Description Length WORD 16 // number of Unicode characters stored in the Codec Description field
  268. // * Codec Description WCHAR variable // array of Unicode characters - description of format used to create the content
  269. // * Codec Information Length WORD 16 // number of Unicode characters stored in the Codec Information field
  270. // * Codec Information BYTESTREAM variable // opaque array of information bytes about the codec used to create the content
  271. // shortcut
  272. $thisfile_asf['codec_list_object'] = array();
  273. $thisfile_asf_codeclistobject = &$thisfile_asf['codec_list_object'];
  274. $thisfile_asf_codeclistobject['offset'] = $NextObjectOffset + $offset;
  275. $thisfile_asf_codeclistobject['objectid'] = $NextObjectGUID;
  276. $thisfile_asf_codeclistobject['objectid_guid'] = $NextObjectGUIDtext;
  277. $thisfile_asf_codeclistobject['objectsize'] = $NextObjectSize;
  278. $thisfile_asf_codeclistobject['reserved'] = substr($ASFHeaderData, $offset, 16);
  279. $offset += 16;
  280. $thisfile_asf_codeclistobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_codeclistobject['reserved']);
  281. if ($thisfile_asf_codeclistobject['reserved'] != $this->GUIDtoBytestring('86D15241-311D-11D0-A3A4-00A0C90348F6')) {
  282. $info['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}';
  283. //return false;
  284. break;
  285. }
  286. $thisfile_asf_codeclistobject['codec_entries_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  287. $offset += 4;
  288. for ($CodecEntryCounter = 0; $CodecEntryCounter < $thisfile_asf_codeclistobject['codec_entries_count']; $CodecEntryCounter++) {
  289. // shortcut
  290. $thisfile_asf_codeclistobject['codec_entries'][$CodecEntryCounter] = array();
  291. $thisfile_asf_codeclistobject_codecentries_current = &$thisfile_asf_codeclistobject['codec_entries'][$CodecEntryCounter];
  292. $thisfile_asf_codeclistobject_codecentries_current['type_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  293. $offset += 2;
  294. $thisfile_asf_codeclistobject_codecentries_current['type'] = $this->ASFCodecListObjectTypeLookup($thisfile_asf_codeclistobject_codecentries_current['type_raw']);
  295. $CodecNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2; // 2 bytes per character
  296. $offset += 2;
  297. $thisfile_asf_codeclistobject_codecentries_current['name'] = substr($ASFHeaderData, $offset, $CodecNameLength);
  298. $offset += $CodecNameLength;
  299. $CodecDescriptionLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2; // 2 bytes per character
  300. $offset += 2;
  301. $thisfile_asf_codeclistobject_codecentries_current['description'] = substr($ASFHeaderData, $offset, $CodecDescriptionLength);
  302. $offset += $CodecDescriptionLength;
  303. $CodecInformationLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  304. $offset += 2;
  305. $thisfile_asf_codeclistobject_codecentries_current['information'] = substr($ASFHeaderData, $offset, $CodecInformationLength);
  306. $offset += $CodecInformationLength;
  307. if ($thisfile_asf_codeclistobject_codecentries_current['type_raw'] == 2) { // audio codec
  308. if (strpos($thisfile_asf_codeclistobject_codecentries_current['description'], ',') === false) {
  309. $info['warning'][] = '[asf][codec_list_object][codec_entries]['.$CodecEntryCounter.'][description] expected to contain comma-seperated list of parameters: "'.$thisfile_asf_codeclistobject_codecentries_current['description'].'"';
  310. } else {
  311. list($AudioCodecBitrate, $AudioCodecFrequency, $AudioCodecChannels) = explode(',', $this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['description']));
  312. $thisfile_audio['codec'] = $this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['name']);
  313. if (!isset($thisfile_audio['bitrate']) && strstr($AudioCodecBitrate, 'kbps')) {
  314. $thisfile_audio['bitrate'] = (int) (trim(str_replace('kbps', '', $AudioCodecBitrate)) * 1000);
  315. }
  316. //if (!isset($thisfile_video['bitrate']) && isset($thisfile_audio['bitrate']) && isset($thisfile_asf['file_properties_object']['max_bitrate']) && ($thisfile_asf_codeclistobject['codec_entries_count'] > 1)) {
  317. if (empty($thisfile_video['bitrate']) && !empty($thisfile_audio['bitrate']) && !empty($info['bitrate'])) {
  318. //$thisfile_video['bitrate'] = $thisfile_asf['file_properties_object']['max_bitrate'] - $thisfile_audio['bitrate'];
  319. $thisfile_video['bitrate'] = $info['bitrate'] - $thisfile_audio['bitrate'];
  320. }
  321. $AudioCodecFrequency = (int) trim(str_replace('kHz', '', $AudioCodecFrequency));
  322. switch ($AudioCodecFrequency) {
  323. case 8:
  324. case 8000:
  325. $thisfile_audio['sample_rate'] = 8000;
  326. break;
  327. case 11:
  328. case 11025:
  329. $thisfile_audio['sample_rate'] = 11025;
  330. break;
  331. case 12:
  332. case 12000:
  333. $thisfile_audio['sample_rate'] = 12000;
  334. break;
  335. case 16:
  336. case 16000:
  337. $thisfile_audio['sample_rate'] = 16000;
  338. break;
  339. case 22:
  340. case 22050:
  341. $thisfile_audio['sample_rate'] = 22050;
  342. break;
  343. case 24:
  344. case 24000:
  345. $thisfile_audio['sample_rate'] = 24000;
  346. break;
  347. case 32:
  348. case 32000:
  349. $thisfile_audio['sample_rate'] = 32000;
  350. break;
  351. case 44:
  352. case 441000:
  353. $thisfile_audio['sample_rate'] = 44100;
  354. break;
  355. case 48:
  356. case 48000:
  357. $thisfile_audio['sample_rate'] = 48000;
  358. break;
  359. default:
  360. $info['warning'][] = 'unknown frequency: "'.$AudioCodecFrequency.'" ('.$this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['description']).')';
  361. break;
  362. }
  363. if (!isset($thisfile_audio['channels'])) {
  364. if (strstr($AudioCodecChannels, 'stereo')) {
  365. $thisfile_audio['channels'] = 2;
  366. } elseif (strstr($AudioCodecChannels, 'mono')) {
  367. $thisfile_audio['channels'] = 1;
  368. }
  369. }
  370. }
  371. }
  372. }
  373. break;
  374. case GETID3_ASF_Script_Command_Object:
  375. // Script Command Object: (optional, one only)
  376. // Field Name Field Type Size (bits)
  377. // Object ID GUID 128 // GUID for Script Command object - GETID3_ASF_Script_Command_Object
  378. // Object Size QWORD 64 // size of Script Command object, including 44 bytes of Script Command Object header
  379. // Reserved GUID 128 // hardcoded: 4B1ACBE3-100B-11D0-A39B-00A0C90348F6
  380. // Commands Count WORD 16 // number of Commands structures in the Script Commands Objects
  381. // Command Types Count WORD 16 // number of Command Types structures in the Script Commands Objects
  382. // Command Types array of: variable //
  383. // * Command Type Name Length WORD 16 // number of Unicode characters for Command Type Name
  384. // * Command Type Name WCHAR variable // array of Unicode characters - name of a type of command
  385. // Commands array of: variable //
  386. // * Presentation Time DWORD 32 // presentation time of that command, in milliseconds
  387. // * Type Index WORD 16 // type of this command, as a zero-based index into the array of Command Types of this object
  388. // * Command Name Length WORD 16 // number of Unicode characters for Command Name
  389. // * Command Name WCHAR variable // array of Unicode characters - name of this command
  390. // shortcut
  391. $thisfile_asf['script_command_object'] = array();
  392. $thisfile_asf_scriptcommandobject = &$thisfile_asf['script_command_object'];
  393. $thisfile_asf_scriptcommandobject['offset'] = $NextObjectOffset + $offset;
  394. $thisfile_asf_scriptcommandobject['objectid'] = $NextObjectGUID;
  395. $thisfile_asf_scriptcommandobject['objectid_guid'] = $NextObjectGUIDtext;
  396. $thisfile_asf_scriptcommandobject['objectsize'] = $NextObjectSize;
  397. $thisfile_asf_scriptcommandobject['reserved'] = substr($ASFHeaderData, $offset, 16);
  398. $offset += 16;
  399. $thisfile_asf_scriptcommandobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_scriptcommandobject['reserved']);
  400. if ($thisfile_asf_scriptcommandobject['reserved'] != $this->GUIDtoBytestring('4B1ACBE3-100B-11D0-A39B-00A0C90348F6')) {
  401. $info['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}';
  402. //return false;
  403. break;
  404. }
  405. $thisfile_asf_scriptcommandobject['commands_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  406. $offset += 2;
  407. $thisfile_asf_scriptcommandobject['command_types_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  408. $offset += 2;
  409. for ($CommandTypesCounter = 0; $CommandTypesCounter < $thisfile_asf_scriptcommandobject['command_types_count']; $CommandTypesCounter++) {
  410. $CommandTypeNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2; // 2 bytes per character
  411. $offset += 2;
  412. $thisfile_asf_scriptcommandobject['command_types'][$CommandTypesCounter]['name'] = substr($ASFHeaderData, $offset, $CommandTypeNameLength);
  413. $offset += $CommandTypeNameLength;
  414. }
  415. for ($CommandsCounter = 0; $CommandsCounter < $thisfile_asf_scriptcommandobject['commands_count']; $CommandsCounter++) {
  416. $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['presentation_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  417. $offset += 4;
  418. $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['type_index'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  419. $offset += 2;
  420. $CommandTypeNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2; // 2 bytes per character
  421. $offset += 2;
  422. $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['name'] = substr($ASFHeaderData, $offset, $CommandTypeNameLength);
  423. $offset += $CommandTypeNameLength;
  424. }
  425. break;
  426. case GETID3_ASF_Marker_Object:
  427. // Marker Object: (optional, one only)
  428. // Field Name Field Type Size (bits)
  429. // Object ID GUID 128 // GUID for Marker object - GETID3_ASF_Marker_Object
  430. // Object Size QWORD 64 // size of Marker object, including 48 bytes of Marker Object header
  431. // Reserved GUID 128 // hardcoded: 4CFEDB20-75F6-11CF-9C0F-00A0C90349CB
  432. // Markers Count DWORD 32 // number of Marker structures in Marker Object
  433. // Reserved WORD 16 // hardcoded: 0x0000
  434. // Name Length WORD 16 // number of bytes in the Name field
  435. // Name WCHAR variable // name of the Marker Object
  436. // Markers array of: variable //
  437. // * Offset QWORD 64 // byte offset into Data Object
  438. // * Presentation Time QWORD 64 // in 100-nanosecond units
  439. // * Entry Length WORD 16 // length in bytes of (Send Time + Flags + Marker Description Length + Marker Description + Padding)
  440. // * Send Time DWORD 32 // in milliseconds
  441. // * Flags DWORD 32 // hardcoded: 0x00000000
  442. // * Marker Description Length DWORD 32 // number of bytes in Marker Description field
  443. // * Marker Description WCHAR variable // array of Unicode characters - description of marker entry
  444. // * Padding BYTESTREAM variable // optional padding bytes
  445. // shortcut
  446. $thisfile_asf['marker_object'] = array();
  447. $thisfile_asf_markerobject = &$thisfile_asf['marker_object'];
  448. $thisfile_asf_markerobject['offset'] = $NextObjectOffset + $offset;
  449. $thisfile_asf_markerobject['objectid'] = $NextObjectGUID;
  450. $thisfile_asf_markerobject['objectid_guid'] = $NextObjectGUIDtext;
  451. $thisfile_asf_markerobject['objectsize'] = $NextObjectSize;
  452. $thisfile_asf_markerobject['reserved'] = substr($ASFHeaderData, $offset, 16);
  453. $offset += 16;
  454. $thisfile_asf_markerobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_markerobject['reserved']);
  455. if ($thisfile_asf_markerobject['reserved'] != $this->GUIDtoBytestring('4CFEDB20-75F6-11CF-9C0F-00A0C90349CB')) {
  456. $info['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}';
  457. break;
  458. }
  459. $thisfile_asf_markerobject['markers_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  460. $offset += 4;
  461. $thisfile_asf_markerobject['reserved_2'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  462. $offset += 2;
  463. if ($thisfile_asf_markerobject['reserved_2'] != 0) {
  464. $info['warning'][] = 'marker_object.reserved_2 ('.getid3_lib::PrintHexBytes($thisfile_asf_markerobject['reserved_2']).') does not match expected value of "0"';
  465. break;
  466. }
  467. $thisfile_asf_markerobject['name_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  468. $offset += 2;
  469. $thisfile_asf_markerobject['name'] = substr($ASFHeaderData, $offset, $thisfile_asf_markerobject['name_length']);
  470. $offset += $thisfile_asf_markerobject['name_length'];
  471. for ($MarkersCounter = 0; $MarkersCounter < $thisfile_asf_markerobject['markers_count']; $MarkersCounter++) {
  472. $thisfile_asf_markerobject['markers'][$MarkersCounter]['offset'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  473. $offset += 8;
  474. $thisfile_asf_markerobject['markers'][$MarkersCounter]['presentation_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8));
  475. $offset += 8;
  476. $thisfile_asf_markerobject['markers'][$MarkersCounter]['entry_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  477. $offset += 2;
  478. $thisfile_asf_markerobject['markers'][$MarkersCounter]['send_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  479. $offset += 4;
  480. $thisfile_asf_markerobject['markers'][$MarkersCounter]['flags'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  481. $offset += 4;
  482. $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  483. $offset += 4;
  484. $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description'] = substr($ASFHeaderData, $offset, $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length']);
  485. $offset += $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length'];
  486. $PaddingLength = $thisfile_asf_markerobject['markers'][$MarkersCounter]['entry_length'] - 4 - 4 - 4 - $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length'];
  487. if ($PaddingLength > 0) {
  488. $thisfile_asf_markerobject['markers'][$MarkersCounter]['padding'] = substr($ASFHeaderData, $offset, $PaddingLength);
  489. $offset += $PaddingLength;
  490. }
  491. }
  492. break;
  493. case GETID3_ASF_Bitrate_Mutual_Exclusion_Object:
  494. // Bitrate Mutual Exclusion Object: (optional)
  495. // Field Name Field Type Size (bits)
  496. // Object ID GUID 128 // GUID for Bitrate Mutual Exclusion object - GETID3_ASF_Bitrate_Mutual_Exclusion_Object
  497. // Object Size QWORD 64 // size of Bitrate Mutual Exclusion object, including 42 bytes of Bitrate Mutual Exclusion Object header
  498. // Exlusion Type GUID 128 // nature of mutual exclusion relationship. one of: (GETID3_ASF_Mutex_Bitrate, GETID3_ASF_Mutex_Unknown)
  499. // Stream Numbers Count WORD 16 // number of video streams
  500. // Stream Numbers WORD variable // array of mutually exclusive video stream numbers. 1 <= valid <= 127
  501. // shortcut
  502. $thisfile_asf['bitrate_mutual_exclusion_object'] = array();
  503. $thisfile_asf_bitratemutualexclusionobject = &$thisfile_asf['bitrate_mutual_exclusion_object'];
  504. $thisfile_asf_bitratemutualexclusionobject['offset'] = $NextObjectOffset + $offset;
  505. $thisfile_asf_bitratemutualexclusionobject['objectid'] = $NextObjectGUID;
  506. $thisfile_asf_bitratemutualexclusionobject['objectid_guid'] = $NextObjectGUIDtext;
  507. $thisfile_asf_bitratemutualexclusionobject['objectsize'] = $NextObjectSize;
  508. $thisfile_asf_bitratemutualexclusionobject['reserved'] = substr($ASFHeaderData, $offset, 16);
  509. $thisfile_asf_bitratemutualexclusionobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_bitratemutualexclusionobject['reserved']);
  510. $offset += 16;
  511. if (($thisfile_asf_bitratemutualexclusionobject['reserved'] != GETID3_ASF_Mutex_Bitrate) && ($thisfile_asf_bitratemutualexclusionobject['reserved'] != GETID3_ASF_Mutex_Unknown)) {
  512. $info['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).'}';
  513. //return false;
  514. break;
  515. }
  516. $thisfile_asf_bitratemutualexclusionobject['stream_numbers_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  517. $offset += 2;
  518. for ($StreamNumberCounter = 0; $StreamNumberCounter < $thisfile_asf_bitratemutualexclusionobject['stream_numbers_count']; $StreamNumberCounter++) {
  519. $thisfile_asf_bitratemutualexclusionobject['stream_numbers'][$StreamNumberCounter] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  520. $offset += 2;
  521. }
  522. break;
  523. case GETID3_ASF_Error_Correction_Object:
  524. // Error Correction Object: (optional, one only)
  525. // Field Name Field Type Size (bits)
  526. // Object ID GUID 128 // GUID for Error Correction object - GETID3_ASF_Error_Correction_Object
  527. // Object Size QWORD 64 // size of Error Correction object, including 44 bytes of Error Correction Object header
  528. // Error Correction Type GUID 128 // type of error correction. one of: (GETID3_ASF_No_Error_Correction, GETID3_ASF_Audio_Spread)
  529. // Error Correction Data Length DWORD 32 // number of bytes in Error Correction Data field
  530. // Error Correction Data BYTESTREAM variable // structure depends on value of Error Correction Type field
  531. // shortcut
  532. $thisfile_asf['error_correction_object'] = array();
  533. $thisfile_asf_errorcorrectionobject = &$thisfile_asf['error_correction_object'];
  534. $thisfile_asf_errorcorrectionobject['offset'] = $NextObjectOffset + $offset;
  535. $thisfile_asf_errorcorrectionobject['objectid'] = $NextObjectGUID;
  536. $thisfile_asf_errorcorrectionobject['objectid_guid'] = $NextObjectGUIDtext;
  537. $thisfile_asf_errorcorrectionobject['objectsize'] = $NextObjectSize;
  538. $thisfile_asf_errorcorrectionobject['error_correction_type'] = substr($ASFHeaderData, $offset, 16);
  539. $offset += 16;
  540. $thisfile_asf_errorcorrectionobject['error_correction_guid'] = $this->BytestringToGUID($thisfile_asf_errorcorrectionobject['error_correction_type']);
  541. $thisfile_asf_errorcorrectionobject['error_correction_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  542. $offset += 4;
  543. switch ($thisfile_asf_errorcorrectionobject['error_correction_type']) {
  544. case GETID3_ASF_No_Error_Correction:
  545. // should be no data, but just in case there is, skip to the end of the field
  546. $offset += $thisfile_asf_errorcorrectionobject['error_correction_data_length'];
  547. break;
  548. case GETID3_ASF_Audio_Spread:
  549. // Field Name Field Type Size (bits)
  550. // Span BYTE 8 // number of packets over which audio will be spread.
  551. // Virtual Packet Length WORD 16 // size of largest audio payload found in audio stream
  552. // Virtual Chunk Length WORD 16 // size of largest audio payload found in audio stream
  553. // Silence Data Length WORD 16 // number of bytes in Silence Data field
  554. // Silence Data BYTESTREAM variable // hardcoded: 0x00 * (Silence Data Length) bytes
  555. $thisfile_asf_errorcorrectionobject['span'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 1));
  556. $offset += 1;
  557. $thisfile_asf_errorcorrectionobject['virtual_packet_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  558. $offset += 2;
  559. $thisfile_asf_errorcorrectionobject['virtual_chunk_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  560. $offset += 2;
  561. $thisfile_asf_errorcorrectionobject['silence_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  562. $offset += 2;
  563. $thisfile_asf_errorcorrectionobject['silence_data'] = substr($ASFHeaderData, $offset, $thisfile_asf_errorcorrectionobject['silence_data_length']);
  564. $offset += $thisfile_asf_errorcorrectionobject['silence_data_length'];
  565. break;
  566. default:
  567. $info['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).'}';
  568. //return false;
  569. break;
  570. }
  571. break;
  572. case GETID3_ASF_Content_Description_Object:
  573. // Content Description Object: (optional, one only)
  574. // Field Name Field Type Size (bits)
  575. // Object ID GUID 128 // GUID for Content Description object - GETID3_ASF_Content_Description_Object
  576. // Object Size QWORD 64 // size of Content Description object, including 34 bytes of Content Description Object header
  577. // Title Length WORD 16 // number of bytes in Title field
  578. // Author Length WORD 16 // number of bytes in Author field
  579. // Copyright Length WORD 16 // number of bytes in Copyright field
  580. // Description Length WORD 16 // number of bytes in Description field
  581. // Rating Length WORD 16 // number of bytes in Rating field
  582. // Title WCHAR 16 // array of Unicode characters - Title
  583. // Author WCHAR 16 // array of Unicode characters - Author
  584. // Copyright WCHAR 16 // array of Unicode characters - Copyright
  585. // Description WCHAR 16 // array of Unicode characters - Description
  586. // Rating WCHAR 16 // array of Unicode characters - Rating
  587. // shortcut
  588. $thisfile_asf['content_description_object'] = array();
  589. $thisfile_asf_contentdescriptionobject = &$thisfile_asf['content_description_object'];
  590. $thisfile_asf_contentdescriptionobject['offset'] = $NextObjectOffset + $offset;
  591. $thisfile_asf_contentdescriptionobject['objectid'] = $NextObjectGUID;
  592. $thisfile_asf_contentdescriptionobject['objectid_guid'] = $NextObjectGUIDtext;
  593. $thisfile_asf_contentdescriptionobject['objectsize'] = $NextObjectSize;
  594. $thisfile_asf_contentdescriptionobject['title_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  595. $offset += 2;
  596. $thisfile_asf_contentdescriptionobject['author_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  597. $offset += 2;
  598. $thisfile_asf_contentdescriptionobject['copyright_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  599. $offset += 2;
  600. $thisfile_asf_contentdescriptionobject['description_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  601. $offset += 2;
  602. $thisfile_asf_contentdescriptionobject['rating_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  603. $offset += 2;
  604. $thisfile_asf_contentdescriptionobject['title'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['title_length']);
  605. $offset += $thisfile_asf_contentdescriptionobject['title_length'];
  606. $thisfile_asf_contentdescriptionobject['author'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['author_length']);
  607. $offset += $thisfile_asf_contentdescriptionobject['author_length'];
  608. $thisfile_asf_contentdescriptionobject['copyright'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['copyright_length']);
  609. $offset += $thisfile_asf_contentdescriptionobject['copyright_length'];
  610. $thisfile_asf_contentdescriptionobject['description'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['description_length']);
  611. $offset += $thisfile_asf_contentdescriptionobject['description_length'];
  612. $thisfile_asf_contentdescriptionobject['rating'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['rating_length']);
  613. $offset += $thisfile_asf_contentdescriptionobject['rating_length'];
  614. $ASFcommentKeysToCopy = array('title'=>'title', 'author'=>'artist', 'copyright'=>'copyright', 'description'=>'comment', 'rating'=>'rating');
  615. foreach ($ASFcommentKeysToCopy as $keytocopyfrom => $keytocopyto) {
  616. if (!empty($thisfile_asf_contentdescriptionobject[$keytocopyfrom])) {
  617. $thisfile_asf_comments[$keytocopyto][] = $this->TrimTerm($thisfile_asf_contentdescriptionobject[$keytocopyfrom]);
  618. }
  619. }
  620. break;
  621. case GETID3_ASF_Extended_Content_Description_Object:
  622. // Extended Content Description Object: (optional, one only)
  623. // Field Name Field Type Size (bits)
  624. // Object ID GUID 128 // GUID for Extended Content Description object - GETID3_ASF_Extended_Content_Description_Object
  625. // Object Size QWORD 64 // size of ExtendedContent Description object, including 26 bytes of Extended Content Description Object header
  626. // Content Descriptors Count WORD 16 // number of entries in Content Descriptors list
  627. // Content Descriptors array of: variable //
  628. // * Descriptor Name Length WORD 16 // size in bytes of Descriptor Name field
  629. // * Descriptor Name WCHAR variable // array of Unicode characters - Descriptor Name
  630. // * Descriptor Value Data Type WORD 16 // Lookup array:
  631. // 0x0000 = Unicode String (variable length)
  632. // 0x0001 = BYTE array (variable length)
  633. // 0x0002 = BOOL (DWORD, 32 bits)
  634. // 0x0003 = DWORD (DWORD, 32 bits)
  635. // 0x0004 = QWORD (QWORD, 64 bits)
  636. // 0x0005 = WORD (WORD, 16 bits)
  637. // * Descriptor Value Length WORD 16 // number of bytes stored in Descriptor Value field
  638. // * Descriptor Value variable variable // value for Content Descriptor
  639. // shortcut
  640. $thisfile_asf['extended_content_description_object'] = array();
  641. $thisfile_asf_extendedcontentdescriptionobject = &$thisfile_asf['extended_content_description_object'];
  642. $thisfile_asf_extendedcontentdescriptionobject['offset'] = $NextObjectOffset + $offset;
  643. $thisfile_asf_extendedcontentdescriptionobject['objectid'] = $NextObjectGUID;
  644. $thisfile_asf_extendedcontentdescriptionobject['objectid_guid'] = $NextObjectGUIDtext;
  645. $thisfile_asf_extendedcontentdescriptionobject['objectsize'] = $NextObjectSize;
  646. $thisfile_asf_extendedcontentdescriptionobject['content_descriptors_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  647. $offset += 2;
  648. for ($ExtendedContentDescriptorsCounter = 0; $ExtendedContentDescriptorsCounter < $thisfile_asf_extendedcontentdescriptionobject['content_descriptors_count']; $ExtendedContentDescriptorsCounter++) {
  649. // shortcut
  650. $thisfile_asf_extendedcontentdescriptionobject['content_descriptors'][$ExtendedContentDescriptorsCounter] = array();
  651. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current = &$thisfile_asf_extendedcontentdescriptionobject['content_descriptors'][$ExtendedContentDescriptorsCounter];
  652. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['base_offset'] = $offset + 30;
  653. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  654. $offset += 2;
  655. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name'] = substr($ASFHeaderData, $offset, $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length']);
  656. $offset += $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length'];
  657. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  658. $offset += 2;
  659. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  660. $offset += 2;
  661. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = substr($ASFHeaderData, $offset, $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length']);
  662. $offset += $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length'];
  663. switch ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type']) {
  664. case 0x0000: // Unicode string
  665. break;
  666. case 0x0001: // BYTE array
  667. // do nothing
  668. break;
  669. case 0x0002: // BOOL
  670. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = (bool) getid3_lib::LittleEndian2Int($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
  671. break;
  672. case 0x0003: // DWORD
  673. case 0x0004: // QWORD
  674. case 0x0005: // WORD
  675. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = getid3_lib::LittleEndian2Int($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
  676. break;
  677. default:
  678. $info['warning'][] = 'extended_content_description.content_descriptors.'.$ExtendedContentDescriptorsCounter.'.value_type is invalid ('.$thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type'].')';
  679. //return false;
  680. break;
  681. }
  682. switch ($this->TrimConvert(strtolower($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name']))) {
  683. case 'wm/albumartist':
  684. case 'artist':
  685. // Note: not 'artist', that comes from 'author' tag
  686. $thisfile_asf_comments['albumartist'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  687. break;
  688. case 'wm/albumtitle':
  689. case 'album':
  690. $thisfile_asf_comments['album'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  691. break;
  692. case 'wm/genre':
  693. case 'genre':
  694. $thisfile_asf_comments['genre'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  695. break;
  696. case 'wm/partofset':
  697. $thisfile_asf_comments['partofset'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  698. break;
  699. case 'wm/tracknumber':
  700. case 'tracknumber':
  701. // be careful casting to int: casting unicode strings to int gives unexpected results (stops parsing at first non-numeric character)
  702. $thisfile_asf_comments['track'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  703. foreach ($thisfile_asf_comments['track'] as $key => $value) {
  704. if (preg_match('/^[0-9\x00]+$/', $value)) {
  705. $thisfile_asf_comments['track'][$key] = intval(str_replace("\x00", '', $value));
  706. }
  707. }
  708. break;
  709. case 'wm/track':
  710. if (empty($thisfile_asf_comments['track'])) {
  711. $thisfile_asf_comments['track'] = array(1 + $this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  712. }
  713. break;
  714. case 'wm/year':
  715. case 'year':
  716. case 'date':
  717. $thisfile_asf_comments['year'] = array( $this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  718. break;
  719. case 'wm/lyrics':
  720. case 'lyrics':
  721. $thisfile_asf_comments['lyrics'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  722. break;
  723. case 'isvbr':
  724. if ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']) {
  725. $thisfile_audio['bitrate_mode'] = 'vbr';
  726. $thisfile_video['bitrate_mode'] = 'vbr';
  727. }
  728. break;
  729. case 'id3':
  730. // id3v2 module might not be loaded
  731. if (class_exists('getid3_id3v2')) {
  732. $tempfile = tempnam(GETID3_TEMP_DIR, 'getID3');
  733. $tempfilehandle = fopen($tempfile, 'wb');
  734. $tempThisfileInfo = array('encoding'=>$info['encoding']);
  735. fwrite($tempfilehandle, $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
  736. fclose($tempfilehandle);
  737. $getid3_temp = new getID3();
  738. $getid3_temp->openfile($tempfile);
  739. $getid3_id3v2 = new getid3_id3v2($getid3_temp);
  740. $getid3_id3v2->Analyze();
  741. $info['id3v2'] = $getid3_temp->info['id3v2'];
  742. unset($getid3_temp, $getid3_id3v2);
  743. unlink($tempfile);
  744. }
  745. break;
  746. case 'wm/encodingtime':
  747. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['encoding_time_unix'] = $this->FILETIMEtoUNIXtime($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
  748. $thisfile_asf_comments['encoding_time_unix'] = array($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['encoding_time_unix']);
  749. break;
  750. case 'wm/picture':
  751. $WMpicture = $this->ASF_WMpicture($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
  752. foreach ($WMpicture as $key => $value) {
  753. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current[$key] = $value;
  754. }
  755. unset($WMpicture);
  756. /*
  757. $wm_picture_offset = 0;
  758. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type_id'] = getid3_lib::LittleEndian2Int(substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 1));
  759. $wm_picture_offset += 1;
  760. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type'] = $this->WMpictureTypeLookup($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type_id']);
  761. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_size'] = getid3_lib::LittleEndian2Int(substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 4));
  762. $wm_picture_offset += 4;
  763. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] = '';
  764. do {
  765. $next_byte_pair = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 2);
  766. $wm_picture_offset += 2;
  767. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] .= $next_byte_pair;
  768. } while ($next_byte_pair !== "\x00\x00");
  769. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_description'] = '';
  770. do {
  771. $next_byte_pair = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 2);
  772. $wm_picture_offset += 2;
  773. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_description'] .= $next_byte_pair;
  774. } while ($next_byte_pair !== "\x00\x00");
  775. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['dataoffset'] = $wm_picture_offset;
  776. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['data'] = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset);
  777. unset($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']);
  778. $imageinfo = array();
  779. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] = '';
  780. $imagechunkcheck = getid3_lib::GetDataImageSize($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['data'], $imageinfo);
  781. unset($imageinfo);
  782. if (!empty($imagechunkcheck)) {
  783. $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] = image_type_to_mime_type($imagechunkcheck[2]);
  784. }
  785. if (!isset($thisfile_asf_comments['picture'])) {
  786. $thisfile_asf_comments['picture'] = array();
  787. }
  788. $thisfile_asf_comments['picture'][] = array('data'=>$thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['data'], 'image_mime'=>$thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime']);
  789. */
  790. break;
  791. default:
  792. switch ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type']) {
  793. case 0: // Unicode string
  794. if (substr($this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name']), 0, 3) == 'WM/') {
  795. $thisfile_asf_comments[str_replace('wm/', '', strtolower($this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name'])))] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']));
  796. }
  797. break;
  798. case 1:
  799. break;
  800. }
  801. break;
  802. }
  803. }
  804. break;
  805. case GETID3_ASF_Stream_Bitrate_Properties_Object:
  806. // Stream Bitrate Properties Object: (optional, one only)
  807. // Field Name Field Type Size (bits)
  808. // Object ID GUID 128 // GUID for Stream Bitrate Properties object - GETID3_ASF_Stream_Bitrate_Properties_Object
  809. // Object Size QWORD 64 // size of Extended Content Description object, including 26 bytes of Stream Bitrate Properties Object header
  810. // Bitrate Records Count WORD 16 // number of records in Bitrate Records
  811. // Bitrate Records array of: variable //
  812. // * Flags WORD 16 //
  813. // * * Stream Number bits 7 (0x007F) // number of this stream
  814. // * * Reserved bits 9 (0xFF80) // hardcoded: 0
  815. // * Average Bitrate DWORD 32 // in bits per second
  816. // shortcut
  817. $thisfile_asf['stream_bitrate_properties_object'] = array();
  818. $thisfile_asf_streambitratepropertiesobject = &$thisfile_asf['stream_bitrate_properties_object'];
  819. $thisfile_asf_streambitratepropertiesobject['offset'] = $NextObjectOffset + $offset;
  820. $thisfile_asf_streambitratepropertiesobject['objectid'] = $NextObjectGUID;
  821. $thisfile_asf_streambitratepropertiesobject['objectid_guid'] = $NextObjectGUIDtext;
  822. $thisfile_asf_streambitratepropertiesobject['objectsize'] = $NextObjectSize;
  823. $thisfile_asf_streambitratepropertiesobject['bitrate_records_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  824. $offset += 2;
  825. for ($BitrateRecordsCounter = 0; $BitrateRecordsCounter < $thisfile_asf_streambitratepropertiesobject['bitrate_records_count']; $BitrateRecordsCounter++) {
  826. $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2));
  827. $offset += 2;
  828. $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['flags']['stream_number'] = $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['flags_raw'] & 0x007F;
  829. $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['bitrate'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4));
  830. $offset += 4;
  831. }
  832. break;
  833. case GETID3_ASF_Padding_Object:
  834. // Padding Object: (optional)
  835. // Field Name Field Type Size (bits)
  836. // Object ID GUID 128 // GUID for Padding object - GETID3_ASF_Padding_Object
  837. // Object Size QWORD 64 // size of Padding object, including 24 bytes of ASF Padding Object header
  838. // Padding Data BYTESTREAM variable // ignore
  839. // shortcut
  840. $thisfile_asf['padding_object'] = array();
  841. $thisfile_asf_paddingobject = &$thisfile_asf['padding_object'];
  842. $thisfile_asf_paddingobject['offset'] = $NextObjectOffset + $offset;
  843. $thisfile_asf_paddingobject['objectid'] = $NextObjectGUID;
  844. $thisfile_asf_paddingobject['objectid_guid'] = $NextObjectGUIDtext;
  845. $thisfile_asf_paddingobject['objectsize'] = $NextObjectSize;
  846. $thisfile_asf_paddingobject['padding_length'] = $thisfile_asf_paddingobject['objectsize'] - 16 - 8;
  847. $thisfile_asf_paddingobject['padding'] = substr($ASFHeaderData, $offset, $thisfile_asf_paddingobject['padding_length']);
  848. $offset += ($NextObjectSize - 16 - 8);
  849. break;
  850. case GETID3_ASF_Extended_Content_Encryption_Object:
  851. case GETID3_ASF_Content_Encryption_Object:
  852. // WMA DRM - just ignore
  853. $offset += ($NextObjectSize - 16 - 8);
  854. break;
  855. default:
  856. // Implementations shall ignore any standard or non-standard object that they do not know how to handle.
  857. if ($this->GUIDname($NextObjectGUIDtext)) {
  858. $info['warning'][] = 'unhandled GUID "'.$this->GUIDname($NextObjectGUIDtext).'" {'.$NextObjectGUIDtext.'} in ASF header at offset '.($offset - 16 - 8);
  859. } else {
  860. $info['warning'][] = 'unknown GUID {'.$NextObjectGUIDtext.'} in ASF header at offset '.($offset - 16 - 8);
  861. }
  862. $offset += ($NextObjectSize - 16 - 8);
  863. break;
  864. }
  865. }
  866. if (isset($thisfile_asf_streambitrateproperties['bitrate_records_count'])) {
  867. $ASFbitrateAudio = 0;
  868. $ASFbitrateVideo = 0;
  869. for ($BitrateRecordsCounter = 0; $BitrateRecordsCounter < $thisfile_asf_streambitrateproperties['bitrate_records_count']; $BitrateRecordsCounter++) {
  870. if (isset($thisfile_asf_codeclistobject['codec_entries'][$BitrateRecordsCounter])) {
  871. switch ($thisfile_asf_codeclistobject['codec_entries'][$BitrateRecordsCounter]['type_raw']) {
  872. case 1:
  873. $ASFbitrateVideo += $thisfile_asf_streambitrateproperties['bitrate_records'][$BitrateRecordsCounter]['bitrate'];
  874. break;
  875. case 2:
  876. $ASFbitrateAudio += $thisfile_asf_streambitrateproperties['bitrate_records'][$BitrateRecordsCounter]['bitrate'];
  877. break;
  878. default:
  879. // do nothing
  880. break;
  881. }
  882. }
  883. }
  884. if ($ASFbitrateAudio > 0) {
  885. $thisfile_audio['bitrate'] = $ASFbitrateAudio;
  886. }
  887. if ($ASFbitrateVideo > 0) {
  888. $thisfile_video['bitrate'] = $ASFbitrateVideo;
  889. }
  890. }
  891. if (isset($thisfile_asf['stream_properties_object']) && is_array($thisfile_asf['stream_properties_object'])) {
  892. $thisfile_audio['bitrate'] = 0;
  893. $thisfile_video['bitrate'] = 0;
  894. foreach ($thisfile_asf['stream_properties_object'] as $streamnumber => $streamdata) {
  895. switch ($streamdata['stream_type']) {
  896. case GETID3_ASF_Audio_Media:
  897. // Field Name Field Type Size (bits)
  898. // Codec ID / Format Tag WORD 16 // unique ID of audio codec - defined as wFormatTag field of WAVEFORMATEX structure
  899. // Number of Channels WORD 16 // number of channels of audio - defined as nChannels field of WAVEFORMATEX structure
  900. // Samples Per Second DWORD 32 // in Hertz - defined as nSamplesPerSec field of WAVEFORMATEX structure
  901. // Average number of Bytes/sec DWORD 32 // bytes/sec of audio stream - defined as nAvgBytesPerSec field of WAVEFORMATEX structure
  902. // Block Alignment WORD 16 // block size in bytes of audio codec - defined as nBlockAlign field of WAVEFORMATEX structure
  903. // 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
  904. // Codec Specific Data Size WORD 16 // size in bytes of Codec Specific Data buffer - defined as cbSize field of WAVEFORMATEX structure
  905. // Codec Specific Data BYTESTREAM variable // array of codec-specific data bytes
  906. // shortcut
  907. $thisfile_asf['audio_media'][$streamnumber] = array();
  908. $thisfile_asf_audiomedia_currentstream = &$thisfile_asf['audio_media'][$streamnumber];
  909. $audiomediaoffset = 0;
  910. $thisfile_asf_audiomedia_currentstream = getid3_riff::RIFFparseWAVEFORMATex(substr($streamdata['type_specific_data'], $audiomediaoffset, 16));
  911. $audiomediaoffset += 16;
  912. $thisfile_audio['lossless'] = false;
  913. switch ($thisfile_asf_audiomedia_currentstream['raw']['wFormatTag']) {
  914. case 0x0001: // PCM
  915. case 0x0163: // WMA9 Lossless
  916. $thisfile_audio['lossless'] = true;
  917. break;
  918. }
  919. if (!empty($thisfile_asf['stream_bitrate_properties_object']['bitrate_records'])) {
  920. foreach ($thisfile_asf['stream_bitrate_properties_object']['bitrate_records'] as $dummy => $dataarray) {
  921. if (isset($dataarray['flags']['stream_number']) && ($dataarray['flags']['stream_number'] == $streamnumber)) {
  922. $thisfile_asf_audiomedia_currentstream['bitrate'] = $dataarray['bitrate'];
  923. $thisfile_audio['bitrate'] += $dataarray['bitrate'];
  924. break;
  925. }
  926. }
  927. } else {
  928. if (!empty($thisfile_asf_audiomedia_currentstream['bytes_sec'])) {
  929. $thisfile_audio['bitrate'] += $thisfile_asf_audiomedia_currentstream['bytes_sec'] * 8;
  930. } elseif (!empty($thisfile_asf_audiomedia_currentstream['bitrate'])) {
  931. $thisfile_audio['bitrate'] += $thisfile_asf_audiomedia_currentstream['bitrate'];
  932. }
  933. }
  934. $thisfile_audio['streams'][$streamnumber] = $thisfile_asf_audiomedia_currentstream;
  935. $thisfile_audio['streams'][$streamnumber]['wformattag'] = $thisfile_asf_audiomedia_currentstream['raw']['wFormatTag'];
  936. $thisfile_audio['streams'][$streamnumber]['lossless'] = $thisfile_audio['lossless'];
  937. $thisfile_audio['streams'][$streamnumber]['bitrate'] = $thisfile_audio['bitrate'];
  938. $thisfile_audio['streams'][$streamnumber]['dataformat'] = 'wma';
  939. unset($thisfile_audio['streams'][$streamnumber]['raw']);
  940. $thisfile_asf_audiomedia_currentstream['codec_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $audiomediaoffset, 2));
  941. $audiomediaoffset += 2;
  942. $thisfile_asf_audiomedia_currentstream['codec_data'] = substr($streamdata['type_specific_data'], $audiomediaoffset, $thisfile_asf_audiomedia_currentstream['codec_data_size']);
  943. $audiomediaoffset += $thisfile_asf_audiomedia_currentstream['codec_data_size'];
  944. break;
  945. case GETID3_ASF_Video_Media:
  946. // Field Name Field Type Size (bits)
  947. // Encoded Image Width DWORD 32 // width of image in pixels
  948. // Encoded Image Height DWORD 32 // height of image in pixels
  949. // Reserved Flags BYTE 8 // hardcoded: 0x02
  950. // Format Data Size WORD 16 // size of Format Data field in bytes
  951. // Format Data array of: variable //
  952. // * Format Data Size DWORD 32 // number of bytes in Format Data field, in bytes - defined as biSize field of BITMAPINFOHEADER structure
  953. // * Image Width LONG 32 // width of encoded image in pixels - defined as biWidth field of BITMAPINFOHEADER structure
  954. // * Image Height LONG 32 // height of encoded image in pixels - defined as biHeight field of BITMAPINFOHEADER structure
  955. // * Reserved WORD 16 // hardcoded: 0x0001 - defined as biPlanes field of BITMAPINFOHEADER structure
  956. // * Bits Per Pixel Count WORD 16 // bits per pixel - defined as biBitCount field of BITMAPINFOHEADER structure
  957. // * Compression ID FOURCC 32 // fourcc of video codec - defined as biCompression field of BITMAPINFOHEADER structure
  958. // * Image Size DWORD 32 // image size in bytes - defined as biSizeImage field of BITMAPINFOHEADER structure
  959. // * Horizontal Pixels / Meter DWORD 32 // horizontal resolution of target device in pixels per meter - defined as biXPelsPerMeter field of BITMAPINFOHEADER structure
  960. // * Vertical Pixels / Meter DWORD 32 // vertical resolution of target device in pixels per meter - defined as biYPelsPerMeter field of BITMAPINFOHEADER structure
  961. // * Colors Used Count DWORD 32 // number of color indexes in the color table that are actually used - defined as biClrUsed field of BITMAPINFOHEADER structure
  962. // * 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
  963. // * Codec Specific Data BYTESTREAM variable // array of codec-specific data bytes
  964. // shortcut
  965. $thisfile_asf['video_media'][$streamnumber] = array();
  966. $thisfile_asf_videomedia_currentstream = &$thisfile_asf['video_media'][$streamnumber];
  967. $videomediaoffset = 0;
  968. $thisfile_asf_videomedia_currentstream['image_width'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  969. $videomediaoffset += 4;
  970. $thisfile_asf_videomedia_currentstream['image_height'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  971. $videomediaoffset += 4;
  972. $thisfile_asf_videomedia_currentstream['flags'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 1));
  973. $videomediaoffset += 1;
  974. $thisfile_asf_videomedia_currentstream['format_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2));
  975. $videomediaoffset += 2;
  976. $thisfile_asf_videomedia_currentstream['format_data']['format_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  977. $videomediaoffset += 4;
  978. $thisfile_asf_videomedia_currentstream['format_data']['image_width'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  979. $videomediaoffset += 4;
  980. $thisfile_asf_videomedia_currentstream['format_data']['image_height'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  981. $videomediaoffset += 4;
  982. $thisfile_asf_videomedia_currentstream['format_data']['reserved'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2));
  983. $videomediaoffset += 2;
  984. $thisfile_asf_videomedia_currentstream['format_data']['bits_per_pixel'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2));
  985. $videomediaoffset += 2;
  986. $thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc'] = substr($streamdata['type_specific_data'], $videomediaoffset, 4);
  987. $videomediaoffset += 4;
  988. $thisfile_asf_videomedia_currentstream['format_data']['image_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  989. $videomediaoffset += 4;
  990. $thisfile_asf_videomedia_currentstream['format_data']['horizontal_pels'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  991. $videomediaoffset += 4;
  992. $thisfile_asf_videomedia_currentstream['format_data']['vertical_pels'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  993. $videomediaoffset += 4;
  994. $thisfile_asf_videomedia_currentstream['format_data']['colors_used'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  995. $videomediaoffset += 4;
  996. $thisfile_asf_videomedia_currentstream['format_data']['colors_important'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4));
  997. $videomediaoffset += 4;
  998. $thisfile_asf_videomedia_currentstream['format_data']['codec_data'] = substr($streamdata['type_specific_data'], $videomediaoffset);
  999. if (!empty($thisfile_asf['stream_bitrate_properties_object']['bitrate_records'])) {
  1000. foreach ($thisfile_asf['stream_bitrate_properties_object']['bitrate_records'] as $dummy => $dataarray) {
  1001. if (isset($dataarray['flags']['stream_number']) && ($dataarray['flags']['stream_number'] == $streamnumber)) {
  1002. $thisfile_asf_videomedia_currentstream['bitrate'] = $dataarray['bitrate'];
  1003. $thisfile_video['streams'][$streamnumber]['bitrate'] = $dataarray['bitrate'];
  1004. $thisfile_video['bitrate'] += $dataarray['bitrate'];
  1005. break;
  1006. }
  1007. }
  1008. }
  1009. $thisfile_asf_videomedia_currentstream['format_data']['codec'] = getid3_riff::RIFFfourccLookup($thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc']);
  1010. $thisfile_video['streams'][$streamnumber]['fourcc'] = $thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc'];
  1011. $thisfile_video['streams'][$streamnumber]['codec'] = $thisfile_asf_videomedia_currentstream['format_data']['codec'];
  1012. $thisfile_video['streams'][$streamnumber]['resolution_x'] = $thisfile_asf_videomedia_currentstream['image_width'];
  1013. $thisfile_video['streams'][$streamnumber]['resolution_y'] = $thisfile_asf_videomedia_currentstream['image_height'];
  1014. $thisfile_video['streams'][$streamnumber]['bits_per_sample'] = $thisfile_asf_videomedia_currentstream['format_data']['bits_per_pixel'];
  1015. break;
  1016. default:
  1017. break;
  1018. }
  1019. }
  1020. }
  1021. while (ftell($this->getid3->fp) < $info['avdataend']) {
  1022. $NextObjectDataHeader = fread($this->getid3->fp, 24);
  1023. $offset = 0;
  1024. $NextObjectGUID = substr($NextObjectDataHeader, 0, 16);
  1025. $offset += 16;
  1026. $NextObjectGUIDtext = $this->BytestringToGUID($NextObjectGUID);
  1027. $NextObjectSize = getid3_lib::LittleEndian2Int(substr($NextObjectDataHeader, $offset, 8));
  1028. $offset += 8;
  1029. switch ($NextObjectGUID) {
  1030. case GETID3_ASF_Data_Object:
  1031. // Data Object: (mandatory, one only)
  1032. // Field Name Field Type Size (bits)
  1033. // Object ID GUID 128 // GUID for Data object - GETID3_ASF_Data_Object
  1034. // Object Size QWORD 64 // size of Data object, including 50 bytes of Data Object header. may be 0 if FilePropertiesObject.BroadcastFlag == 1
  1035. // File ID GUID 128 // unique identifier. identical to File ID field in Header Object
  1036. // Total Data Packets QWORD 64 // number of Data Packet entries in Data Object. invalid if FilePropertiesObject.BroadcastFlag == 1
  1037. // Reserved WORD 16 // hardcoded: 0x0101
  1038. // shortcut
  1039. $thisfile_asf['data_object'] = array();
  1040. $thisfile_asf_dataobject = &$thisfile_asf['data_object'];
  1041. $DataObjectData = $NextObjectDataHeader.fread($this->getid3->fp, 50 - 24);
  1042. $offset = 24;
  1043. $thisfile_asf_dataobject['objectid'] = $NextObjectGUID;
  1044. $thisfile_asf_dataobject['objectid_guid'] = $NextObjectGUIDtext;
  1045. $thisfile_asf_dataobject['objectsize'] = $NextObjectSize;
  1046. $thisfile_asf_dataobject['fileid'] = substr($DataObjectData, $offset, 16);
  1047. $offset += 16;
  1048. $thisfile_asf_dataobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_dataobject['fileid']);
  1049. $thisfile_asf_dataobject['total_data_packets'] = getid3_lib::LittleEndian2Int(substr($DataObjectData, $offset, 8));
  1050. $offset += 8;
  1051. $thisfile_asf_dataobject['reserved'] = getid3_lib::LittleEndian2Int(substr($DataObjectData, $offset, 2));
  1052. $offset += 2;
  1053. if ($thisfile_asf_dataobject['reserved'] != 0x0101) {
  1054. $info['warning'][] = 'data_object.reserved ('.getid3_lib::PrintHexBytes($thisfile_asf_dataobject['reserved']).') does not match expected value of "0x0101"';
  1055. //return false;
  1056. break;
  1057. }
  1058. // Data Packets array of: variable //
  1059. // * Error Correction Flags BYTE 8 //
  1060. // * * Error Correction Data Length bits 4 // if Error Correction Length Type == 00, size of Error Correction Data in bytes, else hardcoded: 0000
  1061. // * * Opaque Data Present bits 1 //
  1062. // * * Error Correction Length Type bits 2 // number of bits for size of the error correction data. hardcoded: 00
  1063. // * * Error Correction Present bits 1 // If set, use Opaque Data Packet structure, else use Payload structure
  1064. // * Error Correction Data
  1065. $info['avdataoffset'] = ftell($this->getid3->fp);
  1066. fseek($this->getid3->fp, ($thisfile_asf_dataobject['objectsize'] - 50), SEEK_CUR); // skip actual audio/video data
  1067. $info['avdataend'] = ftell($this->getid3->fp);
  1068. break;
  1069. case GETID3_ASF_Simple_Index_Object:
  1070. // Simple Index Object: (optional, recommended, one per video stream)
  1071. // Field Name Field Type Size (bits)
  1072. // Object ID GUID 128 // GUID for Simple Index object - GETID3_ASF_Data_Object
  1073. // Object Size QWORD 64 // size of Simple Index object, including 56 bytes of Simple Index Object header
  1074. // File ID GUID 128 // unique identifier. may be zero or identical to File ID field in Data Object and Header Object
  1075. // Index Entry Time Interval QWORD 64 // interval between index entries in 100-nanosecond units
  1076. // Maximum Packet Count DWORD 32 // maximum packet count for all index entries
  1077. // Index Entries Count DWORD 32 // number of Index Entries structures
  1078. // Index Entries array of: variable //
  1079. // * Packet Number DWORD 32 // number of the Data Packet associated with this index entry
  1080. // * Packet Count WORD 16 // number of Data Packets to sent at this index entry
  1081. // shortcut
  1082. $thisfile_asf['simple_index_object'] = array();
  1083. $thisfile_asf_simpleindexobject = &$thisfile_asf['simple_index_object'];
  1084. $SimpleIndexObjectData = $NextObjectDataHeader.fread($this->getid3->fp, 56 - 24);
  1085. $offset = 24;
  1086. $thisfile_asf_simpleindexobject['objectid'] = $NextObjectGUID;
  1087. $thisfile_asf_simpleindexobject['objectid_guid'] = $NextObjectGUIDtext;
  1088. $thisfile_asf_simpleindexobject['objectsize'] = $NextObjectSize;
  1089. $thisfile_asf_simpleindexobject['fileid'] = substr($SimpleIndexObjectData, $offset, 16);
  1090. $offset += 16;
  1091. $thisfile_asf_simpleindexobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_simpleindexobject['fileid']);
  1092. $thisfile_asf_simpleindexobject['index_entry_time_interval'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 8));
  1093. $offset += 8;
  1094. $thisfile_asf_simpleindexobject['maximum_packet_count'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 4));
  1095. $offset += 4;
  1096. $thisfile_asf_simpleindexobject['index_entries_count'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 4));
  1097. $offset += 4;
  1098. $IndexEntriesData = $SimpleIndexObjectData.fread($this->getid3->fp, 6 * $thisfile_asf_simpleindexobject['index_entries_count']);
  1099. for ($IndexEntriesCounter = 0; $IndexEntriesCounter < $thisfile_asf_simpleindexobject['index_entries_count']; $IndexEntriesCounter++) {
  1100. $thisfile_asf_simpleindexobject['index_entries'][$IndexEntriesCounter]['packet_number'] = getid3_lib::LittleEndian2Int(substr($IndexEntriesData, $offset, 4));
  1101. $offset += 4;
  1102. $thisfile_asf_simpleindexobject['index_entries'][$IndexEntriesCounter]['packet_count'] = getid3_lib::LittleEndian2Int(substr($IndexEntriesData, $offset, 4));
  1103. $offset += 2;
  1104. }
  1105. break;
  1106. case GETID3_ASF_Index_Object:
  1107. // 6.2 ASF top-level Index Object (optional but recommended when appropriate, 0 or 1)
  1108. // Field Name Field Type Size (bits)
  1109. // Object ID GUID 128 // GUID for the Index Object - GETID3_ASF_Index_Object
  1110. // Object Size QWORD 64 // Specifies the size, in bytes, of the Index Object, including at least 34 bytes of Index Object header
  1111. // Index Entry Time Interval DWORD 32 // Specifies the time interval between each index entry in ms.
  1112. // Index Specifiers Count WORD 16 // Specifies the number of Index Specifiers structures in this Index Object.
  1113. // Index Blocks Count DWORD 32 // Specifies the number of Index Blocks structures in this Index Object.
  1114. // Index Entry Time Interval DWORD 32 // Specifies the time interval between index entries in milliseconds. This value cannot be 0.
  1115. // Index Specifiers Count WORD 16 // Specifies the number of entries in the Index Specifiers list. Valid values are 1 and greater.
  1116. // Index Specifiers array of: varies //
  1117. // * Stream Number WORD 16 // Specifies the stream number that the Index Specifiers refer to. Valid values are between 1 and 127.
  1118. // * Index Type WORD 16 // Specifies Index Type values as follows:
  1119. // 1 = Nearest Past Data Packet - indexes point to the data packet whose presentation time is closest to the index entry time.
  1120. // 2 = Nearest Past Media Object - indexes point to the closest data packet containing an entire object or first fragment of an object.
  1121. // 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.
  1122. // Nearest Past Cleanpoint is the most common type of index.
  1123. // Index Entry Count DWORD 32 // Specifies the number of Index Entries in the block.
  1124. // * 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.
  1125. // * Index Entries array of: varies //
  1126. // * * Offsets DWORD varies // An offset value of 0xffffffff indicates an invalid offset value
  1127. // shortcut
  1128. $thisfile_asf['asf_index_object'] = array();
  1129. $thisfile_asf_asfindexobject = &$thisfile_asf['asf_index_object'];
  1130. $ASFIndexObjectData = $NextObjectDataHeader.fread($this->getid3->fp, 34 - 24);
  1131. $offset = 24;
  1132. $thisfile_asf_asfindexobject['objectid'] = $NextObjectGUID;
  1133. $thisfile_asf_asfindexobject['objectid_guid'] = $NextObjectGUIDtext;
  1134. $thisfile_asf_asfindexobject['objectsize'] = $NextObjectSize;
  1135. $thisfile_asf_asfindexobject['entry_time_interval'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4));
  1136. $offset += 4;
  1137. $thisfile_asf_asfindexobject['index_specifiers_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2));
  1138. $offset += 2;
  1139. $thisfile_asf_asfindexobject['index_blocks_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4));
  1140. $offset += 4;
  1141. $ASFIndexObjectData .= fread($this->getid3->fp, 4 * $thisfile_asf_asfindexobject['index_specifiers_count']);
  1142. for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) {
  1143. $IndexSpecifierStreamNumber = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2));
  1144. $offset += 2;
  1145. $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['stream_number'] = $IndexSpecifierStreamNumber;
  1146. $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2));
  1147. $offset += 2;
  1148. $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type_text'] = $this->ASFIndexObjectIndexTypeLookup($thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type']);
  1149. }
  1150. $ASFIndexObjectData .= fread($this->getid3->fp, 4);
  1151. $thisfile_asf_asfindexobject['index_entry_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4));
  1152. $offset += 4;
  1153. $ASFIndexObjectData .= fread($this->getid3->fp, 8 * $thisfile_asf_asfindexobject['index_specifiers_count']);
  1154. for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) {
  1155. $thisfile_asf_asfindexobject['block_positions'][$IndexSpecifiersCounter] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 8));
  1156. $offset += 8;
  1157. }
  1158. $ASFIndexObjectData .= fread($this->getid3->fp, 4 * $thisfile_asf_asfindexobject['index_specifiers_count'] * $thisfile_asf_asfindexobject['index_entry_count']);
  1159. for ($IndexEntryCounter = 0; $IndexEntryCounter < $thisfile_asf_asfindexobject['index_entry_count']; $IndexEntryCounter++) {
  1160. for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) {
  1161. $thisfile_asf_asfindexobject['offsets'][$IndexSpecifiersCounter][$IndexEntryCounter] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4));
  1162. $offset += 4;
  1163. }
  1164. }
  1165. break;
  1166. default:
  1167. // Implementations shall ignore any standard or non-standard object that they do not know how to handle.
  1168. if ($this->GUIDname($NextObjectGUIDtext)) {
  1169. $info['warning'][] = 'unhandled GUID "'.$this->GUIDname($NextObjectGUIDtext).'" {'.$NextObjectGUIDtext.'} in ASF body at offset '.($offset - 16 - 8);
  1170. } else {
  1171. $info['warning'][] = 'unknown GUID {'.$NextObjectGUIDtext.'} in ASF body at offset '.(ftell($this->getid3->fp) - 16 - 8);
  1172. }
  1173. fseek($this->getid3->fp, ($NextObjectSize - 16 - 8), SEEK_CUR);
  1174. break;
  1175. }
  1176. }
  1177. if (isset($thisfile_asf_codeclistobject['codec_entries']) && is_array($thisfile_asf_codeclistobject['codec_entries'])) {
  1178. foreach ($thisfile_asf_codeclistobject['codec_entries'] as $streamnumber => $streamdata) {
  1179. switch ($streamdata['information']) {
  1180. case 'WMV1':
  1181. case 'WMV2':
  1182. case 'WMV3':
  1183. case 'MSS1':
  1184. case 'MSS2':
  1185. case 'WMVA':
  1186. case 'WVC1':
  1187. case 'WMVP':
  1188. case 'WVP2':
  1189. $thisfile_video['dataformat'] = 'wmv';
  1190. $info['mime_type'] = 'video/x-ms-wmv';
  1191. break;
  1192. case 'MP42':
  1193. case 'MP43':
  1194. case 'MP4S':
  1195. case 'mp4s':
  1196. $thisfile_video['dataformat'] = 'asf';
  1197. $info['mime_type'] = 'video/x-ms-asf';
  1198. break;
  1199. default:
  1200. switch ($streamdata['type_raw']) {
  1201. case 1:
  1202. if (strstr($this->TrimConvert($streamdata['name']), 'Windows Media')) {
  1203. $thisfile_video['dataformat'] = 'wmv';
  1204. if ($info['mime_type'] == 'video/x-ms-asf') {
  1205. $info['mime_type'] = 'video/x-ms-wmv';
  1206. }
  1207. }
  1208. break;
  1209. case 2:
  1210. if (strstr($this->TrimConvert($streamdata['name']), 'Windows Media')) {
  1211. $thisfile_audio['dataformat'] = 'wma';
  1212. if ($info['mime_type'] == 'video/x-ms-asf') {
  1213. $info['mime_type'] = 'audio/x-ms-wma';
  1214. }
  1215. }
  1216. break;
  1217. }
  1218. break;
  1219. }
  1220. }
  1221. }
  1222. switch (isset($thisfile_audio['codec']) ? $thisfile_audio['codec'] : '') {
  1223. case 'MPEG Layer-3':
  1224. $thisfile_audio['dataformat'] = 'mp3';
  1225. break;
  1226. default:
  1227. break;
  1228. }
  1229. if (isset($thisfile_asf_codeclistobject['codec_entries'])) {
  1230. foreach ($thisfile_asf_codeclistobject['codec_entries'] as $streamnumber => $streamdata) {
  1231. switch ($streamdata['type_raw']) {
  1232. case 1: // video
  1233. $thisfile_video['encoder'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][$streamnumber]['name']);
  1234. break;
  1235. case 2: // audio
  1236. $thisfile_audio['encoder'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][$streamnumber]['name']);
  1237. // AH 2003-10-01
  1238. $thisfile_audio['encoder_options'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][0]['description']);
  1239. $thisfile_audio['codec'] = $thisfile_audio['encoder'];
  1240. break;
  1241. default:
  1242. $info['warning'][] = 'Unknown streamtype: [codec_list_object][codec_entries]['.$streamnumber.'][type_raw] == '.$streamdata['type_raw'];
  1243. break;
  1244. }
  1245. }
  1246. }
  1247. if (isset($info['audio'])) {
  1248. $thisfile_audio['lossless'] = (isset($thisfile_audio['lossless']) ? $thisfile_audio['lossless'] : false);
  1249. $thisfile_audio['dataformat'] = (!empty($thisfile_audio['dataformat']) ? $thisfile_audio['dataformat'] : 'asf');
  1250. }
  1251. if (!empty($thisfile_video['dataformat'])) {
  1252. $thisfile_video['lossless'] = (isset($thisfile_audio['lossless']) ? $thisfile_audio['lossless'] : false);
  1253. $thisfile_video['pixel_aspect_ratio'] = (isset($thisfile_audio['pixel_aspect_ratio']) ? $thisfile_audio['pixel_aspect_ratio'] : (float) 1);
  1254. $thisfile_video['dataformat'] = (!empty($thisfile_video['dataformat']) ? $thisfile_video['dataformat'] : 'asf');
  1255. }
  1256. if (!empty($thisfile_video['streams'])) {
  1257. $thisfile_video['streams']['resolution_x'] = 0;
  1258. $thisfile_video['streams']['resolution_y'] = 0;
  1259. foreach ($thisfile_video['streams'] as $key => $valuearray) {
  1260. if (($valuearray['resolution_x'] > $thisfile_video['streams']['resolution_x']) || ($valuearray['resolution_y'] > $thisfile_video['streams']['resolution_y'])) {
  1261. $thisfile_video['resolution_x'] = $valuearray['resolution_x'];
  1262. $thisfile_video['resolution_y'] = $valuearray['resolution_y'];
  1263. }
  1264. }
  1265. }
  1266. $info['bitrate'] = (isset($thisfile_audio['bitrate']) ? $thisfile_audio['bitrate'] : 0) + (isset($thisfile_video['bitrate']) ? $thisfile_video['bitrate'] : 0);
  1267. if ((!isset($info['playtime_seconds']) || ($info['playtime_seconds'] <= 0)) && ($info['bitrate'] > 0)) {
  1268. $info['playtime_seconds'] = ($info['filesize'] - $info['avdataoffset']) / ($info['bitrate'] / 8);
  1269. }
  1270. return true;
  1271. }
  1272. static function ASFCodecListObjectTypeLookup($CodecListType) {
  1273. static $ASFCodecListObjectTypeLookup = array();
  1274. if (empty($ASFCodecListObjectTypeLookup)) {
  1275. $ASFCodecListObjectTypeLookup[0x0001] = 'Video Codec';
  1276. $ASFCodecListObjectTypeLookup[0x0002] = 'Audio Codec';
  1277. $ASFCodecListObjectTypeLookup[0xFFFF] = 'Unknown Codec';
  1278. }
  1279. return (isset($ASFCodecListObjectTypeLookup[$CodecListType]) ? $ASFCodecListObjectTypeLookup[$CodecListType] : 'Invalid Codec Type');
  1280. }
  1281. static function KnownGUIDs() {
  1282. static $GUIDarray = array(
  1283. 'GETID3_ASF_Extended_Stream_Properties_Object' => '14E6A5CB-C672-4332-8399-A96952065B5A',
  1284. 'GETID3_ASF_Padding_Object' => '1806D474-CADF-4509-A4BA-9AABCB96AAE8',
  1285. 'GETID3_ASF_Payload_Ext_Syst_Pixel_Aspect_Ratio' => '1B1EE554-F9EA-4BC8-821A-376B74E4C4B8',
  1286. 'GETID3_ASF_Script_Command_Object' => '1EFB1A30-0B62-11D0-A39B-00A0C90348F6',
  1287. 'GETID3_ASF_No_Error_Correction' => '20FB5700-5B55-11CF-A8FD-00805F5C442B',
  1288. 'GETID3_ASF_Content_Branding_Object' => '2211B3FA-BD23-11D2-B4B7-00A0C955FC6E',
  1289. 'GETID3_ASF_Content_Encryption_Object' => '2211B3FB-BD23-11D2-B4B7-00A0C955FC6E',
  1290. 'GETID3_ASF_Digital_Signature_Object' => '2211B3FC-BD23-11D2-B4B7-00A0C955FC6E',
  1291. 'GETID3_ASF_Extended_Content_Encryption_Object' => '298AE614-2622-4C17-B935-DAE07EE9289C',
  1292. 'GETID3_ASF_Simple_Index_Object' => '33000890-E5B1-11CF-89F4-00A0C90349CB',
  1293. 'GETID3_ASF_Degradable_JPEG_Media' => '35907DE0-E415-11CF-A917-00805F5C442B',
  1294. 'GETID3_ASF_Payload_Extension_System_Timecode' => '399595EC-8667-4E2D-8FDB-98814CE76C1E',
  1295. 'GETID3_ASF_Binary_Media' => '3AFB65E2-47EF-40F2-AC2C-70A90D71D343',
  1296. 'GETID3_ASF_Timecode_Index_Object' => '3CB73FD0-0C4A-4803-953D-EDF7B6228F0C',
  1297. 'GETID3_ASF_Metadata_Library_Object' => '44231C94-9498-49D1-A141-1D134E457054',
  1298. 'GETID3_ASF_Reserved_3' => '4B1ACBE3-100B-11D0-A39B-00A0C90348F6',
  1299. 'GETID3_ASF_Reserved_4' => '4CFEDB20-75F6-11CF-9C0F-00A0C90349CB',
  1300. 'GETID3_ASF_Command_Media' => '59DACFC0-59E6-11D0-A3AC-00A0C90348F6',
  1301. 'GETID3_ASF_Header_Extension_Object' => '5FBF03B5-A92E-11CF-8EE3-00C00C205365',
  1302. 'GETID3_ASF_Media_Object_Index_Parameters_Obj' => '6B203BAD-3F11-4E84-ACA8-D7613DE2CFA7',
  1303. 'GETID3_ASF_Header_Object' => '75B22630-668E-11CF-A6D9-00AA0062CE6C',
  1304. 'GETID3_ASF_Content_Description_Object' => '75B22633-668E-11CF-A6D9-00AA0062CE6C',
  1305. 'GETID3_ASF_Error_Correction_Object' => '75B22635-668E-11CF-A6D9-00AA0062CE6C',
  1306. 'GETID3_ASF_Data_Object' => '75B22636-668E-11CF-A6D9-00AA0062CE6C',
  1307. 'GETID3_ASF_Web_Stream_Media_Subtype' => '776257D4-C627-41CB-8F81-7AC7FF1C40CC',
  1308. 'GETID3_ASF_Stream_Bitrate_Properties_Object' => '7BF875CE-468D-11D1-8D82-006097C9A2B2',
  1309. 'GETID3_ASF_Language_List_Object' => '7C4346A9-EFE0-4BFC-B229-393EDE415C85',
  1310. 'GETID3_ASF_Codec_List_Object' => '86D15240-311D-11D0-A3A4-00A0C90348F6',
  1311. 'GETID3_ASF_Reserved_2' => '86D15241-311D-11D0-A3A4-00A0C90348F6',
  1312. 'GETID3_ASF_File_Properties_Object' => '8CABDCA1-A947-11CF-8EE4-00C00C205365',
  1313. 'GETID3_ASF_File_Transfer_Media' => '91BD222C-F21C-497A-8B6D-5AA86BFC0185',
  1314. 'GETID3_ASF_Old_RTP_Extension_Data' => '96800C63-4C94-11D1-837B-0080C7A37F95',
  1315. 'GETID3_ASF_Advanced_Mutual_Exclusion_Object' => 'A08649CF-4775-4670-8A16-6E35357566CD',
  1316. 'GETID3_ASF_Bandwidth_Sharing_Object' => 'A69609E6-517B-11D2-B6AF-00C04FD908E9',
  1317. 'GETID3_ASF_Reserved_1' => 'ABD3D211-A9BA-11cf-8EE6-00C00C205365',
  1318. 'GETID3_ASF_Bandwidth_Sharing_Exclusive' => 'AF6060AA-5197-11D2-B6AF-00C04FD908E9',
  1319. 'GETID3_ASF_Bandwidth_Sharing_Partial' => 'AF6060AB-5197-11D2-B6AF-00C04FD908E9',
  1320. 'GETID3_ASF_JFIF_Media' => 'B61BE100-5B4E-11CF-A8FD-00805F5C442B',
  1321. 'GETID3_ASF_Stream_Properties_Object' => 'B7DC0791-A9B7-11CF-8EE6-00C00C205365',
  1322. 'GETID3_ASF_Video_Media' => 'BC19EFC0-5B4D-11CF-A8FD-00805F5C442B',
  1323. 'GETID3_ASF_Audio_Spread' => 'BFC3CD50-618F-11CF-8BB2-00AA00B4E220',
  1324. 'GETID3_ASF_Metadata_Object' => 'C5F8CBEA-5BAF-4877-8467-AA8C44FA4CCA',
  1325. 'GETID3_ASF_Payload_Ext_Syst_Sample_Duration' => 'C6BD9450-867F-4907-83A3-C77921B733AD',
  1326. 'GETID3_ASF_Group_Mutual_Exclusion_Object' => 'D1465A40-5A79-4338-B71B-E36B8FD6C249',
  1327. 'GETID3_ASF_Extended_Content_Description_Object' => 'D2D0A440-E307-11D2-97F0-00A0C95EA850',
  1328. 'GETID3_ASF_Stream_Prioritization_Object' => 'D4FED15B-88D3-454F-81F0-ED5C45999E24',
  1329. 'GETID3_ASF_Payload_Ext_System_Content_Type' => 'D590DC20-07BC-436C-9CF7-F3BBFBF1A4DC',
  1330. 'GETID3_ASF_Old_File_Properties_Object' => 'D6E229D0-35DA-11D1-9034-00A0C90349BE',
  1331. 'GETID3_ASF_Old_ASF_Header_Object' => 'D6E229D1-35DA-11D1-9034-00A0C90349BE',
  1332. 'GETID3_ASF_Old_ASF_Data_Object' => 'D6E229D2-35DA-11D1-9034-00A0C90349BE',
  1333. 'GETID3_ASF_Index_Object' => 'D6E229D3-35DA-11D1-9034-00A0C90349BE',
  1334. 'GETID3_ASF_Old_Stream_Properties_Object' => 'D6E229D4-35DA-11D1-9034-00A0C90349BE',
  1335. 'GETID3_ASF_Old_Content_Description_Object' => 'D6E229D5-35DA-11D1-9034-00A0C90349BE',
  1336. 'GETID3_ASF_Old_Script_Command_Object' => 'D6E229D6-35DA-11D1-9034-00A0C90349BE',
  1337. 'GETID3_ASF_Old_Marker_Object' => 'D6E229D7-35DA-11D1-9034-00A0C90349BE',
  1338. 'GETID3_ASF_Old_Component_Download_Object' => 'D6E229D8-35DA-11D1-9034-00A0C90349BE',
  1339. 'GETID3_ASF_Old_Stream_Group_Object' => 'D6E229D9-35DA-11D1-9034-00A0C90349BE',
  1340. 'GETID3_ASF_Old_Scalable_Object' => 'D6E229DA-35DA-11D1-9034-00A0C90349BE',
  1341. 'GETID3_ASF_Old_Prioritization_Object' => 'D6E229DB-35DA-11D1-9034-00A0C90349BE',
  1342. 'GETID3_ASF_Bitrate_Mutual_Exclusion_Object' => 'D6E229DC-35DA-11D1-9034-00A0C90349BE',
  1343. 'GETID3_ASF_Old_Inter_Media_Dependency_Object' => 'D6E229DD-35DA-11D1-9034-00A0C90349BE',
  1344. 'GETID3_ASF_Old_Rating_Object' => 'D6E229DE-35DA-11D1-9034-00A0C90349BE',
  1345. 'GETID3_ASF_Index_Parameters_Object' => 'D6E229DF-35DA-11D1-9034-00A0C90349BE',
  1346. 'GETID3_ASF_Old_Color_Table_Object' => 'D6E229E0-35DA-11D1-9034-00A0C90349BE',
  1347. 'GETID3_ASF_Old_Language_List_Object' => 'D6E229E1-35DA-11D1-9034-00A0C90349BE',
  1348. 'GETID3_ASF_Old_Audio_Media' => 'D6E229E2-35DA-11D1-9034-00A0C90349BE',
  1349. 'GETID3_ASF_Old_Video_Media' => 'D6E229E3-35DA-11D1-9034-00A0C90349BE',
  1350. 'GETID3_ASF_Old_Image_Media' => 'D6E229E4-35DA-11D1-9034-00A0C90349BE',
  1351. 'GETID3_ASF_Old_Timecode_Media' => 'D6E229E5-35DA-11D1-9034-00A0C90349BE',
  1352. 'GETID3_ASF_Old_Text_Media' => 'D6E229E6-35DA-11D1-9034-00A0C90349BE',
  1353. 'GETID3_ASF_Old_MIDI_Media' => 'D6E229E7-35DA-11D1-9034-00A0C90349BE',
  1354. 'GETID3_ASF_Old_Command_Media' => 'D6E229E8-35DA-11D1-9034-00A0C90349BE',
  1355. 'GETID3_ASF_Old_No_Error_Concealment' => 'D6E229EA-35DA-11D1-9034-00A0C90349BE',
  1356. 'GETID3_ASF_Old_Scrambled_Audio' => 'D6E229EB-35DA-11D1-9034-00A0C90349BE',
  1357. 'GETID3_ASF_Old_No_Color_Table' => 'D6E229EC-35DA-11D1-9034-00A0C90349BE',
  1358. 'GETID3_ASF_Old_SMPTE_Time' => 'D6E229ED-35DA-11D1-9034-00A0C90349BE',
  1359. 'GETID3_ASF_Old_ASCII_Text' => 'D6E229EE-35DA-11D1-9034-00A0C90349BE',
  1360. 'GETID3_ASF_Old_Unicode_Text' => 'D6E229EF-35DA-11D1-9034-00A0C90349BE',
  1361. 'GETID3_ASF_Old_HTML_Text' => 'D6E229F0-35DA-11D1-9034-00A0C90349BE',
  1362. 'GETID3_ASF_Old_URL_Command' => 'D6E229F1-35DA-11D1-9034-00A0C90349BE',
  1363. 'GETID3_ASF_Old_Filename_Command' => 'D6E229F2-35DA-11D1-9034-00A0C90349BE',
  1364. 'GETID3_ASF_Old_ACM_Codec' => 'D6E229F3-35DA-11D1-9034-00A0C90349BE',
  1365. 'GETID3_ASF_Old_VCM_Codec' => 'D6E229F4-35DA-11D1-9034-00A0C90349BE',
  1366. 'GETID3_ASF_Old_QuickTime_Codec' => 'D6E229F5-35DA-11D1-9034-00A0C90349BE',
  1367. 'GETID3_ASF_Old_DirectShow_Transform_Filter' => 'D6E229F6-35DA-11D1-9034-00A0C90349BE',
  1368. 'GETID3_ASF_Old_DirectShow_Rendering_Filter' => 'D6E229F7-35DA-11D1-9034-00A0C90349BE',
  1369. 'GETID3_ASF_Old_No_Enhancement' => 'D6E229F8-35DA-11D1-9034-00A0C90349BE',
  1370. 'GETID3_ASF_Old_Unknown_Enhancement_Type' => 'D6E229F9-35DA-11D1-9034-00A0C90349BE',
  1371. 'GETID3_ASF_Old_Temporal_Enhancement' => 'D6E229FA-35DA-11D1-9034-00A0C90349BE',
  1372. 'GETID3_ASF_Old_Spatial_Enhancement' => 'D6E229FB-35DA-11D1-9034-00A0C90349BE',
  1373. 'GETID3_ASF_Old_Quality_Enhancement' => 'D6E229FC-35DA-11D1-9034-00A0C90349BE',
  1374. 'GETID3_ASF_Old_Number_of_Channels_Enhancement' => 'D6E229FD-35DA-11D1-9034-00A0C90349BE',
  1375. 'GETID3_ASF_Old_Frequency_Response_Enhancement' => 'D6E229FE-35DA-11D1-9034-00A0C90349BE',
  1376. 'GETID3_ASF_Old_Media_Object' => 'D6E229FF-35DA-11D1-9034-00A0C90349BE',
  1377. 'GETID3_ASF_Mutex_Language' => 'D6E22A00-35DA-11D1-9034-00A0C90349BE',
  1378. 'GETID3_ASF_Mutex_Bitrate' => 'D6E22A01-35DA-11D1-9034-00A0C90349BE',
  1379. 'GETID3_ASF_Mutex_Unknown' => 'D6E22A02-35DA-11D1-9034-00A0C90349BE',
  1380. 'GETID3_ASF_Old_ASF_Placeholder_Object' => 'D6E22A0E-35DA-11D1-9034-00A0C90349BE',
  1381. 'GETID3_ASF_Old_Data_Unit_Extension_Object' => 'D6E22A0F-35DA-11D1-9034-00A0C90349BE',
  1382. 'GETID3_ASF_Web_Stream_Format' => 'DA1E6B13-8359-4050-B398-388E965BF00C',
  1383. 'GETID3_ASF_Payload_Ext_System_File_Name' => 'E165EC0E-19ED-45D7-B4A7-25CBD1E28E9B',
  1384. 'GETID3_ASF_Marker_Object' => 'F487CD01-A951-11CF-8EE6-00C00C205365',
  1385. 'GETID3_ASF_Timecode_Index_Parameters_Object' => 'F55E496D-9797-4B5D-8C8B-604DFE9BFB24',
  1386. 'GETID3_ASF_Audio_Media' => 'F8699E40-5B4D-11CF-A8FD-00805F5C442B',
  1387. 'GETID3_ASF_Media_Object_Index_Object' => 'FEB103F8-12AD-4C64-840F-2A1D2F7AD48C',
  1388. 'GETID3_ASF_Alt_Extended_Content_Encryption_Obj' => 'FF889EF1-ADEE-40DA-9E71-98704BB928CE',
  1389. 'GETID3_ASF_Index_Placeholder_Object' => 'D9AADE20-7C17-4F9C-BC28-8555DD98E2A2', // http://cpan.uwinnipeg.ca/htdocs/Audio-WMA/Audio/WMA.pm.html
  1390. 'GETID3_ASF_Compatibility_Object' => '26F18B5D-4584-47EC-9F5F-0E651F0452C9', // http://cpan.uwinnipeg.ca/htdocs/Audio-WMA/Audio/WMA.pm.html
  1391. );
  1392. return $GUIDarray;
  1393. }
  1394. static function GUIDname($GUIDstring) {
  1395. static $GUIDarray = array();
  1396. if (empty($GUIDarray)) {
  1397. $GUIDarray = getid3_asf::KnownGUIDs();
  1398. }
  1399. return array_search($GUIDstring, $GUIDarray);
  1400. }
  1401. static function ASFIndexObjectIndexTypeLookup($id) {
  1402. static $ASFIndexObjectIndexTypeLookup = array();
  1403. if (empty($ASFIndexObjectIndexTypeLookup)) {
  1404. $ASFIndexObjectIndexTypeLookup[1] = 'Nearest Past Data Packet';
  1405. $ASFIndexObjectIndexTypeLookup[2] = 'Nearest Past Media Object';
  1406. $ASFIndexObjectIndexTypeLookup[3] = 'Nearest Past Cleanpoint';
  1407. }
  1408. return (isset($ASFIndexObjectIndexTypeLookup[$id]) ? $ASFIndexObjectIndexTypeLookup[$id] : 'invalid');
  1409. }
  1410. static function GUIDtoBytestring($GUIDstring) {
  1411. // Microsoft defines these 16-byte (128-bit) GUIDs in the strangest way:
  1412. // first 4 bytes are in little-endian order
  1413. // next 2 bytes are appended in little-endian order
  1414. // next 2 bytes are appended in little-endian order
  1415. // next 2 bytes are appended in big-endian order
  1416. // next 6 bytes are appended in big-endian order
  1417. // AaBbCcDd-EeFf-GgHh-IiJj-KkLlMmNnOoPp is stored as this 16-byte string:
  1418. // $Dd $Cc $Bb $Aa $Ff $Ee $Hh $Gg $Ii $Jj $Kk $Ll $Mm $Nn $Oo $Pp
  1419. $hexbytecharstring = chr(hexdec(substr($GUIDstring, 6, 2)));
  1420. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 4, 2)));
  1421. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 2, 2)));
  1422. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 0, 2)));
  1423. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 11, 2)));
  1424. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 9, 2)));
  1425. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 16, 2)));
  1426. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 14, 2)));
  1427. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 19, 2)));
  1428. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 21, 2)));
  1429. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 24, 2)));
  1430. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 26, 2)));
  1431. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 28, 2)));
  1432. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 30, 2)));
  1433. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 32, 2)));
  1434. $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 34, 2)));
  1435. return $hexbytecharstring;
  1436. }
  1437. static function BytestringToGUID($Bytestring) {
  1438. $GUIDstring = str_pad(dechex(ord($Bytestring{3})), 2, '0', STR_PAD_LEFT);
  1439. $GUIDstring .= str_pad(dechex(ord($Bytestring{2})), 2, '0', STR_PAD_LEFT);
  1440. $GUIDstring .= str_pad(dechex(ord($Bytestring{1})), 2, '0', STR_PAD_LEFT);
  1441. $GUIDstring .= str_pad(dechex(ord($Bytestring{0})), 2, '0', STR_PAD_LEFT);
  1442. $GUIDstring .= '-';
  1443. $GUIDstring .= str_pad(dechex(ord($Bytestring{5})), 2, '0', STR_PAD_LEFT);
  1444. $GUIDstring .= str_pad(dechex(ord($Bytestring{4})), 2, '0', STR_PAD_LEFT);
  1445. $GUIDstring .= '-';
  1446. $GUIDstring .= str_pad(dechex(ord($Bytestring{7})), 2, '0', STR_PAD_LEFT);
  1447. $GUIDstring .= str_pad(dechex(ord($Bytestring{6})), 2, '0', STR_PAD_LEFT);
  1448. $GUIDstring .= '-';
  1449. $GUIDstring .= str_pad(dechex(ord($Bytestring{8})), 2, '0', STR_PAD_LEFT);
  1450. $GUIDstring .= str_pad(dechex(ord($Bytestring{9})), 2, '0', STR_PAD_LEFT);
  1451. $GUIDstring .= '-';
  1452. $GUIDstring .= str_pad(dechex(ord($Bytestring{10})), 2, '0', STR_PAD_LEFT);
  1453. $GUIDstring .= str_pad(dechex(ord($Bytestring{11})), 2, '0', STR_PAD_LEFT);
  1454. $GUIDstring .= str_pad(dechex(ord($Bytestring{12})), 2, '0', STR_PAD_LEFT);
  1455. $GUIDstring .= str_pad(dechex(ord($Bytestring{13})), 2, '0', STR_PAD_LEFT);
  1456. $GUIDstring .= str_pad(dechex(ord($Bytestring{14})), 2, '0', STR_PAD_LEFT);
  1457. $GUIDstring .= str_pad(dechex(ord($Bytestring{15})), 2, '0', STR_PAD_LEFT);
  1458. return strtoupper($GUIDstring);
  1459. }
  1460. static function FILETIMEtoUNIXtime($FILETIME, $round=true) {
  1461. // FILETIME is a 64-bit unsigned integer representing
  1462. // the number of 100-nanosecond intervals since January 1, 1601
  1463. // UNIX timestamp is number of seconds since January 1, 1970
  1464. // 116444736000000000 = 10000000 * 60 * 60 * 24 * 365 * 369 + 89 leap days
  1465. if ($round) {
  1466. return intval(round(($FILETIME - 116444736000000000) / 10000000));
  1467. }
  1468. return ($FILETIME - 116444736000000000) / 10000000;
  1469. }
  1470. static function WMpictureTypeLookup($WMpictureType) {
  1471. static $WMpictureTypeLookup = array();
  1472. if (empty($WMpictureTypeLookup)) {
  1473. $WMpictureTypeLookup[0x03] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Front Cover');
  1474. $WMpictureTypeLookup[0x04] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Back Cover');
  1475. $WMpictureTypeLookup[0x00] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'User Defined');
  1476. $WMpictureTypeLookup[0x05] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Leaflet Page');
  1477. $WMpictureTypeLookup[0x06] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Media Label');
  1478. $WMpictureTypeLookup[0x07] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Lead Artist');
  1479. $WMpictureTypeLookup[0x08] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Artist');
  1480. $WMpictureTypeLookup[0x09] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Conductor');
  1481. $WMpictureTypeLookup[0x0A] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Band');
  1482. $WMpictureTypeLookup[0x0B] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Composer');
  1483. $WMpictureTypeLookup[0x0C] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Lyricist');
  1484. $WMpictureTypeLookup[0x0D] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Recording Location');
  1485. $WMpictureTypeLookup[0x0E] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'During Recording');
  1486. $WMpictureTypeLookup[0x0F] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'During Performance');
  1487. $WMpictureTypeLookup[0x10] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Video Screen Capture');
  1488. $WMpictureTypeLookup[0x12] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Illustration');
  1489. $WMpictureTypeLookup[0x13] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Band Logotype');
  1490. $WMpictureTypeLookup[0x14] = getid3_lib::iconv_fallback('ISO-8859-1', 'UTF-16LE', 'Publisher Logotype');
  1491. }
  1492. return (isset($WMpictureTypeLookup[$WMpictureType]) ? $WMpictureTypeLookup[$WMpictureType] : '');
  1493. }
  1494. function ASF_HeaderExtensionObjectDataParse(&$asf_header_extension_object_data, &$unhandled_sections) {
  1495. // http://msdn.microsoft.com/en-us/library/bb643323.aspx
  1496. $offset = 0;
  1497. $objectOffset = 0;
  1498. $HeaderExtensionObjectParsed = array();
  1499. while ($objectOffset < strlen($asf_header_extension_object_data)) {
  1500. $offset = $objectOffset;
  1501. $thisObject = array();
  1502. $thisObject['guid'] = substr($asf_header_extension_object_data, $offset, 16);
  1503. $offset += 16;
  1504. $thisObject['guid_text'] = $this->BytestringToGUID($thisObject['guid']);
  1505. $thisObject['guid_name'] = $this->GUIDname($thisObject['guid_text']);
  1506. $thisObject['size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 8));
  1507. $offset += 8;
  1508. if ($thisObject['size'] <= 0) {
  1509. break;
  1510. }
  1511. switch ($thisObject['guid']) {
  1512. case GETID3_ASF_Extended_Stream_Properties_Object:
  1513. $thisObject['start_time'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 8));
  1514. $offset += 8;
  1515. $thisObject['start_time_unix'] = $this->FILETIMEtoUNIXtime($thisObject['start_time']);
  1516. $thisObject['end_time'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 8));
  1517. $offset += 8;
  1518. $thisObject['end_time_unix'] = $this->FILETIMEtoUNIXtime($thisObject['end_time']);
  1519. $thisObject['data_bitrate'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1520. $offset += 4;
  1521. $thisObject['buffer_size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1522. $offset += 4;
  1523. $thisObject['initial_buffer_fullness'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1524. $offset += 4;
  1525. $thisObject['alternate_data_bitrate'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1526. $offset += 4;
  1527. $thisObject['alternate_buffer_size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1528. $offset += 4;
  1529. $thisObject['alternate_initial_buffer_fullness'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1530. $offset += 4;
  1531. $thisObject['maximum_object_size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1532. $offset += 4;
  1533. $thisObject['flags_raw'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1534. $offset += 4;
  1535. $thisObject['flags']['reliable'] = (bool) $thisObject['flags_raw'] & 0x00000001;
  1536. $thisObject['flags']['seekable'] = (bool) $thisObject['flags_raw'] & 0x00000002;
  1537. $thisObject['flags']['no_cleanpoints'] = (bool) $thisObject['flags_raw'] & 0x00000004;
  1538. $thisObject['flags']['resend_live_cleanpoints'] = (bool) $thisObject['flags_raw'] & 0x00000008;
  1539. $thisObject['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1540. $offset += 2;
  1541. $thisObject['stream_language_id_index'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1542. $offset += 2;
  1543. $thisObject['average_time_per_frame'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1544. $offset += 4;
  1545. $thisObject['stream_name_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1546. $offset += 2;
  1547. $thisObject['payload_extension_system_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1548. $offset += 2;
  1549. for ($i = 0; $i < $thisObject['stream_name_count']; $i++) {
  1550. $streamName = array();
  1551. $streamName['language_id_index'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1552. $offset += 2;
  1553. $streamName['stream_name_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1554. $offset += 2;
  1555. $streamName['stream_name'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, $streamName['stream_name_length']));
  1556. $offset += $streamName['stream_name_length'];
  1557. $thisObject['stream_names'][$i] = $streamName;
  1558. }
  1559. for ($i = 0; $i < $thisObject['payload_extension_system_count']; $i++) {
  1560. $payloadExtensionSystem = array();
  1561. $payloadExtensionSystem['extension_system_id'] = substr($asf_header_extension_object_data, $offset, 16);
  1562. $offset += 16;
  1563. $payloadExtensionSystem['extension_system_id_text'] = $this->BytestringToGUID($payloadExtensionSystem['extension_system_id']);
  1564. $payloadExtensionSystem['extension_system_size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1565. $offset += 2;
  1566. if ($payloadExtensionSystem['extension_system_size'] <= 0) {
  1567. break 2;
  1568. }
  1569. $payloadExtensionSystem['extension_system_info_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1570. $offset += 4;
  1571. $payloadExtensionSystem['extension_system_info_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, $payloadExtensionSystem['extension_system_info_length']));
  1572. $offset += $payloadExtensionSystem['extension_system_info_length'];
  1573. $thisObject['payload_extension_systems'][$i] = $payloadExtensionSystem;
  1574. }
  1575. break;
  1576. case GETID3_ASF_Padding_Object:
  1577. // padding, skip it
  1578. break;
  1579. case GETID3_ASF_Metadata_Object:
  1580. $thisObject['description_record_counts'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1581. $offset += 2;
  1582. for ($i = 0; $i < $thisObject['description_record_counts']; $i++) {
  1583. $descriptionRecord = array();
  1584. $descriptionRecord['reserved_1'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); // must be zero
  1585. $offset += 2;
  1586. $descriptionRecord['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1587. $offset += 2;
  1588. $descriptionRecord['name_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1589. $offset += 2;
  1590. $descriptionRecord['data_type'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1591. $offset += 2;
  1592. $descriptionRecord['data_type_text'] = $this->ASFmetadataLibraryObjectDataTypeLookup($descriptionRecord['data_type']);
  1593. $descriptionRecord['data_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1594. $offset += 4;
  1595. $descriptionRecord['name'] = substr($asf_header_extension_object_data, $offset, $descriptionRecord['name_length']);
  1596. $offset += $descriptionRecord['name_length'];
  1597. $descriptionRecord['data'] = substr($asf_header_extension_object_data, $offset, $descriptionRecord['data_length']);
  1598. $offset += $descriptionRecord['data_length'];
  1599. switch ($descriptionRecord['data_type']) {
  1600. case 0x0000: // Unicode string
  1601. break;
  1602. case 0x0001: // BYTE array
  1603. // do nothing
  1604. break;
  1605. case 0x0002: // BOOL
  1606. $descriptionRecord['data'] = (bool) getid3_lib::LittleEndian2Int($descriptionRecord['data']);
  1607. break;
  1608. case 0x0003: // DWORD
  1609. case 0x0004: // QWORD
  1610. case 0x0005: // WORD
  1611. $descriptionRecord['data'] = getid3_lib::LittleEndian2Int($descriptionRecord['data']);
  1612. break;
  1613. case 0x0006: // GUID
  1614. $descriptionRecord['data_text'] = $this->BytestringToGUID($descriptionRecord['data']);
  1615. break;
  1616. }
  1617. $thisObject['description_record'][$i] = $descriptionRecord;
  1618. }
  1619. break;
  1620. case GETID3_ASF_Language_List_Object:
  1621. $thisObject['language_id_record_counts'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1622. $offset += 2;
  1623. for ($i = 0; $i < $thisObject['language_id_record_counts']; $i++) {
  1624. $languageIDrecord = array();
  1625. $languageIDrecord['language_id_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 1));
  1626. $offset += 1;
  1627. $languageIDrecord['language_id'] = substr($asf_header_extension_object_data, $offset, $languageIDrecord['language_id_length']);
  1628. $offset += $languageIDrecord['language_id_length'];
  1629. $thisObject['language_id_record'][$i] = $languageIDrecord;
  1630. }
  1631. break;
  1632. case GETID3_ASF_Metadata_Library_Object:
  1633. $thisObject['description_records_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1634. $offset += 2;
  1635. for ($i = 0; $i < $thisObject['description_records_count']; $i++) {
  1636. $descriptionRecord = array();
  1637. $descriptionRecord['language_list_index'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1638. $offset += 2;
  1639. $descriptionRecord['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1640. $offset += 2;
  1641. $descriptionRecord['name_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1642. $offset += 2;
  1643. $descriptionRecord['data_type'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2));
  1644. $offset += 2;
  1645. $descriptionRecord['data_type_text'] = $this->ASFmetadataLibraryObjectDataTypeLookup($descriptionRecord['data_type']);
  1646. $descriptionRecord['data_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4));
  1647. $offset += 4;
  1648. $descriptionRecord['name'] = substr($asf_header_extension_object_data, $offset, $descriptionRecord['name_length']);
  1649. $offset += $descriptionRecord['name_length'];
  1650. $descriptionRecord['data'] = substr($asf_header_extension_object_data, $offset, $descriptionRecord['data_length']);
  1651. $offset += $descriptionRecord['data_length'];
  1652. if (preg_match('#^WM/Picture$#', str_replace("\x00", '', trim($descriptionRecord['name'])))) {
  1653. $WMpicture = $this->ASF_WMpicture($descriptionRecord['data']);
  1654. foreach ($WMpicture as $key => $value) {
  1655. $descriptionRecord['data'] = $WMpicture;
  1656. }
  1657. unset($WMpicture);
  1658. }
  1659. $thisObject['description_record'][$i] = $descriptionRecord;
  1660. }
  1661. break;
  1662. default:
  1663. $unhandled_sections++;
  1664. if ($this->GUIDname($thisObject['guid_text'])) {
  1665. $this->getid3->info['warning'][] = 'unhandled Header Extension Object GUID "'.$this->GUIDname($thisObject['guid_text']).'" {'.$thisObject['guid_text'].'} at offset '.($offset - 16 - 8);
  1666. } else {
  1667. $this->getid3->info['warning'][] = 'unknown Header Extension Object GUID {'.$thisObject['guid_text'].'} in at offset '.($offset - 16 - 8);
  1668. }
  1669. break;
  1670. }
  1671. $HeaderExtensionObjectParsed[] = $thisObject;
  1672. $objectOffset += $thisObject['size'];
  1673. }
  1674. return $HeaderExtensionObjectParsed;
  1675. }
  1676. static function ASFmetadataLibraryObjectDataTypeLookup($id) {
  1677. static $ASFmetadataLibraryObjectDataTypeLookup = array(
  1678. 0x0000 => 'Unicode string', // The data consists of a sequence of Unicode characters
  1679. 0x0001 => 'BYTE array', // The type of the data is implementation-specific
  1680. 0x0002 => 'BOOL', // The data is 2 bytes long and should be interpreted as a 16-bit unsigned integer. Only 0x0000 or 0x0001 are permitted values
  1681. 0x0003 => 'DWORD', // The data is 4 bytes long and should be interpreted as a 32-bit unsigned integer
  1682. 0x0004 => 'QWORD', // The data is 8 bytes long and should be interpreted as a 64-bit unsigned integer
  1683. 0x0005 => 'WORD', // The data is 2 bytes long and should be interpreted as a 16-bit unsigned integer
  1684. 0x0006 => 'GUID', // The data is 16 bytes long and should be interpreted as a 128-bit GUID
  1685. );
  1686. return (isset($ASFmetadataLibraryObjectDataTypeLookup[$id]) ? $ASFmetadataLibraryObjectDataTypeLookup[$id] : 'invalid');
  1687. }
  1688. function ASF_WMpicture(&$data) {
  1689. //typedef struct _WMPicture{
  1690. // LPWSTR pwszMIMEType;
  1691. // BYTE bPictureType;
  1692. // LPWSTR pwszDescription;
  1693. // DWORD dwDataLen;
  1694. // BYTE* pbData;
  1695. //} WM_PICTURE;
  1696. $WMpicture = array();
  1697. $offset = 0;
  1698. $WMpicture['image_type_id'] = getid3_lib::LittleEndian2Int(substr($data, $offset, 1));
  1699. $offset += 1;
  1700. $WMpicture['image_type'] = $this->WMpictureTypeLookup($WMpicture['image_type_id']);
  1701. $WMpicture['image_size'] = getid3_lib::LittleEndian2Int(substr($data, $offset, 4));
  1702. $offset += 4;
  1703. $WMpicture['image_mime'] = '';
  1704. do {
  1705. $next_byte_pair = substr($data, $offset, 2);
  1706. $offset += 2;
  1707. $WMpicture['image_mime'] .= $next_byte_pair;
  1708. } while ($next_byte_pair !== "\x00\x00");
  1709. $WMpicture['image_description'] = '';
  1710. do {
  1711. $next_byte_pair = substr($data, $offset, 2);
  1712. $offset += 2;
  1713. $WMpicture['image_description'] .= $next_byte_pair;
  1714. } while ($next_byte_pair !== "\x00\x00");
  1715. $WMpicture['dataoffset'] = $offset;
  1716. $WMpicture['data'] = substr($data, $offset);
  1717. $imageinfo = array();
  1718. $WMpicture['image_mime'] = '';
  1719. $imagechunkcheck = getid3_lib::GetDataImageSize($WMpicture['data'], $imageinfo);
  1720. unset($imageinfo);
  1721. if (!empty($imagechunkcheck)) {
  1722. $WMpicture['image_mime'] = image_type_to_mime_type($imagechunkcheck[2]);
  1723. }
  1724. if (!isset($this->getid3->info['asf']['comments']['picture'])) {
  1725. $this->getid3->info['asf']['comments']['picture'] = array();
  1726. }
  1727. $this->getid3->info['asf']['comments']['picture'][] = array('data'=>$WMpicture['data'], 'image_mime'=>$WMpicture['image_mime']);
  1728. return $WMpicture;
  1729. }
  1730. // Remove terminator 00 00 and convert UTF-16LE to Latin-1
  1731. static function TrimConvert($string) {
  1732. return trim(getid3_lib::iconv_fallback('UTF-16LE', 'ISO-8859-1', getid3_asf::TrimTerm($string)), ' ');
  1733. }
  1734. // Remove terminator 00 00
  1735. static function TrimTerm($string) {
  1736. // remove terminator, only if present (it should be, but...)
  1737. if (substr($string, -2) === "\x00\x00") {
  1738. $string = substr($string, 0, -2);
  1739. }
  1740. return $string;
  1741. }
  1742. }