Cosmetics

This commit is contained in:
Markus Birth 2024-05-28 01:23:52 +01:00
parent 2a98464bbe
commit 4b2cbfb384

View File

@ -298,7 +298,7 @@ class Mp3Info
$this->fileObj->seekTo($this->fileObj->getFileSize() - 128); $this->fileObj->seekTo($this->fileObj->getFileSize() - 128);
if ($this->fileObj->getBytes(3) == self::TAG1_SYNC) { if ($this->fileObj->getBytes(3) == self::TAG1_SYNC) {
if ($mode & self::TAGS) { if ($mode & self::TAGS) {
$audioSize -= $this->readId3v1Body(); $audioSize -= $this->_readId3v1();
} else { } else {
$audioSize -= 128; $audioSize -= 128;
} }
@ -438,19 +438,19 @@ class Mp3Info
/** /**
* Reads id3v1 tag. * Reads id3v1 tag.
* *
* @link https://id3.org/ID3v1 * @link https://id3.org/ID3v1
* @return int Returns length of id3v1 tag. * @return int Returns length of id3v1 tag.
*/ */
private function readId3v1Body(): int private function _readId3v1(): int
{ {
$this->tags1['song'] = trim($this->fileObj->getBytes(30)); $this->tags1['song'] = trim($this->fileObj->getBytes(30));
$this->tags1['artist'] = trim($this->fileObj->getBytes(30)); $this->tags1['artist'] = trim($this->fileObj->getBytes(30));
$this->tags1['album'] = trim($this->fileObj->getBytes(30)); $this->tags1['album'] = trim($this->fileObj->getBytes(30));
$this->tags1['year'] = trim($this->fileObj->getBytes(4)); $this->tags1['year'] = trim($this->fileObj->getBytes(4));
$comment = $this->fileObj->getBytes(30); $comment = $this->fileObj->getBytes(30);
if ($comment[28] == "\x00" && $comment[29] != "\x00") { if ($comment[28] == "\x00" && $comment[29] != "\x00") {
// id3v1.1 - last Byte of comment is trackNo // id3v1.1 - last Byte of comment is trackNo
$this->tags1['track'] = ord($comment[29]); $this->tags1['track'] = ord($comment[29]);
$this->tags1['comment'] = trim(substr($comment, 0, 28)); $this->tags1['comment'] = trim(substr($comment, 0, 28));
} else { } else {
// id3v1.0 // id3v1.0