IPB

Welcome Guest ( Log In | Register )

> Notice!

Please take a minute to check our Frequently Asked Questions. Use Search to reveal possible related topics.

Also make sure you've read the Forum Guidelines before posting in this forum.

2 Pages V   1 2 >  
Reply to this topicStart new topic
> Newbie Ignorance...ARTISTSORT
fphredd
post Nov 22 2009, 15:59
Post #1


Member


Group: Full Members
Posts: 11
Joined: 22-November 09
Member No.: 11349
Mp3tag Version: 2.45



Have done a search, and I'm sure it's covered, but I haven't found a step by step for a newbie like me. I have my music tagged, but would like to add SORTARTIST to flac files. Can someone please explain exactly what steps to follow to add this so "Eric Clapton" shows as "Clapton, Eric", etc?

Thanks for the help and patience...

This post has been edited by fphredd: Nov 22 2009, 16:00
Go to the top of the page
 
+Quote Post
dano
post Nov 22 2009, 16:53
Post #2


Moderator


Group: Moderators
Posts: 5503
Joined: 4-September 03
From: Germany
Member No.: 201
Mp3tag Version: 2.55a



Make an action group with these actions:

Action #1:
Action type: Format value
Field: ARTISTSORT
Formatstring: %artist%

Action #2:
Action type: Replace with regular expression
Field: ARTISTSORT
Regular expression: ^(.+)\s(.+)$
Replace matches with: $2, $1


--------------------
Go to the top of the page
 
+Quote Post
fphredd
post Nov 23 2009, 01:24
Post #3


Member


Group: Full Members
Posts: 11
Joined: 22-November 09
Member No.: 11349
Mp3tag Version: 2.45



That seems to have worked, thank, but...

When I right click on a file and look at extended tags, the ARTISTSORT shows up, but when I show the list of files in Mp3tag with an ARTISTSORT column, the column is still blank? Should it be?
Go to the top of the page
 
+Quote Post
dano
post Nov 23 2009, 09:36
Post #4


Moderator


Group: Moderators
Posts: 5503
Joined: 4-September 03
From: Germany
Member No.: 201
Mp3tag Version: 2.55a



Did you enter %ARTISTSORT% in the value field?


--------------------
Go to the top of the page
 
+Quote Post
fphredd
post Nov 23 2009, 16:09
Post #5


Member


Group: Full Members
Posts: 11
Joined: 22-November 09
Member No.: 11349
Mp3tag Version: 2.45



QUOTE (dano @ Nov 23 2009, 10:36) *
Did you enter %ARTISTSORT% in the value field?


Nope...guess that's the reason biggrin.gif

Now one more (newbies always say that). In case my wife decides she wants it back the old way, how would I delete the ARTISTSORT tag? wacko.gif
Go to the top of the page
 
+Quote Post
dano
post Nov 23 2009, 16:57
Post #6


Moderator


Group: Moderators
Posts: 5503
Joined: 4-September 03
From: Germany
Member No.: 201
Mp3tag Version: 2.55a



laugh.gif

You can delete the tag also at Extended tags

Or make an action type Remove fields and enter ARTISTSORT


--------------------
Go to the top of the page
 
+Quote Post
fphredd
post Nov 23 2009, 17:29
Post #7


Member


Group: Full Members
Posts: 11
Joined: 22-November 09
Member No.: 11349
Mp3tag Version: 2.45



Dano,

Thank you for all the help!
Go to the top of the page
 
+Quote Post
fphredd
post Nov 26 2009, 16:16
Post #8


Member


Group: Full Members
Posts: 11
Joined: 22-November 09
Member No.: 11349
Mp3tag Version: 2.45



If I have an 'album' by 'Billy Joel & Elton John' how would I make ARTISTSORT read 'Joe, Billy & Elton John'? Right now it converts to 'John, Billy Joel & Elton'

Is this a more detailed script?
Go to the top of the page
 
+Quote Post
fphredd
post Nov 29 2009, 16:10
Post #9


Member


Group: Full Members
Posts: 11
Joined: 22-November 09
Member No.: 11349
Mp3tag Version: 2.45



QUOTE (fphredd @ Nov 26 2009, 17:16) *
If I have an 'album' by 'Billy Joel & Elton John' how would I make ARTISTSORT read 'Joel, Billy & Elton John'? Right now it converts to 'John, Billy Joel & Elton'

Is this a more detailed script?


How do others handle this? Was it the music choice above that led to no responses? How about 'Eric Clapton & Dr. John' appearing under 'C' for Clapton?

Can it be done?
Go to the top of the page
 
+Quote Post
dano
post Nov 29 2009, 17:05
Post #10


Moderator


Group: Moderators
Posts: 5503
Joined: 4-September 03
From: Germany
Member No.: 201
Mp3tag Version: 2.55a



This should work for both cases:
Action type: Replace with regular expression
Field: ARTISTSORT
Regular expression: ^([^&]+) ([^ ]+)(?= &|$)
Replace matches with: $2, $1


--------------------
Go to the top of the page
 
+Quote Post
fphredd
post Nov 29 2009, 17:17
Post #11


Member


Group: Full Members
Posts: 11
Joined: 22-November 09
Member No.: 11349
Mp3tag Version: 2.45



QUOTE (dano @ Nov 29 2009, 18:05) *
This should work for both cases:
Action type: Replace with regular expression
Field: ARTISTSORT
Regular expression: ^([^&]+) ([^ ]+)(?= &|$)
Replace matches with: $2, $1


I will give that a shot. Is there a tutorial or 'for idiots' guide for this anywhere I can link to? I truly appreciate the help, but if there's a guide I might not have to ask as much (or maybe more as I'm learning...)
Go to the top of the page
 
+Quote Post
dano
post Nov 29 2009, 19:21
Post #12


Moderator


Group: Moderators
Posts: 5503
Joined: 4-September 03
From: Germany
Member No.: 201
Mp3tag Version: 2.55a



There is no special guide for Mp3tag but you can find lots of information on the web.
A good start is http://www.regular-expressions.info/


--------------------
Go to the top of the page
 
+Quote Post
wowo
post Nov 30 2009, 14:06
Post #13


Member


Group: Full Members
Posts: 14
Joined: 13-September 07
Member No.: 5599
Mp3tag Version: V2.39



QUOTE (fphredd @ Nov 26 2009, 16:16) *
If I have an 'album' by 'Billy Joel & Elton John' how would I make ARTISTSORT read 'Joe, Billy & Elton John'? Right now it converts to 'John, Billy Joel & Elton'

Is this a more detailed script?

I prefer: 'Joe, Billy & John, Elton
I have tried to understand the regular expressions language, but for me it is like Chinese smile.gif.
What is the action for this ?
Maybe "newbie" fphredd knows allready the answer?


Go to the top of the page
 
+Quote Post
DetlevD
post Nov 30 2009, 15:52
Post #14


Member


Group: Full Members
Posts: 4129
Joined: 26-May 06
From: Wuppertal, Germany, Planet Earth
Member No.: 3194
Mp3tag Version: 2.54



Because the ARTISTSORT tag field is dedicated to hold a simple sortable value what's about with "JoeJohnBillyElton" ;-) or is there any standard or convention?

DD.20091130.1552.CET

This post has been edited by DetlevD: Nov 30 2009, 16:26


--------------------
* Beyond that, don't ask, when you don't know what to do with the answer. *
♥ home is where the heart is ♥
Go to the top of the page
 
+Quote Post
wowo
post Nov 30 2009, 16:44
Post #15


Member


Group: Full Members
Posts: 14
Joined: 13-September 07
Member No.: 5599
Mp3tag Version: V2.39



QUOTE (DetlevD @ Nov 30 2009, 15:52) *
Because the ARTISTSORT tag field is dedicated to hold a simple sortable value what's about with "JoeJohnBillyElton" ;-) or is there any standard or convention?

DD.20091130.1552.CET

smile.gif
MusicBrainz tried to make a standard for the Artist Sort Name for Artist Names.
http://musicbrainz.org/doc/Sortname_Style
"# For artist names that are regular names, the sort name will be "Last Name, First Name".

"Eric Clapton" 's sort name is "Clapton, Eric".
# For artist names that are ficticious names, the sort name is the same as the artist name.

"Franz Ferdinand"
"Cypress Hill".

# For artist names that start with "The", that word is treated as is it were a first name of a regular name.

"The Beatles" have sort name "Beatles, The".

# Non-english articles like La, El, Los and Le are treated as the English article "The".

"Los Lobos" have sort name "Lobos, Los".

# For artist names that start with a title like "Dr.", "DJ" or "MC", that title is treated as is it were a first name of a regular name.

"DJ Tiësto" has sort name "Tiësto, DJ".

# For artist names that end with a title like "Jr." or "Sr.", that title is always put at the end of the sort name, preceded by ", ".

"Harry Connick, Jr." has sort name "Connick, Harry, Jr.".

# For artist names with a nickname between the first name and last name, the nickname is treated as if it's part of the first name of the artist.

"Jean 'Toots' Thielemans" has sort name "Thielemans, Jean 'Toots'". "

etc. etc. etc.

I agree with you that it is almost impossible to write an automatic action for all these rules.
Go to the top of the page
 
+Quote Post

2 Pages V   1 2 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



RSS Lo-Fi Version Time is now: 21st May 2013 - 09:57