有人可以向我解释如何使用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
?
答案 0 :(得分:3)
$mp3->update_tags({name => 'blah blah'}); # Edit in-memory, and commit to file