Help for this page

Select Code to Download


  1. or download this
    use Audio::TagLib;
    $test = shift;
    $file = Audio::TagLib::FileRef->new($test);
    say 'title:', $file->tag()->title()->toCString();
    say 'track', $file->tag()->track()->toCString();
    
  2. or download this
    title:Title Test
    Can't locate object method "toCString" via package "0" (perhaps you fo
    +rgot to load "0"?) at ./taglib_test.pl line 9.