Hi
Thanks for the report. Are you comfortable with compiling software on
your own? If so, could you please try the attached patch and see
whether it fixes the problem to your satisfaction?
cheers
--
Stefan Ott
http://www.ott.net/
"You are not Grey Squirrel?"
diff -Naur id3v2-0.1.11.orig/convert.cpp id3v2-0.1.11/convert.cpp
--- id3v2-0.1.11.orig/convert.cpp 2004-05-04 19:40:19.000000000 +0200
+++ id3v2-0.1.11/convert.cpp 2009-07-24 03:35:21.787900331 +0200
@@ -66,6 +66,15 @@
luint nTags;
nTags = myTag.Update(ID3TT_ID3V2);
+
+ if (nTags == ID3TT_NONE)
+ {
+ std::cout << std::endl;
+ perror("id3v2");
+ std::cerr << "Tags could not be converted" << std::endl;
+ continue;
+ }
+
std::cout << " converted ";
std::cout << std::endl;
}