Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

mlr
Posts: 24
Joined: Sat Jun 14, 2008 7:50 pm
Location: South Africa

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by mlr »

Vyper,

Thanks, tried it but it then changes the Title "the" to "The", not what I need, I want it to look like this:
Diana Ross & The Supremes - Stop! In the Name of Love
MediaMonkey Gold-Lifetime user since 2007
System: Windows 7 Ultimate SP 1
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by Vyper »

Oh! Sorry, didn't realize that. That may be a toughie.
Stop Button Freak
mlr
Posts: 24
Joined: Sat Jun 14, 2008 7:50 pm
Location: South Africa

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by mlr »

Is there a way I can pin this to a toolbar?
MediaMonkey Gold-Lifetime user since 2007
System: Windows 7 Ultimate SP 1
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by Vyper »

Not sure what you mean by that but how about this:

In the options, use the dropdown box next to Artist and change it to Upper Case. Leave the title at Script Case.
Stop Button Freak
mlr
Posts: 24
Joined: Sat Jun 14, 2008 7:50 pm
Location: South Africa

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by mlr »

Sorry for the vagueness…

Currently the only place I can find this script to run is on the selected the track(s) Right Click Menu just above Properties or an assigned Hot-Key…

I created my own Shortcut Toolbar; I want to add this to it.

Thanks

PS! Does anyone know if we can request some additional functions (wish list) for this script?
MediaMonkey Gold-Lifetime user since 2007
System: Windows 7 Ultimate SP 1
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by Vyper »

Did my suggestion do what you wanted regarding the word 'the'?
Stop Button Freak
mlr
Posts: 24
Joined: Sat Jun 14, 2008 7:50 pm
Location: South Africa

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by mlr »

Vyper wrote:Did my suggestion do what you wanted regarding the word 'the'?
No, it changes the Artist all to Uppercase & Title to Script Case.

Doesn't look like I'll get around this as I have a couple of other bespoke funnies say if a title is The Queen and the Soldier (Live), I want it as: Queen and the Soldier, The (Live)
MediaMonkey Gold-Lifetime user since 2007
System: Windows 7 Ultimate SP 1
tommycrock
Posts: 215
Joined: Sat May 21, 2011 9:13 am

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by tommycrock »

Just wanted to show some SQL for anyone with problems removing leading zeros from tracks 010 to 099 etc. Using the SQL-Viewer script, execute:
UPDATE Songs SET TrackNumber=CAST(TrackNumber AS Integer) Where TrackNumber Like "0%"
tommycrock
Posts: 215
Joined: Sat May 21, 2011 9:13 am

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by tommycrock »

mlr wrote:Is there a way to mark “The” not to change to “the” in the following?
Adam and The Ants, Adele & The Raconteurs, Diana Ross & The Supremes…
Using the SQL Viewer addin, you could try:

Code: Select all

UPDATE Songs SET Artist= Replace(Artist, ' the ', ' The ') WHERE Artist glob "* & the *" OR Artist glob "* and the *"
This will update other "the"s to The in any artist with "& the" or "and the" so if someone had the name "For the Laughs and the Giraffes" it would become "For The Laughs and The Giraffes" but there can't be too many examples like that. (Treat with caution - I've not tried this!)
DocWeini
Posts: 9
Joined: Wed Mar 19, 2008 6:13 am
Location: Cologne, Germany

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by DocWeini »

Is this script still under development?
adamg
Posts: 40
Joined: Tue Aug 28, 2007 12:48 pm

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by adamg »

2 questions:

1. I cannot figure out how to add artists such as: 3OH!3, B.o.B., a-ha, t.A.T.u and Bachman-Turner to the Forced-Case Word list?
I assume the "-" and the "." and the "!" symbols are the problem. How can i add artists with these symbols to the "Little Words" list or the "Forced-Case Word" list? Or can I?

2. where is the user-defined list of words i add to the forced-case and little words database so i can edit it manually?
i would ultimately like to be able to have a list stored somewhere outside of mediamonkey so when i uninstall and reinstall MM i will not have to reinsert EVERY "forced-case" or "little word" into the script, that would be a big pain (reinserting a few hundred words.) I have looked in the mediamonkey.ini, casemodify.vbs, and browsed the MM.DB looking for the info to no avail.
Mediamonkey Lifetime since 2012
My favorite scripts:
RegExp Find and Replace by Zvezdan http://solair.eunet.rs/~zvezdand/RegExpReplace.htm
GenreFinder by Trixmoto http://www.mediamonkey.com/addons/brows ... re-finder/
Earliest Release Date by wxdude http://www.mediamonkey.com/forum/viewto ... =2&t=66766
MagicNodes by Zvezdan http://solair.eunet.rs/~zvezdand/MagicNodes.htm
Tagging Inconsistencies by Bex http://www.mediamonkey.com/addons/brows ... istencies/
sn0skier
Posts: 135
Joined: Fri Apr 13, 2007 6:03 pm

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by sn0skier »

Seems to be a problem where if there is a 3 digit track number, and you have the option set to remove all leading zeros, the leading zero on tracks with track numbers >= 10 do not lose there leading zero (though tracks 1-9 do lose both leading zeros, which is good) [e.g "004" changes to "4" which is good, but "012" stays "012", which is not so good.]
last.fm signatures don't work anymore, which is sad. Any easy replacement?
Tursiops47
Posts: 32
Joined: Thu Nov 02, 2006 9:01 am
Location: Aguascalientes, Ags Mexico

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by Tursiops47 »

I have C&LZF 1.4.2 extension installed in MM 4.1.13.1801. When I run it corrects Title and Filename OK but changes track numbers 01-09 to single digit.
(1) How do I navigate to configuration screen to add zero to single digit track numbers?
(2) Can I use this script to move "The" and "A" from front of Title to end of title? eg Girl from Ipanema, The
gpzbc
Posts: 1226
Joined: Sat Sep 13, 2008 12:02 am
Location: Colorado, USA

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by gpzbc »

Hi!
1) You can access the C&LZF settings from the Tools --> Options --> Case & Leading Zero Fixer menu.
2) You can use MM's Auto-Organize Files tool to accomplish what you describe. Check out the $MovePrefix mask.

There should be a ton of info in the forums on these things, but post back if not. Good luck!
--
The gpzbc
Tursiops47
Posts: 32
Joined: Thu Nov 02, 2006 9:01 am
Location: Aguascalientes, Ags Mexico

Re: Case & Leading Zero Fixer 1.4.2 (2008-04-15)

Post by Tursiops47 »

Thank you gpzbc. That was so easy ... once I followed the path!
Post Reply