I have searched for applicable help generally and in these forums without finding an answer. It's probably there somewhere but my google-fu isn't particularly robust.
I'm trying to create an auto playlist in Foobar v1.6.8 that contains tracks that have not been played, i.e. %count% LESS 1.
I create the query by right-clicking on All Music > Create Autoplaylist and enter the query text. Enabling/disabling force-sorted makes no difference. The resulting list of music contains mostly "Unplayed" tracks but also tracks that have been played anywhere from 1 to 29 times. It doesn't, however, contain my complete collection.
What am I doing wrong? What is the query actually returning?
Also, why doesn't the auto-playlist update after I play a track which changes the count field from Unplayed to 1?
The tag you want is %playcount%, not %count%.
The tag you want is %playcount%, not %count%.
Yeah, I should have caught that but it doesn't make a difference. I right-click on the playlist tab, select Autoplaylist... and adjust the query. I click on OK but the list itself still contains the same music. On careful review, though, I think all my music
is in the list. In other words, the query is returning everything.
Can I not sort within this query?
If you are using the Playback Statistics component, you should be using:
%play_count% LESS 1
or
%play_count% MISSING
And if you want sorting:
%play_count% LESS 10 SORT DESCENDING BY %play_count%
You can also leave out or replace DESCENDING with ASCENDING
If you are using the Playback Statistics component, you should be using:
%play_count% LESS 1
or
%play_count% MISSING
That did it, many thanks.
And if you want sorting:
%play_count% LESS 10 SORT DESCENDING BY %play_count%
You can also leave out or replace DESCENDING with ASCENDING
When I attempt the SORT condition, the Autoplaylist Properties dialog will not close and displays "Sort operations not available in this context". It appears one can't sort from within the selection criteria.
I am guessing you already created the Autoplaylist and you are trying to edit its pattern, instead of just generating a new one with "Library > Search > ... > Create autoplaylist".
Yes.
When I attempt the SORT condition, the Autoplaylist Properties dialog will not close and displays "Sort operations not available in this context". It appears one can't sort from within the selection criteria.
Ok, not quite correct. I reentered the query, including a
sort ascending by %RATING%
, and it worked. Are the keywords case insensitive?