免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2739 | 回复: 0
打印 上一主题 下一主题

请教ktaglib的使用问题[已解决] [复制链接]

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-10-12 13:34 |只看该作者 |倒序浏览
本帖最后由 昭襄王 于 2010-10-12 16:39 编辑

ktaglib是KDE的taglib的php移植。
用途:读写音频id3。
php手册的描述:
KTaglib is an object oriented binding to the taglib library from the KDE project used in projects like Amarok to read and write ID3 and Ogg tags. The library also provides access to audio information. The bindings are designed usually follow the underlying C++ API, but were changed whenever there is a more PHP-like way.
Note:
At the moment ktaglib is able to read and write ID3v1 and ID3v2 tags.

我用pecl成功安装了ktaglib,经测试,可以很好的处理各种语言编码的id3标签。
用法大体如下:

  1. <?php
  2. /*
  3. getmusicinfo.php
  4. */
  5. function MusicInfo($mp3){
  6.   $mpeg = new KTaglib_MPEG_File($mp3);
  7.   //var_dump($mpeg);
  8.   $mp3info[] = $mpeg->getID3v1Tag()->getTitle();
  9.   $mp3info[] = $mpeg->getID3v1Tag()->getArtist();
  10.   $mp3info[] = $mpeg->getID3v1Tag()->getGenre();
  11.   $mp3info[] = $mpeg->getID3v1Tag()->getAlbum();
  12.   $mp3info[] = $mpeg->getAudioProperties()->getBitrate();
  13.   return $mp3info;

  14. }
  15. // $aa=MusicInfo("Ice.Cube-I.Am.The.West-(Retail)-2010-[NoFS]/06-Ice Cube Ft. OMG, Doughboy, WC And Maylay- Ya'll Know Who I Am (Prod. by Willy Will, Doughboy).mp3");
  16. // print_r($aa);
复制代码
但是问题来了,当我需要把ktaglib用到循环中批量处理列表中的mp3时,出现了无法解析的现象:浏览器试图下载php脚本。

  1. <?php
  2. $mp3dir = "/home/himan/音乐/";
  3. `find $mp3dir -name "*.mp3">currentlist`;
  4. $rfiles = file_get_contents("currentlist");
  5. $rows = explode("\n",$rfiles);
  6. require_once 'getmusicinfo.php';

  7. foreach($rows as $mp3) {
  8.    echo $mp3."<br>";
  9.    $infos = MusicInfo($mp3);
  10.    print_r($infos);
  11. }
复制代码
环境:lamp
补充:
[1] 尝试过另外一个比较古老的扩展:ID3,可以用于循环,但乱码问题很严重,不能很好的处理ID3v2。
[2] 当currentlist比较小的时候是可以正常解析的。
[3] php手册上,似乎ktaglib是可以静态调用的,但是我尝试了一下,不行。网上找不到有用的使用范例。
用array_walk代替foreach也不行。
求解决解析的方法,或ktaglib的替代方案。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP