PHP中的id3标签编码问题

发布于 2024-11-09 15:06:16 字数 210 浏览 2 评论 0原文

我现在在 getid3 库的帮助下从我的 php 页面中的 MP3 文件中提取 id3 标签,该库是一个用 php 编写的提取 id3 标签的库。真正令人兴奋的是,部分元数据是中文或俄语的。当遇到此类标签​​时,字符将无法正确编码。如果标签是英文的,一切都会顺利。

我认为这一定与编码问题有关。如何检测 id3 标签的编码方式以及如何回显正确的字符?

谢谢并致以最诚挚的问候

I'm now extracting id3 tags from MP3 files in my php page with the help of getid3 library, which is a lib extracting id3 tags written in php. Something really wired is that part of the metadata is in Chinese or Russian. When those kind of tags are encountered, the characters can't be encoded correctly. Things go well if tags are English.

I think this must be something related to encoding problem. How can I detect how the id3 tags are encoded and how to echo the right character out?

Thanks and Best Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不羁少年 2024-11-16 15:06:16

您可以尝试使用 mb-detect-encoding php 函数。请参阅 php.net。根据您的需要,您可以 mb_convert_encoding 将标签转换为通用编码以保存回文件。

You could try to use the mb-detect-encoding php function. See php.net. Depending on your needs, you could mb_convert_encoding to convert tags to a common encoding to be saved back to the files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文