Plugin "Spinal Tap"

BECOME PART OF THE COMMUNITY - Sign up here
  • I found the problem on the plugin for macs. It's not the time but the fact of using string formatting with the GrandMA commands (Echo & CMD).

    If I transform these commands:


    Code
    Echo('Too much deviation on last tap (%.3fs), preparing new sampletable', sampletime)
    Echo('Averagetime %.3fs, %.0fBPM (%i samples)', averagetime, 60/averagetime, #sampletable)
    Cmd('FaderMaster Master 3.%i At %.4f', speedmaster, math.sqrt(0.25/averagetime)*100)


    In

    Code
    Echo(string.format("Too much deviation on last tap (%.3fs), preparing new sampletable", sampletime))
    Echo(string.format('Averagetime%.3fs,%.0fBPM (%i samples)', averagetime, 60/averagetime, #sampletable))
    Cmd(string.format('FaderMaster Master 3.%i At %.4f', speedmaster, math.sqrt(0.25/averagetime)*100))

    It works like a charm.


    Attached is the modified version of the plugin. Andreas, Can you review the code and maybe redo a post with this modified version if it doesn't break anything on the other platforms (windows & console) ?

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!