- 论坛徽章:
- 1
|
本帖最后由 昭襄王 于 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标签。
用法大体如下:
- <?php
- /*
- getmusicinfo.php
- */
- function MusicInfo($mp3){
- $mpeg = new KTaglib_MPEG_File($mp3);
- //var_dump($mpeg);
- $mp3info[] = $mpeg->getID3v1Tag()->getTitle();
- $mp3info[] = $mpeg->getID3v1Tag()->getArtist();
- $mp3info[] = $mpeg->getID3v1Tag()->getGenre();
- $mp3info[] = $mpeg->getID3v1Tag()->getAlbum();
- $mp3info[] = $mpeg->getAudioProperties()->getBitrate();
- return $mp3info;
- }
- // $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");
- // print_r($aa);
复制代码 但是问题来了,当我需要把ktaglib用到循环中批量处理列表中的mp3时,出现了无法解析的现象:浏览器试图下载php脚本。
- <?php
- $mp3dir = "/home/himan/音乐/";
- `find $mp3dir -name "*.mp3">currentlist`;
- $rfiles = file_get_contents("currentlist");
- $rows = explode("\n",$rfiles);
- require_once 'getmusicinfo.php';
- foreach($rows as $mp3) {
- echo $mp3."<br>";
- $infos = MusicInfo($mp3);
- print_r($infos);
- }
复制代码 环境:lamp
补充:
[1] 尝试过另外一个比较古老的扩展:ID3,可以用于循环,但乱码问题很严重,不能很好的处理ID3v2。
[2] 当currentlist比较小的时候是可以正常解析的。
[3] php手册上,似乎ktaglib是可以静态调用的,但是我尝试了一下,不行。网上找不到有用的使用范例。
用array_walk代替foreach也不行。
求解决解析的方法,或ktaglib的替代方案。 |
|