Help for this page

Select Code to Download


  1. or download this
    MP3::Tag->config(write_v24 => 1);
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    $mp3 = MP3::Tag->new($file);
    ($title, $track, $artist, $album, $comment, $year, $genre) = $mp3->aut
    +oinfo();
    print("$title, $track, $artist, $album, $comment, $year, $genre\n");