PHP 中的 MP3 和 OGG 标签
除了 https://www.php.net/manual/en/book.ktaglib .php 和 http://getid3.sourceforge.net/ 有谁知道任何其他如何在 PHP 中使用音频文件上的标签?
我需要读取和写入它们,而 KTagLib 似乎对这项工作来说有点太多了,而且也没有真正获得文档,而 getID3 似乎只写入 ID3v1 标签。
Except https://www.php.net/manual/en/book.ktaglib.php and http://getid3.sourceforge.net/ does anyone know of any other way to work from PHP with tags on audio files?
I need to read and write them, and KTagLib seems a little too much for the job, and also don't really get the documentation, and getID3 seems to only write ID3v1 tags.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 ktaglib:
with ktaglib:
PHP 中还有其他 ID3 函数仅供阅读:http://php. oregonstate.edu/manual/en/book.id3.php
你应该尝试 getID3() 的稳定版本,测试版有这样的评论:
在稳定版中,应该支持它们(如果没有撒谎的话):
There are also other ID3 functions in PHP just for reading: http://php.oregonstate.edu/manual/en/book.id3.php
You should try stable version of getID3(), there is this comment for beta:
In stable, they should be supported (if the don't lie):
如果您无法使用 id3 标签的 php 模块(有时您无法在某些主机上安装模块),您可以使用此功能:
If you can't use the php module for the id3 tags (sometimes you can't install modules on some hostings), you can use this function:
目前,要将 vorbis 标签写入 ogg/vorbis 文件,GetId3 需要在服务器上安装 vorbiscomment。
At the moment, to write vorbis tags to an ogg/vorbis file, GetId3 requires vorbiscomment installed on the server.