如何使用 C++ 在 Node 中编辑歌曲元数据?
我正在尝试在 Node 中制作一个程序,自动填充歌曲的元数据(专辑、艺术家、名称等)。
是否有一个模块可以让我做到这一点?如果没有,我该如何用 C++ 编写一个?
I am trying to make a program in Node that automatically fills in metadata for a song (album,artist,name,etc.)
Is there a module out there that would let me do this? If not, how would I write one in C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在谈论 ID3 标签,您可以尝试 Tim Smart 的 node-id3。如果你刚刚安装了 npm:
它似乎是使用异步调用用 JS 编写的。
If you're talking about ID3 tags, you can try Tim Smart's node-id3. If you have npm installed just:
It seems written in JS using async calls.