Lines Matching refs:info

27 		$info = &$this->getid3->info;
29 $this->fseek($info['avdataoffset']);
33 …$this->error('Expecting "[02-08] 64 73 [73|32]" at offset '.$info['avdataoffset'].', found "'.geti…
38 $info['encoding'] = 'ISO-8859-1'; // not certain, but assumed
39 $info['dss'] = array();
41 $info['fileformat'] = 'dss';
42 …$info['mime_type'] = 'audio/x-'.substr($DSSheader, 1, 3); // "audio/x-dss" or "audio/x…
43 …$info['audio']['dataformat'] = substr($DSSheader, 1, 3); // "dss" or …
44 $info['audio']['bitrate_mode'] = 'cbr';
46 …$info['dss']['version'] = ord(substr($DSSheader, 0, 1));
47 …$info['dss']['hardware'] = trim(substr($DSSheader, 12, 16))…
48 …$info['dss']['unknown1'] = getid3_lib::LittleEndian2Int(substr($DSSheader, 28, 4));
50 …$info['dss']['date_create_unix'] = $this->DSSdateStringToUnixDate(substr($DSSheader, 38, 12));
51 …$info['dss']['date_complete_unix'] = $this->DSSdateStringToUnixDate(substr($DSSheader, 50, 12));
52 …$info['dss']['playtime_sec'] = ((int) substr($DSSheader, 62, 2) * 3600) + ((int) substr($DSS…
53 if ($info['dss']['version'] <= 3) {
54 …$info['dss']['playtime_ms'] = getid3_lib::LittleEndian2Int(substr($DSSheader, 512, 4))…
55 …$info['dss']['priority'] = ord(substr($DSSheader, 793, 1));
56 …$info['dss']['comments'] = trim(substr($DSSheader, 798, 100));
57 …$info['dss']['sample_rate_index'] = ord(substr($DSSheader, 1538, 1))…
58 …$info['audio']['sample_rate'] = $this->DSSsampleRateLookup($info['dss']['sample_rate_index']);
60 …ntation or format specifications would be welcome. This file is version '.$info['dss']['version']);
63 …$info['audio']['bits_per_sample'] = 16; // maybe, maybe not -- most compressed audio formats don'…
64 $info['audio']['channels'] = 1;
66 …if (!empty($info['dss']['playtime_ms']) && (floor($info['dss']['playtime_ms'] / 1000) == $info['ds…
67 $info['playtime_seconds'] = $info['dss']['playtime_ms'] / 1000;
69 $info['playtime_seconds'] = $info['dss']['playtime_sec'];
70 if (!empty($info['dss']['playtime_ms'])) {
71 …'playtime_ms ('.number_format($info['dss']['playtime_ms'] / 1000, 3).') does not match playtime_se…
74 $info['audio']['bitrate'] = ($info['filesize'] * 8) / $info['playtime_seconds'];