getid3_flac::parseVORBIS_COMMENT()
{} It's a method of the class: getid3_flac{}
No Hooks.
Return
true|false
.
Usage
// private - for code of main (parent) class only $result = $this->parseVORBIS_COMMENT( $BlockData );
- $BlockData(string) (required)
- -
Code of getid3_flac::parseVORBIS_COMMENT() getid3 flac::parseVORBIS COMMENT WP 6.0
private function parseVORBIS_COMMENT($BlockData) { $info = &$this->getid3->info; $getid3_ogg = new getid3_ogg($this->getid3); if ($this->isDependencyFor('matroska')) { $getid3_ogg->setStringMode($this->data_string); } $getid3_ogg->ParseVorbisComments(); if (isset($info['ogg'])) { unset($info['ogg']['comments_raw']); $info['flac']['VORBIS_COMMENT'] = $info['ogg']; unset($info['ogg']); } unset($getid3_ogg); return true; }