/**
* @return float|false
*/
public function readDouble() { return getid3_lib::
BigEndian2Float($this->
read(8
));
} /**
* @return string
*/
public function readUTF() { $length =
$this->
readInt();
return $this->
read($length);
} /**
* @return string
*/
public function readLongUTF() { $length =
$this->
readLong();
return $this->
read($length);
}