Does someone know if there is an option, tag (with a right clic or shortcut) to put on a song to pass it because we don't want to listen to it for the moment? Of course, this option should stay after the close of the program. If it doesn't exist, that should be nice to implement it.
shakey_snake
Nov 7 2009, 13:41
Maybe
foo_skip is what you're looking for.
Thanks shakey_snake and fbuser. I'm happy to see that this community is very active. Foo skip seems to be exactly what I need. I just don't understand what I have to modify to skip a specific track. I don't understand exactly this sentence...:
"Skips tracks that match user configurable title formatting string. By default skips over each track with Rating set to 1. "
Jack Schmaltz
Nov 7 2009, 18:44
create a tag field called %skip%, any track tagged with a "1" in this field will be skipped.
It means you can modify the criteria of when a track should be skipped. Personally i'm using foo_quicktag to add a custom tag to the files to tracks which i want to skip.
Field name "SKIP" value "1".
The foo_skip formatting string in the advanced options>playback looks like this:
$strcmp(%skip%,1)
If you want to skip tracks with SKIP set to 1 OR %rating% set to 1, then the foo_skip formatting string would look like this:
$strcmp(%rating%,1)$strcmp(%skip%,1)
Just an example.
Thanks for your answer. Unhapily, I don't know how to create a custom tag. I will search later when I will find more time. I don't see on google any program to create a tag. Modify default tag, yes but no create.
For foo_quicktag, I tried it but I received the following error message:

Thanks yet!!
QUOTE (kabal @ Nov 7 2009, 23:41)

Thanks for your answer. Unhapily, I don't know how to create a custom tag. I will search later when I will find more time. I don't see on google any program to create a tag. Modify default tag, yes but no create.
Almost any. Foobar2000 can: go to track properties and press Ctrl+N or right-click and select "Add new field" or just double-click on free space.
QUOTE (kabal @ Nov 7 2009, 23:41)

For foo_quicktag, I tried it but I received the following error message:
IIRC foo_quicktag requires at least foobar 0.9.5 (was released about 2 years ago). What's your version?
Thanks for lvqcl and the other, now, it works!
For people wanting to use this functionalities, here are all the steps I did:
1. Take the dll of foo skip on the site:
foo skip2. put the dll on the folder components of foobar2000
3. Go to Edit->Preferences->Advanced->Skip track and replace:
$ifequal(%rating%,1,skip,)
by $strcmp(%skip%,1)
4. Right clic on a song file on Foobar2000 and choose properties
5. Right clic on a free space and choose "add field"
6. Write %skip% (without %) and put the value 1.
It's not very fast for a solution but it avoids to hear again and again a bad song.
PS: I don't see any options to put "resolved" for this topic/subject....
Bye
There are so many ways that you can quicken this process.
One example.
Go to preferences>advanced>Display>Properties dialog>Standard fields
Add your new field, in this case, skip. You can control where the fields location within the properties dialog based on where you insert the field into the exist string. Or just add it at the end [do not forget the semi colon as a separator].
It will now always be in your properties dialog for easy edit.
terry
I configured that now!!
Thanks
Jack Schmaltz
Nov 8 2009, 00:34
how odd, iv had this component installed for a while now but never used it.
after reading this thread i decided to look for the preferences but nothing is there & when i try to use it by tagging a file it doesnt work.
iv tried removing & readding the component but to no avail, are the options definetly in the Advanced section???
thanks
Advanced, playback
terry
There is also a toggle on / off for component under playback in the main foobar menu bar
Jack Schmaltz
Nov 8 2009, 03:43

defo not there guys, & i have it installed:

& i checked under Playback in the main menu, nothing there either.
im dumb struck, its rare i bring up a problem on here as i can generally figure it out but im stumped on this one, any ideas?
thanks
bubi jackson
Nov 8 2009, 07:47
Hi jack,
from where do have foo_skip 1.0.0? My version and the one from official site is 0.4 - maybe that's the problem.
Same here. Version 0.4
terry
Jack Schmaltz
Nov 8 2009, 14:51
haha, that was it, thanks guys.
im really not sure where i got that one from, think it was with the curacao component pack from way back.
dont know what the deal was with that but all is well now, thanks for your time
jazzthieve
Nov 8 2009, 22:23
Is it possible for foo_skip to skip not only songs rated 1 but also songs rated 2? So everything rated 1 and 2 would be skipped.
jazzthieve
Nov 9 2009, 01:17
Thanks smkk.
inkling
Nov 9 2009, 21:55
For whatever it's worth, an alternative route to achieving this, without addons (well, except columns UI):
I created a filter in Columns UI that sorts my music into four categories: Unrated, Disliked (RATING < 3), Liked (Rating = 3), and Loved (Rating > 3). This way, I can easily filter out music that I don't want in any given playlist by rating it less than 3 and de-selecting the "Disliked" filter.
The filter logic is:
Name: Rating
Field: $IF(%RATING%,$IFGREATER(%RATING%,3,Loved,$IFEQUAL(%RATING%,3,Liked,Disliked)),Unrated)
(Note: I'd love a way to do this where "Liked" songs include all songs with a rating greater than 3, and Loved songs are all songs greater than 4, but I can't figure out how to create a filter that would do that. If anyone knows how, I'd appreciate it!)
A simpler filter would just sort into Disliked (RATING < 3) and Other (Unrated, or Rating > 2):
Name: Rating
Field: $IF($NOT($GREATER(%RATING%,2)), Disliked, Other)
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.