Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: auto playlist filters (Read 1555 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

auto playlist filters

I'm assuming I'm missing something very basic here, but this is what I'd like to do:

Currently I have an auto generated playlist that lists all items that have a custom MV_RATING value above 2. I'd also like to include path data, so that if the path matches a certain pattern to NOT display it.

I'm trying: RATING_MV GREATER 2 path NOT *!Lossless

Which is, include anything with a "RATING_MV" greater than 2, but where the file path does not have !lossless in it.

What do I need to include as the filter to get that working?



 

auto playlist filters

Reply #3
has a mv_rating > 2
Code: [Select]
%rating_mv% GREATER 2

the path does not have !Lossless
Code: [Select]
NOT %path% HAS !Lossless

You put AND between the two statements to only show those files which equal true in both cases. Parentheses are not necessary.
Code: [Select]
(%rating_mv% GREATER 2) AND (NOT %path% HAS !Lossless)