Fixed tagging bug
This commit is contained in:
parent
1bc0ac8d7f
commit
d8aa8d9856
5
cdripper
5
cdripper
|
@ -10,6 +10,7 @@
|
||||||
# Requires cdparanoia, oggenc, vcfromfilename
|
# Requires cdparanoia, oggenc, vcfromfilename
|
||||||
#
|
#
|
||||||
# Changelog:
|
# Changelog:
|
||||||
|
# 0.2.4: Fixed bug - files should get tagged again
|
||||||
# 0.2: Aligned version with ds-audiotools
|
# 0.2: Aligned version with ds-audiotools
|
||||||
# Implemented CDDB support (disabled with --no-cddb)
|
# Implemented CDDB support (disabled with --no-cddb)
|
||||||
# Ability to preview and edit all text before it's used
|
# Ability to preview and edit all text before it's used
|
||||||
|
@ -32,7 +33,7 @@
|
||||||
|
|
||||||
use CDDB_get qw( get_cddb );
|
use CDDB_get qw( get_cddb );
|
||||||
|
|
||||||
$VERSION = "0.2.3";
|
$VERSION = "0.2.4";
|
||||||
$HELP_MSG = "# CD Ripper v$VERSION\n\tusage: cdripper [--no-cddb] [-a] " .
|
$HELP_MSG = "# CD Ripper v$VERSION\n\tusage: cdripper [--no-cddb] [-a] " .
|
||||||
"[-y] [-o num] [target_directory]\n\n" .
|
"[-y] [-o num] [target_directory]\n\n" .
|
||||||
"Options:\n-a:\t\tAsk users about multiple CDDB options\n" .
|
"Options:\n-a:\t\tAsk users about multiple CDDB options\n" .
|
||||||
|
@ -100,7 +101,7 @@ chdir($final_location);
|
||||||
warn "Some files were not automatically named." if $unhandledFiles;
|
warn "Some files were not automatically named." if $unhandledFiles;
|
||||||
|
|
||||||
# Add vorbiscomment data
|
# Add vorbiscomment data
|
||||||
system('vcfromfilename', @new_tracks);
|
system('tagfromfilename', @new_tracks);
|
||||||
|
|
||||||
# Clean up
|
# Clean up
|
||||||
chdir($orig_dir);
|
chdir($orig_dir);
|
||||||
|
|
Reference in New Issue
Block a user