如何使用getid3函数检索艺术家,评论,标题和其他ID3标签


How to retrieve artist, comments, title and other ID3 tags using getid3 function?

我只能使用下面的代码检索音频的持续时间和文件大小。但是如何使用getid3函数检索艺术家、评论和标题等其他数据呢?

 $getID3 = new getID3;
    $filename = 'mp3/file.mp3';
    $file = $getID3->analyze($filename);
    echo"Duration: ".$file['playtime_string'];
    echo " / Filesize: ".$file['filesize']." bytes<br />";

执行print_r($file)以查看数组的所有元素

或者,产品的文档可以显示各自的其他数组元素。