Yeah I was talking about pools, was referring to the script which you provided for my need.
{
"readme": "Adds Least Recently Played (LRP) and Lowest Play Count (LPC) tracks.",
"pools": [{
"name": "sep"
},
{
"name": "LRP + LPC",
"pool": {
"fromPls": {
"_LIBRARY_0": 15,
"_LIBRARY_1": 15
},
"query": {
"_LIBRARY_0": "%jsp3_loved% IS 1 AND NOT %jsp3_last_played% DURING LAST 3 DAYS SORT ASCENDING BY %jsp3_last_played%",
"_LIBRARY_1": "%jsp3_loved% IS 1 AND NOT %jsp3_last_played% DURING LAST 3 DAYS SORT ASCENDING BY %jsp3_playcount%"
},
"toPls": "LRP + LPC",
"pickMethod": {
"_LIBRARY_0": "start",
"_LIBRARY_1": "start"
},
"smartShuffle": "ALBUM ARTIST"
}
}]
}
I wanted to know if the shuffling happened after it queries for both _LIBRARY_0 and _LIBRARY_1 or shuffle _LIBRARY_0 then shuffle _LIBRARY_1.
I guess a small diagram explaining my question,
shuffle(_LIBRARY_0 + _LIBRARY_1) = LRP + LPC
or
shuffle(_LIBRARY_0) + shuffle( _LIBRARY_1) = LRP + LPC
Because if it's the latter I think there might be some duplicates and I would have to resort to manually shuffling afterwards like you had mentioned.