Nessuna descrizione
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.tta.php 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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.tta.php //
  11. // module for analyzing TTA 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_tta extends getid3_handler
  19. {
  20. /**
  21. * @return bool
  22. */
  23. public function Analyze() {
  24. $info = &$this->getid3->info;
  25. $info['fileformat'] = 'tta';
  26. $info['audio']['dataformat'] = 'tta';
  27. $info['audio']['lossless'] = true;
  28. $info['audio']['bitrate_mode'] = 'vbr';
  29. $this->fseek($info['avdataoffset']);
  30. $ttaheader = $this->fread(26);
  31. $info['tta']['magic'] = substr($ttaheader, 0, 3);
  32. $magic = 'TTA';
  33. if ($info['tta']['magic'] != $magic) {
  34. $this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes($info['tta']['magic']).'"');
  35. unset($info['fileformat']);
  36. unset($info['audio']);
  37. unset($info['tta']);
  38. return false;
  39. }
  40. switch ($ttaheader[3]) {
  41. case "\x01": // TTA v1.x
  42. case "\x02": // TTA v1.x
  43. case "\x03": // TTA v1.x
  44. // "It was the demo-version of the TTA encoder. There is no released format with such header. TTA encoder v1 is not supported about a year."
  45. $info['tta']['major_version'] = 1;
  46. $info['avdataoffset'] += 16;
  47. $info['tta']['compression_level'] = ord($ttaheader[3]);
  48. $info['tta']['channels'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 4, 2));
  49. $info['tta']['bits_per_sample'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 6, 2));
  50. $info['tta']['sample_rate'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 8, 4));
  51. $info['tta']['samples_per_channel'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 12, 4));
  52. $info['audio']['encoder_options'] = '-e'.$info['tta']['compression_level'];
  53. $info['playtime_seconds'] = $info['tta']['samples_per_channel'] / $info['tta']['sample_rate'];
  54. break;
  55. case '2': // TTA v2.x
  56. // "I have hurried to release the TTA 2.0 encoder. Format documentation is removed from our site. This format still in development. Please wait the TTA2 format, encoder v4."
  57. $info['tta']['major_version'] = 2;
  58. $info['avdataoffset'] += 20;
  59. $info['tta']['compression_level'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 4, 2));
  60. $info['tta']['audio_format'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 6, 2));
  61. $info['tta']['channels'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 8, 2));
  62. $info['tta']['bits_per_sample'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 10, 2));
  63. $info['tta']['sample_rate'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 12, 4));
  64. $info['tta']['data_length'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 16, 4));
  65. $info['audio']['encoder_options'] = '-e'.$info['tta']['compression_level'];
  66. $info['playtime_seconds'] = $info['tta']['data_length'] / $info['tta']['sample_rate'];
  67. break;
  68. case '1': // TTA v3.x
  69. // "This is a first stable release of the TTA format. It will be supported by the encoders v3 or higher."
  70. $info['tta']['major_version'] = 3;
  71. $info['avdataoffset'] += 26;
  72. $info['tta']['audio_format'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 4, 2)); // getid3_riff::wFormatTagLookup()
  73. $info['tta']['channels'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 6, 2));
  74. $info['tta']['bits_per_sample'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 8, 2));
  75. $info['tta']['sample_rate'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 10, 4));
  76. $info['tta']['data_length'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 14, 4));
  77. $info['tta']['crc32_footer'] = substr($ttaheader, 18, 4);
  78. $info['tta']['seek_point'] = getid3_lib::LittleEndian2Int(substr($ttaheader, 22, 4));
  79. $info['playtime_seconds'] = $info['tta']['data_length'] / $info['tta']['sample_rate'];
  80. break;
  81. default:
  82. $this->error('This version of getID3() ['.$this->getid3->version().'] only knows how to handle TTA v1 and v2 - it may not work correctly with this file which appears to be TTA v'.$ttaheader[3]);
  83. return false;
  84. }
  85. $info['audio']['encoder'] = 'TTA v'.$info['tta']['major_version'];
  86. $info['audio']['bits_per_sample'] = $info['tta']['bits_per_sample'];
  87. $info['audio']['sample_rate'] = $info['tta']['sample_rate'];
  88. $info['audio']['channels'] = $info['tta']['channels'];
  89. $info['audio']['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds'];
  90. return true;
  91. }
  92. }