Help for my HARDSTYLE project !!

16 views
Skip to first unread message

Sorin Piboyeux

unread,
Aug 14, 2025, 12:36:58 PMAug 14
to Lightjams
Hey i need help ! i try to make a strobe effect during the kick while i play frenchore music. But there so many false detection and sometimes the strobe donc work during the kick. I use the 1-6 range. 

Here is my code:

trigger(
  // Activation signal = most powerful peak 1–6
  max(
    music.1.bandbeat(1),
    music.1.bandbeat(2),
    music.1.bandbeat(3),
    music.1.bandbeat(4),
    music.1.bandbeat(5),
    music.1.bandbeat(6)
  ),

  0.04, // strobe duration in ms (for the flash aspect)
  10,   // thresholdDown (%) : down under 10% to rearmed
  25,   // thresholdUp (%)   
  0.06  // delay (s) : counter double-flash 60 ms
) * 100 // sortie 0–100%

If someone have an idea or the similar problem i can beg for help 

Mathieu

unread,
Aug 15, 2025, 1:55:45 PMAug 15
to Lightjams
Hi,

A good start for auto strobe activation is to check whether the high frequencies are the most present. Then after 1-2 seconds, you activate the strobe until other frequencies gets louder. One formula could be:

let(loudHifreq, music.1.hi.avg>20 & music.1.hi.avg > music.1.mid.avg,
fadeout(1, isbetween(timer(0, !loudHifreq), 2 /* time before activating */, 10 /* force to end the strobe after this time */))
)
Reply all
Reply to author
Forward
0 new messages