如何在MP3文件中添加用户定义的标签?

时间:2011-01-31 10:15:05

标签: perl

有人可以向我解释如何使用Perl中的MP3::Tag模块在​​MP3文件中添加用户定义的标签吗?我做了一些示例程序。

# Created an object
$mp3 = MP3::Tag->new($filename);

# Getting the already defined tags for the file
@tags = $mp3->get_tags();

我的问题是:如何添加用户定义的标记,例如标记Name

1 个答案:

答案 0 :(得分:3)

module's synopsis

略微编辑
$mp3->update_tags({name => 'blah blah'});    # Edit in-memory, and commit to file