MusicMatch Ratings 1.1 [MM2+3]

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: MusicMatch Ratings 1.1 [MM2+3]

Re: MusicMatch Ratings 1.1 [MM2+3]

by trixmoto » Mon Dec 15, 2008 5:16 am

Thanks! There's a script called "Personal Tag Enhancer" which I think you should be able to use to help you do this.

Re: MusicMatch Ratings 1.1 [MM2+3]

by TheMadGIO » Sun Dec 14, 2008 3:31 pm

Trixmoto!

You are too awesome. I've got my major catigories stored in the occasion field. Is there an easy way to move them to the genre field or somewhere else that they will be permanent?

by trixmoto » Fri Mar 07, 2008 7:28 am

Thanks! :)

Found out how to use the script!!

by katanna » Mon Mar 03, 2008 3:37 am

Hi there, stupid me...

I found out how the Script works...
I had just go to the extras/scripts and apply the MusicMatch Ratings script
EASY to use and VERY VERY VERY effective!!

I LOVE IT!!! :lol:

THX for that tool

(But still no clue how to get my iTunes Library Ratings to MediaMonkey :-? )

what did i do, to get mediamonkey to not work?

by katanna » Mon Mar 03, 2008 3:28 am

Before trying to install this script my mediamonkey did gather informations from my iTunes Library but not anymore???
It's quite likely I disabled something in the options... but as far as I recall I just did choose at the pop-up window which apeared, when adding media to not pop-up again... maybe I did read wrong?
I tried to find anything in the options, but didn't find anything... any clues?

how do i get it working?

by katanna » Sun Mar 02, 2008 8:40 am

Hi There, if it really works it would save me quite some work...

I Have used the MusicMatch 10
and have now MediaMonkey 3.0.2.1134

I have downloaded the Exe file and the "MediaMonkey Package" or what ever file (both files which are on the HP)

I just double clicked to install... but unfortunatly its not working?
And the checkbox which asks you if you want to import information from other players I have disabled previously so...
Either way there are no ratings shown in the Player

thx

by trixmoto » Tue Jan 08, 2008 4:35 am

:lol:

you are wonderful

by justme » Mon Jan 07, 2008 6:03 pm

FANTASTIC !! Could kiss you !!!!!

by trixmoto » Tue Dec 04, 2007 11:34 am

New version (1.1) is now available to download from my website. If have added the text values discussed above to the conversion. I have also created an MM3 installation package for this script. :)

by Gav_ » Tue Sep 18, 2007 6:09 am

Thanks so much trixmoto, had been putting off migrating from MMJB because of having to re-rate all my music (Yahoo Jukebox is awful compared).

A slight mod to the code, some versions of MusicMatch put the rating in as text ("Excellent" to "Poor") instead of a number. My own MP3 collection has some with numbers and some with text.

Here is the updated script:

Code: Select all

Option Explicit 

Sub MusicMatchRatings 

  Dim list,itm,prog,i,q,r,c 
  Set list = SDB.CurrentSongList 
    
  Set prog = SDB.Progress 
  prog.Text = "Initialising script..." 
  prog.MaxValue = list.Count 
  c = 0 
  
  For i=0 To list.Count-1 
    prog.Text = "Checking file "&(i+1)&" of "&list.Count&"..." 
    prog.Value = i 
    Set itm = list.Item(i) 
  
    r = -1 
    If isNumeric(itm.Quality) Then 
      q = Cint(itm.Quality) 
      If q > -1 Then 
        If q < 6 Then 
          r = q * 20 
          c = c + 1 
        End If 
      End If 
    Else
      If Mid(itm.Quality,1,9) = "Excellent" Then
          r = 5 * 20 
          c = c + 1 
      End If
      If Mid(itm.Quality,1,9) = "Very Good" Then
          r = 4 * 20 
          c = c + 1 
      End If
      If Mid(itm.Quality,1,4) = "Good" Then
          r = 3 * 20 
          c = c + 1 
      End If
      If Mid(itm.Quality,1,4) = "Fair" Then
          r = 2 * 20 
          c = c + 1 
      End If
      If Mid(itm.Quality,1,4) = "Poor" Then
          r = 1 * 20 
          c = c + 1 
      End If
    End If
    
    itm.Rating = r 
    
    itm.UpdateDB 
    If prog.Terminate Then Exit For 
  Next 
  
  prog.Text = "Finalising script..." 
  prog.Value = prog.MaxValue 
  r = SDB.MessageBox("Tracks updated: "&c&" out of "&list.Count,mtInformation,Array(mbOk)) 
  Set prog = Nothing 

End Sub

by trixmoto » Mon Jul 09, 2007 3:57 am

So I've heard. I'm glad you've found MM! :)

Whew!

by yknot » Sun Jul 08, 2007 1:10 am

Imported 13,000 musicmatch ratings! Thanks much!

Yahoo Jukebox sucks!

by trixmoto » Thu Jul 05, 2007 3:21 am

I'm glad it worked for you, once you'd got it installed. You can download installer's for my script from my website, if this helps in future. :)

Re: MusicMatch Ratings 1.0 [MM2+3]

by Mitch470 » Wed Jul 04, 2007 2:10 pm

trixmoto wrote:As requested, this script copies ratings from MusicMatch (which apparently appear as values 1-5 in the Quality field) to MediaMonkey ratings (in the ratings field), of all the selected tracks. It does not remove the information from the Quality field (so the ratings should still appear fine in MusicMatch).
Trix,

I installed the above code into my scripts.ini file and then started MediaMonkey Gold 2.5.5. I clicked that Script

I finally figured out that I needed to create a VBS file separately. Then I loaded all unrated songs into the main pane and selected all of them. It worked like a charm.

Thanks for a great script.

by trixmoto » Wed May 30, 2007 6:23 am

The script only saves the values into the database. You can then synchronise the track to save the ratings to the tags, or have your settings setup to do this automatically (like mine) or indeed add this line to the script. I'm glad you found the script useful. :)

Top