Searched refs:headerstring (Results 1 – 3 of 3) sorted by relevance
| /plugin/jukebox/id3/ |
| D | module.audio.mp3.php | 426 $headerstring = fread($fd, 226); // LAME header at offset 36 + 190 bytes of Xing/LAME data 434 $head4 = substr($headerstring, 0, 4); 485 $thisfile_mpeg_audio['crc'] = getid3_lib::BigEndian2Int(substr($headerstring, 4, 2)); 558 if (substr($headerstring, 4 + 32, 4) == 'VBRI') { 566 $SideInfoData = substr($headerstring, 4 + 2, 32); 570 …$thisfile_mpeg_audio['VBR_encoder_version'] = getid3_lib::BigEndian2Int(substr($headerstring, … 571 …$thisfile_mpeg_audio['VBR_encoder_delay'] = getid3_lib::BigEndian2Int(substr($headerstring, … 572 …$thisfile_mpeg_audio['VBR_quality'] = getid3_lib::BigEndian2Int(substr($headerstring, … 573 …$thisfile_mpeg_audio['VBR_bytes'] = getid3_lib::BigEndian2Int(substr($headerstring, … 574 …$thisfile_mpeg_audio['VBR_frames'] = getid3_lib::BigEndian2Int(substr($headerstring, … [all …]
|
| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | module.audio.mp3.php | 458 $headerstring = $this->fread(226); // LAME header at offset 36 + 190 bytes of Xing/LAME data 466 $head4 = substr($headerstring, 0, 4); 513 $thisfile_mpeg_audio['crc'] = getid3_lib::BigEndian2Int(substr($headerstring, 4, 2)); 585 if (substr($headerstring, 4 + 32, 4) == 'VBRI') { 593 $SideInfoData = substr($headerstring, 4 + 2, 32); 597 …$thisfile_mpeg_audio['VBR_encoder_version'] = getid3_lib::BigEndian2Int(substr($headerstring, … 598 …$thisfile_mpeg_audio['VBR_encoder_delay'] = getid3_lib::BigEndian2Int(substr($headerstring, … 599 …$thisfile_mpeg_audio['VBR_quality'] = getid3_lib::BigEndian2Int(substr($headerstring, … 600 …$thisfile_mpeg_audio['VBR_bytes'] = getid3_lib::BigEndian2Int(substr($headerstring, … 601 …$thisfile_mpeg_audio['VBR_frames'] = getid3_lib::BigEndian2Int(substr($headerstring, … [all …]
|
| /plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
| D | demo.mp3header.php | 1390 $headerstring = ''; variable 1392 $headerstring .= chr(hexdec($textbyte)); 1397 $MPEGheaderRawArray = MPEGaudioHeaderDecode(substr($headerstring, 0, 4)); 1418 $MP3fileInfo['crc'] = BigEndian2Int(substr($headerstring, 4, 2)); 1683 …$headerstring = fread($fd, 1441); // worse-case max length = 32kHz @ 320kbps layer 3 = 1441 bytes/… 1691 $head4 = substr($headerstring, 0, 4); 1734 $ThisFileInfo['mpeg']['audio']['crc'] = BigEndian2Int(substr($headerstring, 4, 2)); 1806 if (substr($headerstring, 4 + 32, 4) == 'VBRI') { 1814 $SideInfoData = substr($headerstring, 4 + 2, 32); 1818 …$ThisFileInfo['mpeg']['audio']['VBR_encoder_version'] = BigEndian2Int(substr($headerstring, $F… [all …]
|