Quote: Originally Posted by veetid
it's just that your script is writing the tags in unicode... if you get something, many many options, that will write the tags not in unicode it will work... I am working to solve my unicode tag problems...
david
I believe it is my id3 library that is writing the tags using unicode strings. This is the only library thus far that allows me to write id3v2 tags with album art successfully. I'd really like to keep writing id3v2 with album art going foward.
On my side of the script i tried to decode the unicode strings to ascii and to chop off the termination by doing the following in python.
mystring = 'blah'
mystring.encode('ascii')[0:-1]
But i just passed this string into the library function
someid3frame.set_text(mystring)
And the unicode/termination appears again. So I think that this is beyond my control for this library. Hopefully the library author will get back to me soon.
-Chris