【问题标题】:How to retrieve artist, comments, title and other ID3 tags using getid3 function?如何使用 getid3 函数检索艺术家、评论、标题和其他 ID3 标签?
【发布时间】:2013-04-30 07:05:06
【问题描述】:

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

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

【问题讨论】:

    标签: php id3 getid3


    【解决方案1】:

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

    或者,产品的文档可能会显示相应的其他数组元素。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-01-13
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多