Skip songs with a rating of zero?

Any ideas about how to improve MediaMonkey for Windows 4? Let us know!

Moderator: Gurus

lordphoenix
Posts: 48
Joined: Thu Jan 01, 2009 8:35 pm

Skip songs with a rating of zero?

Post by lordphoenix »

Is there any way to get MM to skip files with a rating of zero? Because that would be awesomesauce :D
Last edited by Lowlander on Thu Jul 17, 2014 7:05 pm, edited 1 time in total.
Reason: Moved to correct forum
MMFrLife
Posts: 2894
Joined: Fri Oct 26, 2012 9:04 pm
Location: MM Forum

Re: Skip songs with a rating of zero?

Post by MMFrLife »

If you are talking about real-time skipping, like loading various rated files into Now Playing and have it skip over 0's as it plays through,
I can't think of one at the moment. But you can create a collection with something like Property = rating, Condition = >=, Value = .5 star symbol.
MM user since 2003 (lifetime lic. 2012) "Trying to imagine life without music gives me a headache"
Top 2 scripts: RegExp Find & Replace (e.v.) and Magic Nodes (e.v.) ZvezdanD's scripts site
Please take a moment to read the bottom of the linked page to support the one and only - ZvezdanD! (the "originator" since 2006).
MMW 4.1.31.1919; 5.0.4.2690 || back it up...frequently!
|| software for power users: "Q-Dir" (free alt. to explorer) and file/folder renamer: "ReNamer" (den4b)
"The absurd is the essential concept and the first truth"
😜
Lowlander
Posts: 56586
Joined: Sat Sep 06, 2003 5:53 pm
Location: MediaMonkey 5

Re: Skip songs with a rating of zero?

Post by Lowlander »

You can create both Collections or AutoPlaylists with the Criteria Rating. You can either set a Rating of half star and up or not equal to zero. Then select files from either the Collection or AutoPlaylist you created. You can't have the Player auto-skip zero rated stars, it will always play what's loaded in the Now Playing.
lordphoenix
Posts: 48
Joined: Thu Jan 01, 2009 8:35 pm

Re: Skip songs with a rating of zero?

Post by lordphoenix »

Can I officially make that a feature request, then? Otherwise, what's the point of the zero/bomb rating? (which btw is a pain to set, as you have to right click->my rating->bomb). This would be a really nice feature since who wants to hear a song with a zero rating? :) I've thought about just deleting the tracks I hate, but it would be nice if the player would just automatically skip over them, which would allow me to play them if I really wanted to (by double clicking on them).
MMFrLife
Posts: 2894
Joined: Fri Oct 26, 2012 9:04 pm
Location: MM Forum

Re: Skip songs with a rating of zero?

Post by MMFrLife »

You can request anything you want within reason in the "wishlist" topic. Simply posting isn't an "official" thing. It can be in official regard if it is reported and then can become an official function if added. If you hate those tracks, the only reason to keep them would be for collector/historical interest purposes or a change in music tastes. If you don't have that invested in them they are extremely easy to batch delete. Yes, they are a pain to set, but paradoxically you still have to make a decision about them/rate them before you could have a feature to auto-skip them based on rating.
Last edited by MMFrLife on Fri Jul 18, 2014 6:02 pm, edited 1 time in total.
MM user since 2003 (lifetime lic. 2012) "Trying to imagine life without music gives me a headache"
Top 2 scripts: RegExp Find & Replace (e.v.) and Magic Nodes (e.v.) ZvezdanD's scripts site
Please take a moment to read the bottom of the linked page to support the one and only - ZvezdanD! (the "originator" since 2006).
MMW 4.1.31.1919; 5.0.4.2690 || back it up...frequently!
|| software for power users: "Q-Dir" (free alt. to explorer) and file/folder renamer: "ReNamer" (den4b)
"The absurd is the essential concept and the first truth"
😜
lordphoenix
Posts: 48
Joined: Thu Jan 01, 2009 8:35 pm

Re: Skip songs with a rating of zero?

Post by lordphoenix »

When I said "officially" I was just using a figure of speech :) I'll post it in the wishlist topic though.

I don't really want to delete the tracks because someday I might have a reason to listen to one of them (or maybe my taste in music just might change dramatically!). Skipping tracks with a rating of zero just makes perfect sense to me, and it couldn't be hard to implement (e.g. logic: if (rating == 0.0) nextTrack(); ).
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Re: Skip songs with a rating of zero?

Post by trixmoto »

I've said this a few times already tonight, but this could be done by script. In this case, it would check the rating on play and simply click next for you.
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.
Loe
Posts: 1
Joined: Mon Jul 21, 2014 1:19 pm

Re: Skip songs with a rating of zero?

Post by Loe »

So I have been using MediaMonkey for a few days now and am using AutoRateAccurate to rate my songs from 1-5 Stars. I rate songs that I simply don't want to listen to anymore to 0.5 Stars manually.
I have done a quick search for a feature quite similar to the one that is requested in the OP. Since noone has provided you with a script, I have tried it myself for the last 30 minutes. The webhelp is good reference for such things.
This script runs a function every time the current song is changed and checks if the rating is between -1 and 16 (you can change the values in the script file, it's not that hard ;)).
Refer to this for the values.
If the rating is in the specified range, the song is skipped.
Simply put the code into a file called SkipBelowRating.vbs and copy it to your Scripts/Auto folder:

Code: Select all

Sub OnStartup
  Script.RegisterEvent SDB, "OnPlay", "SkipBelowRating" 'Register SkipBelowRating on OnPlay event
End sub
 
Sub SkipBelowRating
  Dim min_rating
  min_rating = 16
  If (SDB.Player.CurrentSong.Rating < min_rating) And (SDB.Player.CurrentSong.Rating > -1) Then
	SDB.Player.Next
  End If
End Sub
Have fun :)
PS: Just registered! First post - Yay :D
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Re: Skip songs with a rating of zero?

Post by trixmoto »

Yep, that should do the trick! :)
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.
lordphoenix
Posts: 48
Joined: Thu Jan 01, 2009 8:35 pm

Re: Skip songs with a rating of zero?

Post by lordphoenix »

I realize my reply is a tad late (ok, a LOT late :) ), but THANKS!
LightFoot
Posts: 9
Joined: Wed Oct 01, 2014 11:53 am

Can MM Set Files To Not Play?

Post by LightFoot »

Greetings ~ Can I set music files to not play automatically in MM? In other words, there are some music files (i.e. holiday music) that I only want to play manually.

Thank you!
Last edited by Lowlander on Wed Nov 05, 2014 1:08 pm, edited 1 time in total.
Reason: Merged with existing topic
LightFoot
Posts: 9
Joined: Wed Oct 01, 2014 11:53 am

Set Files to Manual Only?

Post by LightFoot »

Does MM have a function to set music files to play manually only? Holiday music, for example, I want to play only at that time of year rather than coming up in automatic shuffle play.

Thanks!
nohitter151
Posts: 23640
Joined: Wed Aug 09, 2006 10:20 am
Location: NJ, USA
Contact:

Re: Set Files to Manual Only?

Post by nohitter151 »

LightFoot wrote:Does MM have a function to set music files to play manually only? Holiday music, for example, I want to play only at that time of year rather than coming up in automatic shuffle play.

Thanks!
Yes in MM Gold you would create a custom collection to keep that kind of music separate.
MediaMonkey user since 2006
Need help? Got a suggestion? Can't find something?

Please no PMs in reply to a post. Just reply in the thread.
peto

skip files from playing

Post by peto »

Hi,

I believe similar request (s?) have been made before..

but can a new symbol; representative of the following request; be set up say in the rating field to bypass playing a particular track/tracks when playing multiple tracks by album/artist etc. I wish to keep and display the track but not play it but could play the track directly if I wish, for example added bonus alternate tracks that may not be that good. I was hoping to avoid setting up multiple playlists/collections and still see what tracks are on the album or by the particular artist etc.

regards
tangonat
Posts: 1
Joined: Tue May 08, 2018 7:03 pm

Re: Skip songs with a rating of zero?

Post by tangonat »

The script below was provided by Loe. It is exactly what I want but when I try to run it in the scripts/Auto folder I get an error on execution. Since I am not a coder, I can't spot the error. Can anyone help? Many thanks.


Sub OnStartup
Script.RegisterEvent SDB, "OnPlay", "SkipBelowRating" 'Register SkipBelowRating on OnPlay event
End sub

Sub SkipBelowRating
Dim min_rating
min_rating = 16
If (SDB.Player.CurrentSong.Rating < min_rating) And (SDB.Player.CurrentSong.Rating > -1) Then
SDB.Player.Next
End If
End Sub
Post Reply