rupert160 has asked for the wisdom of the Perl Monks concerning the following question:
However this still produces the following failure: "Writing of ID3v2.4 is not fully supported (prohibited now via `write_v24')." Am I using the wrong library or the wrong code?#!/usr/bin/perl use strict; use warnings; use MP3::Tag; my $force_id3v2='TRUE'; $mp3 = MP3::Tag->new('my.mp3'); $mp3->title_set($new_title, $force_id3v2); $mp3->update_tags();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Error with MP3 tags: Writing of ID3v2.4 is not fully supported (prohibited now via `write_v24').
by Corion (Patriarch) on Jun 14, 2010 at 11:53 UTC | |
by rupert160 (Initiate) on Jun 14, 2010 at 13:07 UTC | |
by Corion (Patriarch) on Jun 14, 2010 at 13:11 UTC | |
by rupert160 (Initiate) on Jun 14, 2010 at 13:33 UTC |