| View previous topic :: View next topic |
| Author |
Message |
The Pontificator Veteran Member


Joined: 15 Jun 2008 Posts: 784 Location: Somewhere in South Carolina
|
Posted: Tue Apr 19, 2011 8:42 pm Post subject: iTunes: culling out unwanted "genres" |
|
|
between the ones that come with iTunes and the ones from files I've imported...along with the misspelled ones I'm drowning in a sea of genre types.
Is there any way to edit or remove ones you don't want? |
|
| Back to top |
|
 |
swordsandtequila Member


Joined: 05 Feb 2010 Posts: 148 Location: Somewhere in Florida
|
Posted: Wed Apr 20, 2011 6:47 am Post subject: |
|
|
Right click delete (if I understand you correctly). I assume you want to remove the different playlists, etc., that is standard fare within iTunes? _________________ Mac Pro 4,1 12GB ram
Samsung SSD 120GB boot, Intel SSD 80GB scratch, 10TB internal ZFS
Sans Digital 6TB Raid5, 2TB Raid0
NT Guardian Maximus 1TB Raid1, 500GB Raid0
OWC external Superdrive
An iPod for every occasion
iPhone 3g |
|
| Back to top |
|
 |
The Pontificator Veteran Member


Joined: 15 Jun 2008 Posts: 784 Location: Somewhere in South Carolina
|
Posted: Wed Apr 20, 2011 7:10 am Post subject: |
|
|
| swordsandtequila wrote: | | Right click delete (if I understand you correctly). I assume you want to remove the different playlists, etc., that is standard fare within iTunes? |
No, I want to remove all the 'custom' genres that came attached to music files I've imported into my iTunes library. I also want to remove those that I've created that I've later discovered were misspelled. I don't want to remove any playlists. |
|
| Back to top |
|
 |
MrBabou Member

Joined: 14 Mar 2008 Posts: 160
|
Posted: Wed Apr 20, 2011 10:48 am Post subject: |
|
|
The only way I would see is to browse by genre in the Column Browser (you have to enable the "Column Browser" as it is not enabled by default, as set it at the top). This may be a long process if you have many to change, but when you click one genre, it shows you all songs that has that tag. Then you can select all the songs, and do a mass change on all of them on the genre tag.
I have done this to change genre tags that I didn't like. For instance, with that method it was easy to change all songs tagged with "alt/indie" to "rock". You could also put a blank there if that's what you want. _________________ My home setup |
|
| Back to top |
|
 |
Bandit Bill Veteran Member


Joined: 07 Jun 2005 Posts: 5793 Location: Edmonton, AB, Canada
|
Posted: Wed Apr 20, 2011 7:34 pm Post subject: |
|
|
| MrBabou wrote: | | The only way I would see is to browse by genre in the Column Browser. Then you can select all the songs, and do a mass change on all of them on the genre tag. |
This is what I was thinking as well.
Don't be surprised if iTunes converts the genres back to their original state, based on the data in the ID3 tag.
Do a little bit of testing before going through the effort of changing your entire library. |
|
| Back to top |
|
 |
Smithcraft Veteran Member


Joined: 09 Nov 2008 Posts: 3011 Location: Seattle
|
Posted: Thu Apr 21, 2011 1:38 am Post subject: |
|
|
Since I'm planning on going through my music at some point soon, I looked into tag editors.
There are two that I could find that are free and support OS X.
http://kid3.sourceforge.net/
http://musicbrainz.org/doc/PicardTagger
I haven't tried either of them yet.
SC _________________ Grumpy old man of computing.
[Desktop] G4 mini - 1.5Ghz 1GB 80GB HDD - Newer miniStack v2 500GB - 10.5.8
[Media System] Intel i5 mini - 2.33Ghz 8GB 500GB HDD - 4 x Hitachi 2TB HDD in a qBOX-SF - 10.7.5 (Thanks Phil!)
Make sure it has pins! |
|
| Back to top |
|
 |
fuentecigar Veteran Member


Joined: 27 Oct 2006 Posts: 535 Location: Little Rock, Ar
|
Posted: Fri Apr 22, 2011 8:01 pm Post subject: |
|
|
Your best bet is an Apple script. I think this should work for you. Copy it into your script editor and run. You can edit the genreList to whatever you wish. Just make sure you punctuate the list exactly as I have.
| Code: | (*Script by FuenteCigar*)
set genreList to {"Alternative", "Big Band", "Bluegrass", "Blues", "Blues/R&B", "Books & Spoken", "Children's Music", "Classical", "Country", "Dance", "Easy Listening", "Electronic", "Folk", "Gospel", "Holiday", "House", "Industrial", "Jazz", "New Age", "Pop", "Progressive Rock", "Religious", "Rock", "Southern Rock", "Techno", "Trance", "Unclassifiable", "Western Swing", "World"}
tell application "iTunes"
display dialog "What genre?" with icon 1 default answer ""
copy the result as list to {myGenre}
set l to (choose from list genreList with title "Genre List" with prompt "Choose a genre...") as text
tell (every track whose genre is myGenre) to set it's genre to l
display dialog "Genre changed." with icon 1
end tell
end |
_________________ Mac Book 2.1 Ghz (Penryn) 10.6.7 4Gb DDR2
Mac Mini 1.66 Ghz 10.6.7 2Gb DDR2
KF5EYR
 |
|
| Back to top |
|
 |
|