Page 1 of 1

How to write iTunes TSOA (sort album) ?

Posted: Mon Dec 31, 2012 9:15 pm
by gelat
I am trying to automatically write the album sort so when I import the albums to itunes, it already knows how to sort. I sort by YEAR - ALBUM, so the code looks like this:

TSOA := gtag.copyright + ' - ' + gtag.album;
gTag.ExtraFieldSet( 'TSOA', TSOA ) ;

problem is, itunes ignores this. When I right click and view properties of the MP3 in windows, it detects the tag as custom, as it says TSOA. If I edit the sort album directly in itunes, the properties view in explorer shows ALBUM SORT.

So...using ExtraFieldSet is writing a tag in a nonstandard format.

any ideas?

Re: How to write iTunes TSOA (sort album) ?

Posted: Tue Jan 01, 2013 2:20 pm
by jtclipper
ExtraFieldSet uses the TXXX frame for ID3v2 (user frame), there is no direct support for :
TSOA Album sort order
TSOP Performer sort order
TSOT Title sort order
I'll add support for those in the next beta build or the one after that

Re: How to write iTunes TSOA (sort album) ?

Posted: Tue Jan 01, 2013 3:14 pm
by gelat
ok, thanks!

Re: How to write iTunes TSOA (sort album) ?

Posted: Thu Jul 04, 2013 3:22 pm
by gelat
Any word on adding the itunes tags?

Re: How to write iTunes TSOA (sort album) ?

Posted: Thu Jul 04, 2013 3:36 pm
by jtclipper
These will be available on the first 0.86 beta which is not very far away

Re: How to write iTunes TSOA (sort album) ?

Posted: Thu Jul 04, 2013 5:17 pm
by gelat
great news!!