module.audio.aa.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. // also https://github.com/JamesHeinrich/getID3 //
  7. /////////////////////////////////////////////////////////////////
  8. // See readme.txt for more details //
  9. /////////////////////////////////////////////////////////////////
  10. // //
  11. // module.audio.aa.php //
  12. // module for analyzing Audible Audiobook files //
  13. // dependencies: NONE //
  14. // ///
  15. /////////////////////////////////////////////////////////////////
  16. class getid3_aa extends getid3_handler
  17. {
  18. public function Analyze() {
  19. $info = &$this->getid3->info;
  20. $this->fseek($info['avdataoffset']);
  21. $AAheader = $this->fread(8);
  22. $magic = "\x57\x90\x75\x36";
  23. if (substr($AAheader, 4, 4) != $magic) {
  24. $info['error'][] = 'Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes(substr($AAheader, 4, 4)).'"';
  25. return false;
  26. }
  27. // shortcut
  28. $info['aa'] = array();
  29. $thisfile_aa = &$info['aa'];
  30. $info['fileformat'] = 'aa';
  31. $info['audio']['dataformat'] = 'aa';
  32. $info['error'][] = 'Audible Audiobook (.aa) parsing not enabled in this version of getID3() ['.$this->getid3->version().']';
  33. return false;
  34. $info['audio']['bitrate_mode'] = 'cbr'; // is it?
  35. $thisfile_aa['encoding'] = 'ISO-8859-1';
  36. $thisfile_aa['filesize'] = getid3_lib::BigEndian2Int(substr($AUheader, 0, 4));
  37. if ($thisfile_aa['filesize'] > ($info['avdataend'] - $info['avdataoffset'])) {
  38. $info['warning'][] = 'Possible truncated file - expecting "'.$thisfile_aa['filesize'].'" bytes of data, only found '.($info['avdataend'] - $info['avdataoffset']).' bytes"';
  39. }
  40. $info['audio']['bits_per_sample'] = 16; // is it?
  41. $info['audio']['sample_rate'] = $thisfile_aa['sample_rate'];
  42. $info['audio']['channels'] = $thisfile_aa['channels'];
  43. //$info['playtime_seconds'] = 0;
  44. //$info['audio']['bitrate'] = 0;
  45. return true;
  46. }
  47. }