Auto Album DJ 3.8 - Updated 08/08/2010

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

Moderators: Peke, Gurus

Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Post by Vyper »

You're welcome. :D
Stop Button Freak
sasapuksic
Posts: 106
Joined: Tue Jan 03, 2006 11:43 am
Location: Maribor, Slovenia
Contact:

Post by sasapuksic »

where from can i download the script?
Teknojnky
Posts: 5537
Joined: Tue Sep 06, 2005 11:01 pm
Contact:

Post by Teknojnky »

sasapuksic wrote:where from can i download the script?
http://trixmoto.net/
fizzjob
Posts: 417
Joined: Fri Mar 30, 2007 12:37 pm

Post by fizzjob »

Trix, would it be possible to work in a "Max Tracks" parameter, similar to the existing "Min. Tracks"? Once in a while, the script will grab a boxed set, which I would like to avoid having in the rotation.
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

Sounds sensible, I've added this to my to do list.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
randy549

Bug in album selection algorithm (and the fix for it)

Post by randy549 »

Sammy20 wrote:I'm getting the following error: AutoAlbumDJ: An Album could not be selected.

I just hit enter and the error box goes away. I then activate and deactive autoalbumdj until it adds in some new albums.

Is there any way to disable this error, and set autoalbumdj to automatically retry adding an album?
I installed the script last night and was getting this error, along with what seemed like way too many of the "[album] has 0 tracks above minimum rating" messages in the log file.

I found what appears to be a bug on the following line (line 170 in version 2.7):

Code: Select all

    ind = Int(max*Rnd+min+1)
This is causing the generated randomly-selected album index range to be too large; the randomly-selected value should be between "min" and "max" but is actually ending up between "min" and "max+min". Thus, a fair amount of the time the script was looking at albums that didn't actually exist in the database, causing the spurious error messages.

The fix, I believe, is to change that line to:

Code: Select all

    ind = Int((max-min+1)*Rnd)+min
This causes the randomly-selected index to vary between "min" and "max" as intended.

Hope this helps,
Randy
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

Thanks for letting me know. I'll get this fixed in the next version. :)
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
Randy549

Post by Randy549 »

trixmoto wrote:Thanks for letting me know. I'll get this fixed in the next version. :)
You're quite welcome. This is a great script...I was searching for something in MediaMonkey that would give me the "album shuffle" behavior that I've grown to love on my new iPod nano, and this script fits the bill perfectly. Thanks for creating it.

Randy
sasapuksic
Posts: 106
Joined: Tue Jan 03, 2006 11:43 am
Location: Maribor, Slovenia
Contact:

Post by sasapuksic »

Sorry for asking. But anyways, is this plugin already compatible with MM3 latest beta version?

:oops:
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

I believe it is compatible, but I've not tested it yet. I plan to re-write it for MM3 to use the new Auto-DJ script type. Watch this space! :)
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
Guest

Post by Guest »

I was looking for something just like this script. It took me a while to get it going, though, because like a couple other people here I don't have tracks rated. It was not obvious that I needed to set minimum rating to "unknown"--in part because it was unseen at the bottom of the list, while the tempting "logical" selection of zero was right at the top.

It might be helpful to have it set to "unknown" as the default. Presumably people who do use ratings as a filter will be the ones who actually want to change the setting, whereas people who don't use ratings wouldn't touch that setting, so the default should be geared to them.
sasapuksic
Posts: 106
Joined: Tue Jan 03, 2006 11:43 am
Location: Maribor, Slovenia
Contact:

Post by sasapuksic »

cant wait for updated version ...
come on trixmoto!! :lol:
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

Ok, I'll look at this for the next version, which I will get round to I promise! :)
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
dlt
Posts: 27
Joined: Tue Jan 08, 2008 11:10 pm

Post by dlt »

This script has been really helpful in going through all the albums I haven't listened to since adding them to my library.

Right now I'm using the "Only select albums that have not been played before" option, but I'm realizing something: once I've been through everything once, I'm still going to want to be able to look for things with low playcounts or that I haven't listened to in a long time. Ideally, instead of "never been played before," I'd like to be able to say something like "with average playcount < X." This would cover both unplayed albums and underplayed albums.

Alternatively/additionally, it would be nice to be able to specify things that haven't been played since a certain date--or better yet for more than X days.
Guest

Post by Guest »

This script and the kernel streaming plugin are the only reasons I have MM2 running most of the time instead of MM3. I hope you find some time to update the script, untill that time I think I'll stick with MM2..oldschool..ah :D.
Post Reply