Lines Matching refs:info

28 		$info = &$this->getid3->info;
30 $info['fileformat'] = 'real';
31 $info['bitrate'] = 0;
32 $info['playtime_seconds'] = 0;
34 $this->fseek($info['avdataoffset']);
36 while ($this->ftell() < $info['avdataend']) {
43 if ($this->ParseOldRAheader(substr($ChunkData, 0, 128), $info['real']['old_ra_header'])) {
44 $info['audio']['dataformat'] = 'real';
45 $info['audio']['lossless'] = false;
46 $info['audio']['sample_rate'] = $info['real']['old_ra_header']['sample_rate'];
47 $info['audio']['bits_per_sample'] = $info['real']['old_ra_header']['bits_per_sample'];
48 $info['audio']['channels'] = $info['real']['old_ra_header']['channels'];
50 …$info['playtime_seconds'] = 60 * ($info['real']['old_ra_header']['audio_bytes'] / $info['r…
51 …$info['audio']['bitrate'] = 8 * ($info['real']['old_ra_header']['audio_bytes'] / $info['p…
52 …$info['audio']['codec'] = $this->RealAudioCodecFourCClookup($info['real']['old_ra_header…
54 foreach ($info['real']['old_ra_header']['comments'] as $key => $valuearray) {
56 $info['real']['comments'][$key][] = trim($valuearray[0]);
62 unset($info['bitrate']);
63 unset($info['playtime_seconds']);
68 $info['real']['chunks'][$ChunkCounter] = array();
69 $thisfile_real_chunks_currentchunk = &$info['real']['chunks'][$ChunkCounter];
74 …unks_currentchunk['offset'] + $thisfile_real_chunks_currentchunk['length']) > $info['avdataend']) {
139 $info['playtime_seconds'] = $thisfile_real_chunks_currentchunk['duration'] / 1000;
141 $info['bitrate'] += $thisfile_real_chunks_currentchunk['avg_bit_rate'];
213 … $info['video']['resolution_x'] = $thisfile_real_chunks_currentchunk_videoinfo['width'];
214 …$info['video']['resolution_y'] = $thisfile_real_chunks_currentchunk_videoinfo['height'];
215 …$info['video']['frame_rate'] = (float) $thisfile_real_chunks_currentchunk_videoinfo['frames_p…
216 … $info['video']['codec'] = $thisfile_real_chunks_currentchunk_videoinfo['codec'];
217 …$info['video']['bits_per_sample'] = $thisfile_real_chunks_currentchunk_videoinfo['bits_per…
224 …$info['audio']['sample_rate'] = $thisfile_real_chunks_currentchunk['parsed_audio_data']['sampl…
225 …$info['audio']['bits_per_sample'] = $thisfile_real_chunks_currentchunk['parsed_audio_data']['bits_…
226 …$info['audio']['channels'] = $thisfile_real_chunks_currentchunk['parsed_audio_data']['chann…
227 if (!empty($info['audio']['dataformat'])) {
228 foreach ($info['audio'] as $key => $value) {
230 … $info['audio']['streams'][$thisfile_real_chunks_currentchunk['stream_number']][$key] = $value;
266 if (empty($info['playtime_seconds'])) {
267 …$info['playtime_seconds'] = max($info['playtime_seconds'], ($thisfile_real_chunks_currentchunk['du…
273 …$info['audio']['bitrate'] = (isset($info['audio']['bitrate']) ? $info['audio']['bitrate'] : 0) …
274 …$info['audio']['codec'] = $this->RealAudioCodecFourCClookup($thisfile_real_chunks_currentchun…
275 $info['audio']['dataformat'] = 'real';
276 $info['audio']['lossless'] = false;
281 …$info['video']['bitrate'] = (isset($info['video']['bitrate']) ? $info['video']['bitrate…
282 $info['video']['bitrate_mode'] = 'cbr';
283 $info['video']['dataformat'] = 'real';
284 $info['video']['lossless'] = false;
285 $info['video']['pixel_aspect_ratio'] = (float) 1;
289 …$info['audio']['bitrate'] = (isset($info['audio']['bitrate']) ? $info['audio']['bitrate'] : 0) …
290 $info['audio']['codec'] = 'RealAudio Lossless';
291 $info['audio']['dataformat'] = 'real';
292 $info['audio']['lossless'] = true;
295 …$info['bitrate'] = (isset($info['video']['bitrate']) ? $info['video']['bitrate'] : 0) + (isset($in…
328 $info['real']['comments'][$val][] = trim($thisfile_real_chunks_currentchunk[$key]);
368 if (!empty($info['audio']['streams'])) {
369 $info['audio']['bitrate'] = 0;
370 foreach ($info['audio']['streams'] as $key => $valuearray) {
371 $info['audio']['bitrate'] += $valuearray['bitrate'];