No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

module.audio.voc.php 8.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at https://github.com/JamesHeinrich/getID3 //
  5. // or https://www.getid3.org //
  6. // or http://getid3.sourceforge.net //
  7. // see readme.txt for more details //
  8. /////////////////////////////////////////////////////////////////
  9. // //
  10. // module.audio.voc.php //
  11. // module for analyzing Creative VOC Audio files //
  12. // dependencies: NONE //
  13. // ///
  14. /////////////////////////////////////////////////////////////////
  15. if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers
  16. exit;
  17. }
  18. class getid3_voc extends getid3_handler
  19. {
  20. /**
  21. * @return bool
  22. */
  23. public function Analyze() {
  24. $info = &$this->getid3->info;
  25. $OriginalAVdataOffset = $info['avdataoffset'];
  26. $this->fseek($info['avdataoffset']);
  27. $VOCheader = $this->fread(26);
  28. $magic = 'Creative Voice File';
  29. if (substr($VOCheader, 0, 19) != $magic) {
  30. $this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes(substr($VOCheader, 0, 19)).'"');
  31. return false;
  32. }
  33. // shortcuts
  34. $thisfile_audio = &$info['audio'];
  35. $info['voc'] = array();
  36. $thisfile_voc = &$info['voc'];
  37. $info['fileformat'] = 'voc';
  38. $thisfile_audio['dataformat'] = 'voc';
  39. $thisfile_audio['bitrate_mode'] = 'cbr';
  40. $thisfile_audio['lossless'] = true;
  41. $thisfile_audio['channels'] = 1; // might be overriden below
  42. $thisfile_audio['bits_per_sample'] = 8; // might be overriden below
  43. // byte # Description
  44. // ------ ------------------------------------------
  45. // 00-12 'Creative Voice File'
  46. // 13 1A (eof to abort printing of file)
  47. // 14-15 Offset of first datablock in .voc file (std 1A 00 in Intel Notation)
  48. // 16-17 Version number (minor,major) (VOC-HDR puts 0A 01)
  49. // 18-19 2's Comp of Ver. # + 1234h (VOC-HDR puts 29 11)
  50. $thisfile_voc['header']['datablock_offset'] = getid3_lib::LittleEndian2Int(substr($VOCheader, 20, 2));
  51. $thisfile_voc['header']['minor_version'] = getid3_lib::LittleEndian2Int(substr($VOCheader, 22, 1));
  52. $thisfile_voc['header']['major_version'] = getid3_lib::LittleEndian2Int(substr($VOCheader, 23, 1));
  53. do {
  54. $BlockOffset = $this->ftell();
  55. $BlockData = $this->fread(4);
  56. $BlockType = ord($BlockData[0]);
  57. $BlockSize = getid3_lib::LittleEndian2Int(substr($BlockData, 1, 3));
  58. $ThisBlock = array();
  59. getid3_lib::safe_inc($thisfile_voc['blocktypes'][$BlockType], 1);
  60. switch ($BlockType) {
  61. case 0: // Terminator
  62. // do nothing, we'll break out of the loop down below
  63. break;
  64. case 1: // Sound data
  65. $BlockData .= $this->fread(2);
  66. if ($info['avdataoffset'] <= $OriginalAVdataOffset) {
  67. $info['avdataoffset'] = $this->ftell();
  68. }
  69. $this->fseek($BlockSize - 2, SEEK_CUR);
  70. $ThisBlock['sample_rate_id'] = getid3_lib::LittleEndian2Int(substr($BlockData, 4, 1));
  71. $ThisBlock['compression_type'] = getid3_lib::LittleEndian2Int(substr($BlockData, 5, 1));
  72. $ThisBlock['compression_name'] = $this->VOCcompressionTypeLookup($ThisBlock['compression_type']);
  73. if ($ThisBlock['compression_type'] <= 3) {
  74. $thisfile_voc['compressed_bits_per_sample'] = getid3_lib::CastAsInt(str_replace('-bit', '', $ThisBlock['compression_name']));
  75. }
  76. // Less accurate sample_rate calculation than the Extended block (#8) data (but better than nothing if Extended Block is not available)
  77. if (empty($thisfile_audio['sample_rate'])) {
  78. // SR byte = 256 - (1000000 / sample_rate)
  79. $thisfile_audio['sample_rate'] = getid3_lib::trunc((1000000 / (256 - $ThisBlock['sample_rate_id'])) / $thisfile_audio['channels']);
  80. }
  81. break;
  82. case 2: // Sound continue
  83. case 3: // Silence
  84. case 4: // Marker
  85. case 6: // Repeat
  86. case 7: // End repeat
  87. // nothing useful, just skip
  88. $this->fseek($BlockSize, SEEK_CUR);
  89. break;
  90. case 8: // Extended
  91. $BlockData .= $this->fread(4);
  92. //00-01 Time Constant:
  93. // Mono: 65536 - (256000000 / sample_rate)
  94. // Stereo: 65536 - (256000000 / (sample_rate * 2))
  95. $ThisBlock['time_constant'] = getid3_lib::LittleEndian2Int(substr($BlockData, 4, 2));
  96. $ThisBlock['pack_method'] = getid3_lib::LittleEndian2Int(substr($BlockData, 6, 1));
  97. $ThisBlock['stereo'] = (bool) getid3_lib::LittleEndian2Int(substr($BlockData, 7, 1));
  98. $thisfile_audio['channels'] = ($ThisBlock['stereo'] ? 2 : 1);
  99. $thisfile_audio['sample_rate'] = getid3_lib::trunc((256000000 / (65536 - $ThisBlock['time_constant'])) / $thisfile_audio['channels']);
  100. break;
  101. case 9: // data block that supersedes blocks 1 and 8. Used for stereo, 16 bit
  102. $BlockData .= $this->fread(12);
  103. if ($info['avdataoffset'] <= $OriginalAVdataOffset) {
  104. $info['avdataoffset'] = $this->ftell();
  105. }
  106. $this->fseek($BlockSize - 12, SEEK_CUR);
  107. $ThisBlock['sample_rate'] = getid3_lib::LittleEndian2Int(substr($BlockData, 4, 4));
  108. $ThisBlock['bits_per_sample'] = getid3_lib::LittleEndian2Int(substr($BlockData, 8, 1));
  109. $ThisBlock['channels'] = getid3_lib::LittleEndian2Int(substr($BlockData, 9, 1));
  110. $ThisBlock['wFormat'] = getid3_lib::LittleEndian2Int(substr($BlockData, 10, 2));
  111. $ThisBlock['compression_name'] = $this->VOCwFormatLookup($ThisBlock['wFormat']);
  112. if ($this->VOCwFormatActualBitsPerSampleLookup($ThisBlock['wFormat'])) {
  113. $thisfile_voc['compressed_bits_per_sample'] = $this->VOCwFormatActualBitsPerSampleLookup($ThisBlock['wFormat']);
  114. }
  115. $thisfile_audio['sample_rate'] = $ThisBlock['sample_rate'];
  116. $thisfile_audio['bits_per_sample'] = $ThisBlock['bits_per_sample'];
  117. $thisfile_audio['channels'] = $ThisBlock['channels'];
  118. break;
  119. default:
  120. $this->warning('Unhandled block type "'.$BlockType.'" at offset '.$BlockOffset);
  121. $this->fseek($BlockSize, SEEK_CUR);
  122. break;
  123. }
  124. if (!empty($ThisBlock)) {
  125. $ThisBlock['block_offset'] = $BlockOffset;
  126. $ThisBlock['block_size'] = $BlockSize;
  127. $ThisBlock['block_type_id'] = $BlockType;
  128. $thisfile_voc['blocks'][] = $ThisBlock;
  129. }
  130. } while (!feof($this->getid3->fp) && ($BlockType != 0));
  131. // Terminator block doesn't have size field, so seek back 3 spaces
  132. $this->fseek(-3, SEEK_CUR);
  133. ksort($thisfile_voc['blocktypes']);
  134. if (!empty($thisfile_voc['compressed_bits_per_sample'])) {
  135. $info['playtime_seconds'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / ($thisfile_voc['compressed_bits_per_sample'] * $thisfile_audio['channels'] * $thisfile_audio['sample_rate']);
  136. $thisfile_audio['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds'];
  137. }
  138. return true;
  139. }
  140. /**
  141. * @param int $index
  142. *
  143. * @return string
  144. */
  145. public function VOCcompressionTypeLookup($index) {
  146. static $VOCcompressionTypeLookup = array(
  147. 0 => '8-bit',
  148. 1 => '4-bit',
  149. 2 => '2.6-bit',
  150. 3 => '2-bit'
  151. );
  152. return (isset($VOCcompressionTypeLookup[$index]) ? $VOCcompressionTypeLookup[$index] : 'Multi DAC ('.($index - 3).') channels');
  153. }
  154. /**
  155. * @param int $index
  156. *
  157. * @return string|false
  158. */
  159. public function VOCwFormatLookup($index) {
  160. static $VOCwFormatLookup = array(
  161. 0x0000 => '8-bit unsigned PCM',
  162. 0x0001 => 'Creative 8-bit to 4-bit ADPCM',
  163. 0x0002 => 'Creative 8-bit to 3-bit ADPCM',
  164. 0x0003 => 'Creative 8-bit to 2-bit ADPCM',
  165. 0x0004 => '16-bit signed PCM',
  166. 0x0006 => 'CCITT a-Law',
  167. 0x0007 => 'CCITT u-Law',
  168. 0x2000 => 'Creative 16-bit to 4-bit ADPCM'
  169. );
  170. return (isset($VOCwFormatLookup[$index]) ? $VOCwFormatLookup[$index] : false);
  171. }
  172. /**
  173. * @param int $index
  174. *
  175. * @return int|false
  176. */
  177. public function VOCwFormatActualBitsPerSampleLookup($index) {
  178. static $VOCwFormatLookup = array(
  179. 0x0000 => 8,
  180. 0x0001 => 4,
  181. 0x0002 => 3,
  182. 0x0003 => 2,
  183. 0x0004 => 16,
  184. 0x0006 => 8,
  185. 0x0007 => 8,
  186. 0x2000 => 4
  187. );
  188. return (isset($VOCwFormatLookup[$index]) ? $VOCwFormatLookup[$index] : false);
  189. }
  190. }