编辑mp3 ID3标签的命令行工具
我想要一个在 Windows Xp(甚至跨平台)上运行的简单命令行工具,其功能类似于 Mp3tag 来编辑 mp3 ID3 标签。我主要想根据艺术家、流派等来组织我的音乐,因此一个轻量级的工具可以询问用户要编辑哪个标签,然后更改目录中所有 mp3 文件的标签,这会很好。我可以使用 perl 来做到这一点吗?
I want a simple command line tool running on Windows Xp(or even cross platform) similar in functionality to Mp3tag to edit mp3 ID3 tags. I mostly want to organize my music according to artist , genre etc so a lightweight tool which can ask the user which tag to edit and then change all the mp3 files' tags in a directory will be good. Can I use perl to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用 http://eyed3.nicfit.net/ 。它是用Python写的。 python 可以在 Windows 上运行。
use http://eyed3.nicfit.net/ . it's in python. python works on windows.
是的,确实可以使用 Perl 来做到这一点。 (以及支持此类模块的其他语言)。在 CPAN 中搜索 ID3 标签模块。
yes indeed, you can use Perl to do it. (as well as other languages with such modules support). Search CPAN for ID3 tag modules.
当然可以;请参阅 是否有用于 ID3 元数据的 Perl 或 Python 库? 。
Sure you can; see Is there a Perl or Python library for ID3 metadata?.
我在 Debian 中使用 mpgtx,但我看到他们有 Windows 版本 http://mpgtx.sourceforge.net/ #Download
我使用的命令如下:
I use mpgtx in my Debian, but I see they have a Windows version at http://mpgtx.sourceforge.net/#Download
The commands I use are as follows:
我刚刚找到了从控制台执行此类工作的最强大组合:PowerShell 和 TagLib#。
在 http://huddledmasses.org/editing-media-tags-from- 找到它powershell/
它就像一个魅力!
I just found the most powerful combination for doing this kind of work from a console: PowerShell and TagLib#.
Found it at http://huddledmasses.org/editing-media-tags-from-powershell/
It works like a charm!
我为此使用 BulkID3。 http://sourceforge.net/projects/bulkid3
我认为它不适用于 Windows,但它是开源。
I use BulkID3 for this. http://sourceforge.net/projects/bulkid3
I don't think it works on Windows, but it's open source.