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.lpac.php 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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.lpac.php //
  11. // module for analyzing LPAC Audio files //
  12. // dependencies: module.audio-video.riff.php //
  13. // ///
  14. /////////////////////////////////////////////////////////////////
  15. if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers
  16. exit;
  17. }
  18. getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true);
  19. class getid3_lpac extends getid3_handler
  20. {
  21. /**
  22. * @return bool
  23. */
  24. public function Analyze() {
  25. $info = &$this->getid3->info;
  26. $this->fseek($info['avdataoffset']);
  27. $LPACheader = $this->fread(14);
  28. $StreamMarker = substr($LPACheader, 0, 4);
  29. if ($StreamMarker != 'LPAC') {
  30. $this->error('Expected "LPAC" at offset '.$info['avdataoffset'].', found "'.$StreamMarker.'"');
  31. return false;
  32. }
  33. $info['avdataoffset'] += 14;
  34. $info['fileformat'] = 'lpac';
  35. $info['audio']['dataformat'] = 'lpac';
  36. $info['audio']['lossless'] = true;
  37. $info['audio']['bitrate_mode'] = 'vbr';
  38. $info['lpac']['file_version'] = getid3_lib::BigEndian2Int(substr($LPACheader, 4, 1));
  39. $flags['audio_type'] = getid3_lib::BigEndian2Int(substr($LPACheader, 5, 1));
  40. $info['lpac']['total_samples']= getid3_lib::BigEndian2Int(substr($LPACheader, 6, 4));
  41. $flags['parameters'] = getid3_lib::BigEndian2Int(substr($LPACheader, 10, 4));
  42. $info['lpac']['flags']['is_wave'] = (bool) ($flags['audio_type'] & 0x40);
  43. $info['lpac']['flags']['stereo'] = (bool) ($flags['audio_type'] & 0x04);
  44. $info['lpac']['flags']['24_bit'] = (bool) ($flags['audio_type'] & 0x02);
  45. $info['lpac']['flags']['16_bit'] = (bool) ($flags['audio_type'] & 0x01);
  46. if ($info['lpac']['flags']['24_bit'] && $info['lpac']['flags']['16_bit']) {
  47. $this->warning('24-bit and 16-bit flags cannot both be set');
  48. }
  49. $info['lpac']['flags']['fast_compress'] = (bool) ($flags['parameters'] & 0x40000000);
  50. $info['lpac']['flags']['random_access'] = (bool) ($flags['parameters'] & 0x08000000);
  51. $info['lpac']['block_length'] = pow(2, (($flags['parameters'] & 0x07000000) >> 24)) * 256;
  52. $info['lpac']['flags']['adaptive_prediction_order'] = (bool) ($flags['parameters'] & 0x00800000);
  53. $info['lpac']['flags']['adaptive_quantization'] = (bool) ($flags['parameters'] & 0x00400000);
  54. $info['lpac']['flags']['joint_stereo'] = (bool) ($flags['parameters'] & 0x00040000);
  55. $info['lpac']['quantization'] = ($flags['parameters'] & 0x00001F00) >> 8;
  56. $info['lpac']['max_prediction_order'] = ($flags['parameters'] & 0x0000003F);
  57. if ($info['lpac']['flags']['fast_compress'] && ($info['lpac']['max_prediction_order'] != 3)) {
  58. $this->warning('max_prediction_order expected to be "3" if fast_compress is true, actual value is "'.$info['lpac']['max_prediction_order'].'"');
  59. }
  60. switch ($info['lpac']['file_version']) {
  61. case 6:
  62. if ($info['lpac']['flags']['adaptive_quantization']) {
  63. $this->warning('adaptive_quantization expected to be false in LPAC file stucture v6, actually true');
  64. }
  65. if ($info['lpac']['quantization'] != 20) {
  66. $this->warning('Quantization expected to be 20 in LPAC file stucture v6, actually '.$info['lpac']['flags']['Q']);
  67. }
  68. break;
  69. default:
  70. //$this->warning('This version of getID3() ['.$this->getid3->version().'] only supports LPAC file format version 6, this file is version '.$info['lpac']['file_version'].' - please report to info@getid3.org');
  71. break;
  72. }
  73. $getid3_temp = new getID3();
  74. $getid3_temp->openfile($this->getid3->filename);
  75. $getid3_temp->info = $info;
  76. $getid3_riff = new getid3_riff($getid3_temp);
  77. $getid3_riff->Analyze();
  78. $info['avdataoffset'] = $getid3_temp->info['avdataoffset'];
  79. $info['riff'] = $getid3_temp->info['riff'];
  80. $info['error'] = $getid3_temp->info['error'];
  81. $info['warning'] = $getid3_temp->info['warning'];
  82. $info['lpac']['comments']['comment'] = $getid3_temp->info['comments'];
  83. $info['audio']['sample_rate'] = $getid3_temp->info['audio']['sample_rate'];
  84. unset($getid3_temp, $getid3_riff);
  85. $info['audio']['channels'] = ($info['lpac']['flags']['stereo'] ? 2 : 1);
  86. if ($info['lpac']['flags']['24_bit']) {
  87. $info['audio']['bits_per_sample'] = $info['riff']['audio'][0]['bits_per_sample'];
  88. } elseif ($info['lpac']['flags']['16_bit']) {
  89. $info['audio']['bits_per_sample'] = 16;
  90. } else {
  91. $info['audio']['bits_per_sample'] = 8;
  92. }
  93. if ($info['lpac']['flags']['fast_compress']) {
  94. // fast
  95. $info['audio']['encoder_options'] = '-1';
  96. } else {
  97. switch ($info['lpac']['max_prediction_order']) {
  98. case 20: // simple
  99. $info['audio']['encoder_options'] = '-2';
  100. break;
  101. case 30: // medium
  102. $info['audio']['encoder_options'] = '-3';
  103. break;
  104. case 40: // high
  105. $info['audio']['encoder_options'] = '-4';
  106. break;
  107. case 60: // extrahigh
  108. $info['audio']['encoder_options'] = '-5';
  109. break;
  110. }
  111. }
  112. $info['playtime_seconds'] = $info['lpac']['total_samples'] / $info['audio']['sample_rate'];
  113. $info['audio']['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds'];
  114. return true;
  115. }
  116. }