ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
GetId3\Module\Audio\Aa Class Reference

GetId3() by James Heinrich info@.nosp@m.geti.nosp@m.d3.or.nosp@m.g //. More...

+ Inheritance diagram for GetId3\Module\Audio\Aa:
+ Collaboration diagram for GetId3\Module\Audio\Aa:

Public Member Functions

 analyze ()
 
- Public Member Functions inherited from GetId3\Handler\BaseHandler
 __construct (GetId3Core $getid3, $call_module=null)
 
 analyze ()
 Analyze from file pointer. More...
 
 AnalyzeString (&$string)
 Analyze from string instead. More...
 
 saveAttachment (&$ThisFileInfoIndex, $filename, $offset, $length)
 

Additional Inherited Members

- Protected Member Functions inherited from GetId3\Handler\BaseHandler
 ftell ()
 
 fread ($bytes)
 
 fseek ($bytes, $whence=SEEK_SET)
 
 feof ()
 
 isDependencyFor ($module)
 
 error ($text)
 
 warning ($text)
 
- Protected Attributes inherited from GetId3\Handler\BaseHandler
 $getid3
 
 $data_string_flag = false
 
 $data_string = ''
 
 $data_string_position = 0
 
 $data_string_length = 0
 

Detailed Description

GetId3() by James Heinrich info@.nosp@m.geti.nosp@m.d3.or.nosp@m.g //.

module for analyzing Audible Audiobook files

Author
James Heinrich info@.nosp@m.geti.nosp@m.d3.or.nosp@m.g http://www.getid3.org

Definition at line 29 of file Aa.php.

Member Function Documentation

◆ analyze()

GetId3\Module\Audio\Aa::analyze ( )
Returns
boolean

Definition at line 36 of file Aa.php.

References $info, array, GetId3\Lib\Helper\BigEndian2Int(), GetId3\Handler\BaseHandler\fread(), GetId3\Handler\BaseHandler\fseek(), and GetId3\Lib\Helper\PrintHexBytes().

37  {
38  $info = &$this->getid3->info;
39 
40  fseek($this->getid3->fp, $info['avdataoffset'], SEEK_SET);
41  $AAheader = fread($this->getid3->fp, 8);
42 
43  $magic = "\x57\x90\x75\x36";
44  if (substr($AAheader, 4, 4) != $magic) {
45  $info['error'][] = 'Expecting "'.Helper::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.Helper::PrintHexBytes(substr($AAheader, 4, 4)).'"';
46 
47  return false;
48  }
49 
50  // shortcut
51  $info['aa'] = array();
52  $thisfile_au = &$info['aa'];
53 
54  $info['fileformat'] = 'aa';
55  $info['audio']['dataformat'] = 'aa';
56 $info['error'][] = 'Audible Audiobook (.aa) parsing not enabled in this version of GetId3Core() ['.$this->getid3->version().']';
57 return false;
58  $info['audio']['bitrate_mode'] = 'cbr'; // is it?
59  $thisfile_au['encoding'] = 'ISO-8859-1';
60 
61  $thisfile_au['filesize'] = Helper::BigEndian2Int(substr($AUheader, 0, 4));
62  if ($thisfile_au['filesize'] > ($info['avdataend'] - $info['avdataoffset'])) {
63  $info['warning'][] = 'Possible truncated file - expecting "'.$thisfile_au['filesize'].'" bytes of data, only found '.($info['avdataend'] - $info['avdataoffset']).' bytes"';
64  }
65 
66  $info['audio']['bits_per_sample'] = 16; // is it?
67  $info['audio']['sample_rate'] = $thisfile_au['sample_rate'];
68  $info['audio']['channels'] = $thisfile_au['channels'];
69 
70  //$info['playtime_seconds'] = 0;
71  //$info['audio']['bitrate'] = 0;
72  return true;
73  }
static PrintHexBytes($string, $hex=true, $spaces=true, $htmlencoding='UTF-8')
Definition: Helper.php:36
fseek($bytes, $whence=SEEK_SET)
$info
Definition: example_052.php:80
Create styles array
The data for the language used.
static BigEndian2Int($byteword, $synchsafe=false, $signed=false)
Definition: Helper.php:374
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: