快速登录:  

Forum: General Discussion

话题: Filter Folder script

由于该帖子已年深日久,可能包含陈旧过时或描述错误的信息。

J J ZrnPRO InfinityMember since 2019
Hello..was hoping some one could help me with a script...i would like a filter folder to contain a certain genre, key and bpm. For example...i would like the folder to contain songs with a bpm of 120-125, a genera of dance, and in the keys of 05A, 05B and 06A ( I realize this would depend on how i label the genre).

Thanks for your help
 

发表时间 Mon 19 Oct 20 @ 2:11 am
locoDogPRO InfinityModeratorMember since 2013
genre ="dance" & bpm >=120 & bpm <=125 & key =05a or key =05b or key =06a
 

发表时间 Mon 19 Oct 20 @ 2:39 am
locodog wrote :
genre ="dance" & bpm >=120 & bpm <=125 & key =05a or key =05b or key =06a


genre contains "dance" and bpm >=120 and bpm <=125 and (key='05a' or key='05b' or key='06a')

It's not a good idea to mix AND with OR without grouping...
Also I changed "=" with contains for genre just as an example, depending on how you want to call your genres.
contains 'house' will return 'deep house' , 'disco house' , 'progressive house' , 'tech house' , 'house' e.t.c.
= 'house' will return only 'house'
 

发表时间 Mon 19 Oct 20 @ 7:16 am
J J ZrnPRO InfinityMember since 2019
Thank you very much!
 

发表时间 Mon 19 Oct 20 @ 8:13 pm


(陈旧帖子或论坛版块会自动关闭)