Home
last modified time | relevance | path

Searched full:info (Results 1 – 25 of 3852) sorted by relevance

12345678910>>...155

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
Dmodule.audio.la.php4 /// getID3() by James Heinrich <info@getid3.org> //
28 $info = &$this->getid3->info;
31 $this->fseek($info['avdataoffset']);
38 $info['fileformat'] = 'la';
39 $info['audio']['dataformat'] = 'la';
40 $info['audio']['lossless'] = true;
42 $info['la']['version_major'] = (int) substr($rawdata, $offset + 2, 1);
43 $info['la']['version_minor'] = (int) substr($rawdata, $offset + 3, 1);
44 …$info['la']['version'] = (float) $info['la']['version_major'] + ($info['la']['version_minor'…
47 $info['la']['uncompressed_size'] = getid3_lib::LittleEndian2Int(substr($rawdata, $offset, 4));
[all …]
Dmodule.audio.lpac.php4 /// getID3() by James Heinrich <info@getid3.org> //
28 $info = &$this->getid3->info;
30 $this->fseek($info['avdataoffset']);
34 $this->error('Expected "LPAC" at offset '.$info['avdataoffset'].', found "'.$StreamMarker.'"');
37 $info['avdataoffset'] += 14;
39 $info['fileformat'] = 'lpac';
40 $info['audio']['dataformat'] = 'lpac';
41 $info['audio']['lossless'] = true;
42 $info['audio']['bitrate_mode'] = 'vbr';
44 $info['lpac']['file_version'] = getid3_lib::BigEndian2Int(substr($LPACheader, 4, 1));
[all …]
Dmodule.audio-video.nsv.php4 /// getID3() by James Heinrich <info@getid3.org> //
27 $info = &$this->getid3->info;
29 $this->fseek($info['avdataoffset']);
35 $info['fileformat'] = 'nsv';
36 $info['audio']['dataformat'] = 'nsv';
37 $info['video']['dataformat'] = 'nsv';
38 $info['audio']['lossless'] = false;
39 $info['video']['lossless'] = false;
45 $info['fileformat'] = 'nsv';
46 $info['audio']['dataformat'] = 'nsv';
[all …]
Dmodule.audio.tta.php4 /// getID3() by James Heinrich <info@getid3.org> //
27 $info = &$this->getid3->info;
29 $info['fileformat'] = 'tta';
30 $info['audio']['dataformat'] = 'tta';
31 $info['audio']['lossless'] = true;
32 $info['audio']['bitrate_mode'] = 'vbr';
34 $this->fseek($info['avdataoffset']);
37 $info['tta']['magic'] = substr($ttaheader, 0, 3);
39 if ($info['tta']['magic'] != $magic) {
40 …_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexB…
[all …]
Dmodule.audio.ogg.php4 /// getID3() by James Heinrich <info@getid3.org> //
30 $info = &$this->getid3->info;
32 $info['fileformat'] = 'ogg';
35 if (isset($info['id3v2'])) {
38 if (isset($info['id3v1'])) {
41 if (isset($info['ape'])) {
48 $this->fseek($info['avdataoffset']);
51 $info['ogg']['pageheader'][$oggpageinfo['page_seqno']] = $oggpageinfo;
55 unset($info['fileformat']);
56 unset($info['ogg']);
[all …]
Dmodule.audio.wavpack.php4 /// getID3() by James Heinrich <info@getid3.org> //
26 $info = &$this->getid3->info;
28 $this->fseek($info['avdataoffset']);
34 if ($this->ftell() >= $info['avdataend']) {
39 isset($info['wavpack']['blockheader']['total_samples']) &&
40 isset($info['wavpack']['blockheader']['block_samples']) &&
41 ($info['wavpack']['blockheader']['total_samples'] > 0) &&
42 ($info['wavpack']['blockheader']['block_samples'] > 0) &&
43 … (!isset($info['wavpack']['riff_trailer_size']) || ($info['wavpack']['riff_trailer_size'] <= 0)) &&
44 …((isset($info['wavpack']['config_flags']['md5_checksum']) && ($info['wavpack']['config_flags']['md…
[all …]
Dmodule.audio.aac.php4 /// getID3() by James Heinrich <info@getid3.org> //
27 $info = &$this->getid3->info;
28 $this->fseek($info['avdataoffset']);
41 $info = &$this->getid3->info;
42 $info['fileformat'] = 'aac';
43 $info['audio']['dataformat'] = 'aac';
44 $info['audio']['lossless'] = false;
46 $this->fseek($info['avdataoffset']);
75 $info['aac']['header_type'] = 'ADIF';
77 $info['aac']['header']['mpeg_version'] = 4;
[all …]
Dmodule.audio.rkau.php4 /// getID3() by James Heinrich <info@getid3.org> //
27 $info = &$this->getid3->info;
29 $this->fseek($info['avdataoffset']);
33 …$this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].…
37 $info['fileformat'] = 'rkau';
38 $info['audio']['dataformat'] = 'rkau';
39 $info['audio']['bitrate_mode'] = 'vbr';
41 $info['rkau']['raw']['version'] = getid3_lib::LittleEndian2Int(substr($RKAUHeader, 3, 1));
42 …$info['rkau']['version'] = '1.'.str_pad($info['rkau']['raw']['version'] & 0x0F, 2, '0', S…
43 if (($info['rkau']['version'] > 1.07) || ($info['rkau']['version'] < 1.06)) {
[all …]
Dmodule.audio.avr.php4 /// getID3() by James Heinrich <info@getid3.org> //
27 $info = &$this->getid3->info;
29 // http://cui.unige.ch/OSG/info/AudioFormats/ap11.html
69 $info['fileformat'] = 'avr';
71 $this->fseek($info['avdataoffset']);
74 $info['avr']['raw']['magic'] = substr($AVRheader, 0, 4);
76 if ($info['avr']['raw']['magic'] != $magic) {
77 …_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexB…
78 unset($info['fileformat']);
79 unset($info['avr']);
[all …]
Dmodule.audio.dsf.php4 /// getID3() by James Heinrich <info@getid3.org> //
28 $info = &$this->getid3->info;
30 $info['fileformat'] = 'dsf';
31 $info['audio']['dataformat'] = 'dsf';
32 $info['audio']['lossless'] = true;
33 $info['audio']['bitrate_mode'] = 'cbr';
35 $this->fseek($info['avdataoffset']);
39 $info['dsf']['dsd']['magic'] = substr($dsfheader, $headeroffset, 4);
42 if ($info['dsf']['dsd']['magic'] != $magic) {
43 …_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexB…
[all …]
Dmodule.audio.flac.php4 /// getID3() by James Heinrich <info@getid3.org> //
33 $info = &$this->getid3->info;
35 $this->fseek($info['avdataoffset']);
38 …return $this->error('Expecting "'.getid3_lib::PrintHexBytes(self::syncword).'" at offset '.$info['…
40 $info['fileformat'] = 'flac';
41 $info['audio']['dataformat'] = 'flac';
42 $info['audio']['bitrate_mode'] = 'vbr';
43 $info['audio']['lossless'] = true;
53 $info = &$this->getid3->info;
63 if (($BlockOffset + 4 + $BlockLength) > $info['avdataend']) {
[all …]
Dmodule.graphic.svg.php4 /// getID3() by James Heinrich <info@getid3.org> //
27 $info = &$this->getid3->info;
29 $this->fseek($info['avdataoffset']);
33 $info['svg']['xml']['raw'] = $matches;
36 $info['svg']['doctype']['raw'] = $matches;
39 $info['svg']['svg']['raw'] = $matches;
41 if (isset($info['svg']['svg']['raw'])) {
45 if (!isset($info['svg'][$section_to_fix])) {
49 while (preg_match('/ "([^"]+)"/', $info['svg'][$section_to_fix]['raw'][1], $matches)) {
51 …$info['svg'][$section_to_fix]['raw'][1] = str_replace($matches[0], '', $info['svg'][$section_to_fi…
[all …]
Dmodule.audio-video.ivf.php3 /// getID3() by James Heinrich <info@getid3.org> //
26 $info = &$this->getid3->info;
28 $info['fileformat'] = 'ivf';
29 $info['video']['dataformat'] = 'ivf';
31 $this->fseek($info['avdataoffset']);
37 …$info['ivf']['header']['signature'] = substr($IVFheader, …
38 …$info['ivf']['header']['version'] = getid3_lib::LittleEndian2Int(substr($IVFheader, …
39 …$info['ivf']['header']['headersize'] = getid3_lib::LittleEndian2Int(substr($IVFheader, …
40 …$info['ivf']['header']['fourcc'] = substr($IVFheader, …
41 …$info['ivf']['header']['resolution_x'] = getid3_lib::LittleEndian2Int(substr($IVFheader, 1…
[all …]
Dmodule.audio.dts.php4 /// getID3() by James Heinrich <info@getid3.org> //
49 $info = &$this->getid3->info;
50 $info['fileformat'] = 'dts';
52 $this->fseek($info['avdataoffset']);
59 $info['dts']['raw']['magic'] = $sync;
70 unset($info['fileformat']);
71 …array_map('getid3_lib::PrintHexBytes', self::$syncwords)).'" at offset '.$info['avdataoffset'].', …
94 $info['dts']['raw']['frame_type'] = $this->readBinData($fhBS, 1);
95 $info['dts']['raw']['deficit_samples'] = $this->readBinData($fhBS, 5);
96 $info['dts']['flags']['crc_present'] = (bool) $this->readBinData($fhBS, 1);
[all …]
Dmodule.audio-video.mpeg.php4 /// getID3() by James Heinrich <info@getid3.org> //
39 $info = &$this->getid3->info;
41 $info['fileformat'] = 'mpeg';
42 $this->fseek($info['avdataoffset']);
45 …$MPEGstreamBaseOffset = 0; // how far are we from the beginning of the file data ($info['avdataoff…
80 …if (!empty($info['mpeg']['video']['bitrate_mode']) && ($info['mpeg']['video']['bitrate_mode'] == '…
99 $info['video']['codec'] = 'MPEG-1'; // will be updated if extension_start_code found
104 …$info['mpeg']['video']['raw']['horizontal_size_value'] = self::readBitsFromStream($bitstream…
105 …$info['mpeg']['video']['raw']['vertical_size_value'] = self::readBitsFromStream($bitstream…
106 …$info['mpeg']['video']['raw']['aspect_ratio_information'] = self::readBitsFromStream($bitstream…
[all …]
Dmodule.audio.bonk.php4 /// getID3() by James Heinrich <info@getid3.org> //
27 $info = &$this->getid3->info;
30 $info['bonk'] = array();
31 $thisfile_bonk = &$info['bonk'];
33 $thisfile_bonk['dataoffset'] = $info['avdataoffset'];
34 $thisfile_bonk['dataend'] = $info['avdataend'];
61 if (empty($info['audio']['encoder'])) {
62 $info['audio']['encoder'] = 'Extended BONK v0.9+';
79 if (empty($info['audio']['encoder'])) {
80 $info['audio']['encoder'] = 'BONK v0.4';
[all …]
Dmodule.audio.dss.php4 /// getID3() by James Heinrich <info@getid3.org> //
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';
[all …]
Dmodule.audio-video.swf.php4 /// getID3() by James Heinrich <info@getid3.org> //
29 $info = &$this->getid3->info;
31 $info['fileformat'] = 'swf';
32 $info['video']['dataformat'] = 'swf';
36 $this->fseek($info['avdataoffset']);
38 …$SWFfileData = $this->fread($info['avdataend'] - $info['avdataoffset']); // 8 + 2 + 2 + max(9) byt…
40 $info['swf']['header']['signature'] = substr($SWFfileData, 0, 3);
41 switch ($info['swf']['header']['signature']) {
43 $info['swf']['header']['compressed'] = false;
47 $info['swf']['header']['compressed'] = true;
[all …]
Dmodule.graphic.gif.php4 /// getID3() by James Heinrich <info@getid3.org> //
32 $info = &$this->getid3->info;
34 $info['fileformat'] = 'gif';
35 $info['video']['dataformat'] = 'gif';
36 $info['video']['lossless'] = true;
37 $info['video']['pixel_aspect_ratio'] = (float) 1;
39 $this->fseek($info['avdataoffset']);
43 …$info['gif']['header']['raw']['identifier'] = substr($GIFh…
47 if ($info['gif']['header']['raw']['identifier'] != $magic) {
48 …_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexB…
[all …]
Dmodule.audio.optimfrog.php4 /// getID3() by James Heinrich <info@getid3.org> //
28 $info = &$this->getid3->info;
30 $info['fileformat'] = 'ofr';
31 $info['audio']['dataformat'] = 'ofr';
32 $info['audio']['bitrate_mode'] = 'vbr';
33 $info['audio']['lossless'] = true;
35 $this->fseek($info['avdataoffset']);
47 …$this->error('Expecting "*RIFF" or "OFR " at offset '.$info['avdataoffset'].', found "'.getid3_lib…
48 unset($info['fileformat']);
58 $info = &$this->getid3->info;
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DCSSDefinition.php16 public $info = array(); variable in HTMLPurifier_CSSDefinition
19 * Constructs the info array. The meat of this class.
24 $this->info['text-align'] = new HTMLPurifier_AttrDef_Enum(
30 $this->info['border-bottom-style'] =
31 $this->info['border-right-style'] =
32 $this->info['border-left-style'] =
33 $this->info['border-top-style'] = new HTMLPurifier_AttrDef_Enum(
49 $this->info['border-style'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_style);
51 $this->info['clear'] = new HTMLPurifier_AttrDef_Enum(
55 $this->info['float'] = new HTMLPurifier_AttrDef_Enum(
[all …]
DAttrTypes.php12 protected $info = array(); variable in HTMLPurifier_AttrTypes
15 * Constructs the info array, supplying default implementations for attribute
28 $this->info['Enum'] = new HTMLPurifier_AttrDef_Enum();
29 $this->info['Bool'] = new HTMLPurifier_AttrDef_HTML_Bool();
31 $this->info['CDATA'] = new HTMLPurifier_AttrDef_Text();
32 $this->info['ID'] = new HTMLPurifier_AttrDef_HTML_ID();
33 $this->info['Length'] = new HTMLPurifier_AttrDef_HTML_Length();
34 $this->info['MultiLength'] = new HTMLPurifier_AttrDef_HTML_MultiLength();
35 $this->info['NMTOKENS'] = new HTMLPurifier_AttrDef_HTML_Nmtokens();
36 $this->info['Pixels'] = new HTMLPurifier_AttrDef_HTML_Pixels();
[all …]
/plugin/jukebox/id3/
Dgetid3.php3 /// getID3() by James Heinrich <info@getid3.org> //
37 …var $option_extra_info = true; // Calculate additional info such as bitrate, channelmode e…
164 $this->info = array();
165 $this->info['GETID3_VERSION'] = GETID3_VERSION;
198 $this->info['filesize'] = filesize($filename);
206 if ((($this->info['filesize'] != 0) && (ftell($fp) == 0)) ||
207 ($this->info['filesize'] < 0) ||
209 unset($this->info['filesize']);
216 $this->info['avdataoffset'] = 0;
217 $this->info['avdataend'] = $this->info['filesize'];
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
DImageWriter.php33 foreach ($this->mpdf->images as $file => $info) {
41 $this->writer->write('/Width ' . $info['w']);
42 $this->writer->write('/Height ' . $info['h']);
44 if (isset($info['interpolation']) && $info['interpolation']) {
48 if (isset($info['masked'])) {
54 if (isset($info['icc']) && ( $info['icc'] !== false)) {
58 } elseif ($info['cs'] === 'Indexed') {
62 …$this->writer->write('/ColorSpace [/Indexed /DeviceRGB ' . (strlen($info['pal']) / 3 - 1) . ' ' . …
64 $this->writer->write('/ColorSpace /' . $info['cs']);
65 if ($info['cs'] === 'DeviceCMYK') {
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
Ddemo.audioinfo.class.php3 /// getID3() by James Heinrich <info@getid3.org> //
23 // | users want to extract specific info. Modifying getID3() files is a |
33 // | print_r($au->Info('file.flac'); |
59 private $info; variable in AudioInfo
82 * @param string $file Audio file to extract info from.
87 public function Info($file) { function in AudioInfo
90 $this->info = $this->getID3->analyze($file);
93 if (isset($this->info['error'])) {
94 return array ('error' => $this->info['error']);
99info['fileformat']) ? $this->info['fileformat'] : '').'/'.(isset($this->info['audio']['dataformat'…
[all …]

12345678910>>...155