in reply to Re^3: Error with MP3 tags: Writing of ID3v2.4 is not fully supported (prohibited now via `write_v24').
in thread Error with MP3 tags: Writing of ID3v2.4 is not fully supported (prohibited now via `write_v24').
fixed it and it ran perfectly. full code now is:MP3::Tag->config(write_v24 => 1);
#!/usr/bin/perl use strict; use warnings; use MP3::Tag; MP3::Tag->config(write_v24 => 1); $mp3->title_set('new title'); $mp3->update_tags(); $mp3 = MP3::Tag->new($file); ($title, $track, $artist, $album, $comment, $year, $genre) = $mp3->aut +oinfo(); print("$title, $track, $artist, $album, $comment, $year, $genre\n");
|
|---|