PHP中的id3标签编码问题
我现在在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 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 couldmb_convert_encoding
to convert tags to a common encoding to be saved back to the files.