in reply to use MP3::Info to change .mp3 genre

Try
#!perl use strict; use MP3::Tag; use MP3::Info; use Time::Piece; use Data::Dump 'pp'; my $date = localtime->strftime('%Y/%m/%d'); my $file = 'file.mp3'; my $info = get_mp3tag($file); pp $info; my $mp3 = MP3::Tag->new($file); $mp3->album_set($date); $mp3->genre_set('Audiobook'); $mp3->update_tags(); $info = get_mp3tag($file); pp $info;
poj

Replies are listed 'Best First'.
Re^2: use MP3::Info to change .mp3 genre
by Evyn (Novice) on Jan 31, 2015 at 16:07 UTC
    Thanks - that works. Fantastic.