Entering UTF-8 tags under cygwin (regular rxvt or bash): Note: this document is deprecated - the since AP 0.8.8, full unicode support for text & filenames exists in the win32 builds. -------------------------------------------------------------------- On Mac OS X & Linux, unicode text tags (encoded in utf8) isn't a problem. On Mac OS X, its just a matter of pasting and hitting return. Under cygwin on Windows its a little harder (my unfamiliarity with the platforms also doesn't help). However, there is an ugly, ugly ugly, heinously ugly workaround - you enter the octal codes of the utf-8 characters directly. Using the printf command, you can get the shell in cygwin to feed the proper codes into the AtomicParsley command line arguments to set a valid tag. Say you want the ℗ symbol followed by a space & then the © symbol and then the year on the copyright tag. If you can get the unicode hex value for ℗ (its E2 84 97), then the octal value is 342 204 227. Then you can set the tag without ever having pasted in a unicode character:
You will note that the format is printf ' somecodes ', which is encased in ` ` (which itself tells the shell to perform this sub-command separately), and the whole thing is further encased in double quotes: " printf_cmd ". The encasing "" are needed because when the sub command exits, in this particular case what AtomicParsley.exe will get will be the equivalent to:
and © 2006 isn't an argument that AtomicParsley understands - but:
with the enclosing quotes isn't a problem. And so neither is this command to set tags in mutliple languages:
Note: AtomicParsley can get the text data out of the tags, but the shell (either bash or rxvt) will still prevent you from seeing it. If out output to a file:
and open the text file with a utf-8 capable text editor, you should see the proper tags. And iTunes will be able to pick up the utf8 tags you set this way. The cygwin AtomicParsley on the main download page isn't utf-8 enabled - it will be missing the byte order mark (BOM) needed for output. The version in the "experimental" folder of the cygwin download will. ... I did say it was ugly - but it works. The above command sets tags in Hebrew, Arabic, Cyrillic, Japanese, Greek & Latin diacriticals. I set that on Win98SE (which I think is UTF-0 enabled) using regular rxvt. |
|||||