in reply to Fixing mp3 tags for Android 2.0
# We parse the command line to pick a directory, # this is easier my $start_dir = ".";
How is that easier then my $start_dir = shift; ???
$id3v1 = $mp3->{ID3v1} || $mp3->new_tag("ID3v1"); $id3v2 = $mp3->{ID3v2} || $mp3->new_tag("ID3v2");
...seems like the worst possible behavior you could have as a fallback. If instead you leave the fields blank, you can at least easily identify them later and you leave it up to the application to decide what to do about it (ie: display some string like "Unknown Artist", or prompty you, or try to fetch the metadata from an external music identification site).$artist = "Artist of $file_name";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Fixing mp3 tags for Android 2.0
by hawtin (Prior) on Feb 18, 2010 at 13:19 UTC |