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.shorten.php 7.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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.shorten.php //
  11. // module for analyzing Shorten 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_shorten extends getid3_handler
  19. {
  20. /**
  21. * @return bool
  22. */
  23. public function Analyze() {
  24. $info = &$this->getid3->info;
  25. $this->fseek($info['avdataoffset']);
  26. $ShortenHeader = $this->fread(8);
  27. $magic = 'ajkg';
  28. if (substr($ShortenHeader, 0, 4) != $magic) {
  29. $this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes(substr($ShortenHeader, 0, 4)).'"');
  30. return false;
  31. }
  32. $info['fileformat'] = 'shn';
  33. $info['audio']['dataformat'] = 'shn';
  34. $info['audio']['lossless'] = true;
  35. $info['audio']['bitrate_mode'] = 'vbr';
  36. $info['shn']['version'] = getid3_lib::LittleEndian2Int(substr($ShortenHeader, 4, 1));
  37. $this->fseek($info['avdataend'] - 12);
  38. $SeekTableSignatureTest = $this->fread(12);
  39. $info['shn']['seektable']['present'] = substr($SeekTableSignatureTest, 4, 8) == 'SHNAMPSK';
  40. if ($info['shn']['seektable']['present']) {
  41. $info['shn']['seektable']['length'] = getid3_lib::LittleEndian2Int(substr($SeekTableSignatureTest, 0, 4));
  42. $info['shn']['seektable']['offset'] = $info['avdataend'] - $info['shn']['seektable']['length'];
  43. $this->fseek($info['shn']['seektable']['offset']);
  44. $SeekTableMagic = $this->fread(4);
  45. $magic = 'SEEK';
  46. if ($SeekTableMagic != $magic) {
  47. $this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['shn']['seektable']['offset'].', found "'.getid3_lib::PrintHexBytes($SeekTableMagic).'"');
  48. return false;
  49. } else {
  50. // typedef struct tag_TSeekEntry
  51. // {
  52. // unsigned long SampleNumber;
  53. // unsigned long SHNFileByteOffset;
  54. // unsigned long SHNLastBufferReadPosition;
  55. // unsigned short SHNByteGet;
  56. // unsigned short SHNBufferOffset;
  57. // unsigned short SHNFileBitOffset;
  58. // unsigned long SHNGBuffer;
  59. // unsigned short SHNBitShift;
  60. // long CBuf0[3];
  61. // long CBuf1[3];
  62. // long Offset0[4];
  63. // long Offset1[4];
  64. // }TSeekEntry;
  65. $SeekTableData = $this->fread($info['shn']['seektable']['length'] - 16);
  66. $info['shn']['seektable']['entry_count'] = floor(strlen($SeekTableData) / 80);
  67. //$info['shn']['seektable']['entries'] = array();
  68. //$SeekTableOffset = 0;
  69. //for ($i = 0; $i < $info['shn']['seektable']['entry_count']; $i++) {
  70. // $SeekTableEntry['sample_number'] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 4));
  71. // $SeekTableOffset += 4;
  72. // $SeekTableEntry['shn_file_byte_offset'] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 4));
  73. // $SeekTableOffset += 4;
  74. // $SeekTableEntry['shn_last_buffer_read_position'] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 4));
  75. // $SeekTableOffset += 4;
  76. // $SeekTableEntry['shn_byte_get'] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 2));
  77. // $SeekTableOffset += 2;
  78. // $SeekTableEntry['shn_buffer_offset'] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 2));
  79. // $SeekTableOffset += 2;
  80. // $SeekTableEntry['shn_file_bit_offset'] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 2));
  81. // $SeekTableOffset += 2;
  82. // $SeekTableEntry['shn_gbuffer'] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 4));
  83. // $SeekTableOffset += 4;
  84. // $SeekTableEntry['shn_bit_shift'] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 2));
  85. // $SeekTableOffset += 2;
  86. // for ($j = 0; $j < 3; $j++) {
  87. // $SeekTableEntry['cbuf0'][$j] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 4));
  88. // $SeekTableOffset += 4;
  89. // }
  90. // for ($j = 0; $j < 3; $j++) {
  91. // $SeekTableEntry['cbuf1'][$j] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 4));
  92. // $SeekTableOffset += 4;
  93. // }
  94. // for ($j = 0; $j < 4; $j++) {
  95. // $SeekTableEntry['offset0'][$j] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 4));
  96. // $SeekTableOffset += 4;
  97. // }
  98. // for ($j = 0; $j < 4; $j++) {
  99. // $SeekTableEntry['offset1'][$j] = getid3_lib::LittleEndian2Int(substr($SeekTableData, $SeekTableOffset, 4));
  100. // $SeekTableOffset += 4;
  101. // }
  102. //
  103. // $info['shn']['seektable']['entries'][] = $SeekTableEntry;
  104. //}
  105. }
  106. }
  107. if (preg_match('#(1|ON)#i', ini_get('safe_mode'))) {
  108. $this->error('PHP running in Safe Mode - backtick operator not available, cannot run shntool to analyze Shorten files');
  109. return false;
  110. }
  111. if (GETID3_OS_ISWINDOWS) {
  112. $RequiredFiles = array('shorten.exe', 'cygwin1.dll', 'head.exe');
  113. foreach ($RequiredFiles as $required_file) {
  114. if (!is_readable(GETID3_HELPERAPPSDIR.$required_file)) {
  115. $this->error(GETID3_HELPERAPPSDIR.$required_file.' does not exist');
  116. return false;
  117. }
  118. }
  119. $commandline = GETID3_HELPERAPPSDIR.'shorten.exe -x "'.$info['filenamepath'].'" - | '.GETID3_HELPERAPPSDIR.'head.exe -c 64';
  120. $commandline = str_replace('/', '\\', $commandline);
  121. } else {
  122. static $shorten_present;
  123. if (!isset($shorten_present)) {
  124. $shorten_present = file_exists('/usr/local/bin/shorten') || `which shorten`;
  125. }
  126. if (!$shorten_present) {
  127. $this->error('shorten binary was not found in path or /usr/local/bin');
  128. return false;
  129. }
  130. $commandline = (file_exists('/usr/local/bin/shorten') ? '/usr/local/bin/' : '' ) . 'shorten -x '.escapeshellarg($info['filenamepath']).' - | head -c 64';
  131. }
  132. $output = `$commandline`;
  133. if (!empty($output) && (substr($output, 12, 4) == 'fmt ')) {
  134. if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers
  135. exit;
  136. }
  137. getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true);
  138. $fmt_size = getid3_lib::LittleEndian2Int(substr($output, 16, 4));
  139. $DecodedWAVFORMATEX = getid3_riff::parseWAVEFORMATex(substr($output, 20, $fmt_size));
  140. $info['audio']['channels'] = $DecodedWAVFORMATEX['channels'];
  141. $info['audio']['bits_per_sample'] = $DecodedWAVFORMATEX['bits_per_sample'];
  142. $info['audio']['sample_rate'] = $DecodedWAVFORMATEX['sample_rate'];
  143. if (substr($output, 20 + $fmt_size, 4) == 'data') {
  144. $info['playtime_seconds'] = getid3_lib::LittleEndian2Int(substr($output, 20 + 4 + $fmt_size, 4)) / $DecodedWAVFORMATEX['raw']['nAvgBytesPerSec'];
  145. } else {
  146. $this->error('shorten failed to decode DATA chunk to expected location, cannot determine playtime');
  147. return false;
  148. }
  149. $info['audio']['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) / $info['playtime_seconds']) * 8;
  150. } else {
  151. $this->error('shorten failed to decode file to WAV for parsing');
  152. return false;
  153. }
  154. return true;
  155. }
  156. }