ArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArray BrainModular BrainModular Users Forum 2026-03-27T12:25:16+02:00 https://brainmodular.com/forums/app.php/feed/forum/13 2026-03-27T12:25:16+02:00 2026-03-27T12:25:16+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46247#p46247 <![CDATA[Add-ons discussion • Re: Leap, HH6, M4]]>
did you saw the addon about leap ? Some audio patch

can be a good start

have a nice patching !

Statistics: Posted by BM2F — 27 Mar 2026, 11:25


]]>
2026-03-25T11:52:02+02:00 2026-03-25T11:52:02+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46246#p46246 <![CDATA[Add-ons discussion • Re: Leap, HH6, M4]]>
May be it's a good opportunitie to get involved with Arrays :-)

I believe you can't really "faire l'impasse" on Arrays because it's such a powerfull tool !

There it looks you can get number of hands valids (> palms) recognized (1 or 2)
From there you can know wich value of the Array you're intereseted in (first or second)
I guess you can even reorganize dynamically the values order > so when 2 hands are recognized : the first value is always the one with the smaller x value (the one one the left) ...

May be you'll spend more time today learning to work with Arrays but you'll be quicker next time and you'll learn powerfull tools

Il est toujours bon d'apprendre à pêcher ;-)

Statistics: Posted by grego mondo — 25 Mar 2026, 10:52


]]>
2026-03-25T11:14:56+02:00 2026-03-25T11:14:56+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46245#p46245 <![CDATA[Add-ons discussion • Re: Leap, HH6, M4]]> I haven't find v5xx gemini driver, but I found tracking-software-apple-silicon-6.2.0 and Leap_Motion_Setup_Mac_2.3.1, and I've installed the UltraLeap add-on.
I don't know if this is what you were suggesting, but my hands are being recognized—it works.
Now I have to build the UltraLeap patch.
I’m not used to working with arrays. My initial tests to link hand or finger gestures to audio parameters doesn't work.
Would anyone have a template?
Or I've seen the idea of using Geco. Is that an alternative?
If you have an idea, please let me know :-)
Capture d’écran 40.png

Statistics: Posted by gwennaelle — 25 Mar 2026, 10:14


]]>
2026-03-23T21:22:20+02:00 2026-03-23T21:22:20+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46244#p46244 <![CDATA[Add-ons discussion • Re: Leap, HH6, M4]]> Statistics: Posted by 23fx23 — 23 Mar 2026, 20:22


]]>
2026-03-23T16:34:32+02:00 2026-03-23T16:34:32+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46243#p46243 <![CDATA[Add-ons discussion • Leap, HH6, M4]]> I've been using the Leap and Usine's modules, but it doesn't work now with Usine version MacOS-M-Series 6.0.250506 on an M4 Pro, Mac OS Sequoia version 15.7.1.72.
Is there a driver or update that needs to be installed?
Thank you for your reply
Gwennaelle

Statistics: Posted by gwennaelle — 23 Mar 2026, 15:34


]]>
2026-01-30T10:44:28+02:00 2026-01-30T10:44:28+02:00 https://brainmodular.com/forums/viewtopic.php?t=7425&p=46214#p46214 <![CDATA[Add-ons discussion • new script midi transpose with wrap function ( for creating voice leading chords)]]> Overview

This script is an advanced evolution of the standard MIDI Transpose module. While it retains the core functionality of pitch shifting, it introduces an intelligent Auto-Wrap system. This feature ensures that transposed notes stay within a specific musical range (octave), effectively creating automatic inversions and smoother voice leading for generative patches and chords.

Core Functionalities

Standard Transposition: Functions exactly like the original script, shifting incoming MIDI notes by a user-defined interval (+/- 24 semitones).

Polyphonic Support: Handles multiple MIDI messages (chords) simultaneously, maintaining the integrity of Note-On, Note-Off, and Velocity data.

New Advanced Features

Dynamic Root Control: A new Root Note input allows you to define the start of your "active window." All harmonized notes will be mathematically forced to stay relative to this reference.

Intelligent Auto-Wrap: When active, the script monitors the output pitch. If a transposed note exceeds the Root + 12 boundary, it is automatically shifted down by octaves until it fits the window. Conversely, if it falls below the Root, it is shifted up.

Switchable Inversions: A dedicated Wrap Active switch allows you to toggle between "Block Chords" (standard parallel movement) and "Smart Voicing" (inversions within a single octave).
//////////////////////////
// transpose midi with optional auto-wrap
// Window defined by Root and Root+12
/////////////////////////
var input : Tparameter;
var output : Tparameter;
var transpo : TParameter;
var active : TParameter;
var root : TParameter;

procedure init;
begin
Input := CreateParam('midi in', ptMidi, pioInput);
Output := CreateParam('midi out', ptMidi, pioOutput);

transpo := CreateParam('transpo', ptDataFader, pioInput);
transpo.Format('%.0f');
transpo.Min(-24);
transpo.Max(24);

root := CreateParam('root note', ptDataFader, pioInput);
root.Format('%.0f');
root.Min(0);
root.Max(115);
// On ne met pas de .Value() ici pour éviter l'erreur

active := CreateParam('wrap active', ptSwitch, pioInput);

SetModuleColor($FF3298DB);
end;

procedure Process;
var i : integer;
var nbOfMidi : integer;
var ReceivedMidi : TMidi;
var TranspoVal : integer;
var RootVal : integer;
var HighLimit : integer;
begin

nbOfMidi := input.Length;
output.length(nbOfMidi);

if (nbOfMidi > 0) then
begin
TranspoVal := transpo.asInteger;
RootVal := root.asInteger;
HighLimit := RootVal + 12;

for i := 0 to nbOfMidi-1 do
begin
ReceivedMidi := input.asMidi(i);

ReceivedMidi.data1 := ReceivedMidi.data1 + TranspoVal;

if (active.asInteger > 0) then
begin
while (ReceivedMidi.data1 > HighLimit) do
begin
ReceivedMidi.data1 := ReceivedMidi.data1 - 12;
end;

while (ReceivedMidi.data1 < RootVal) do
begin
ReceivedMidi.data1 := ReceivedMidi.data1 + 12;
end;
end;

output.asMidi(i, ReceivedMidi);
end;
end;
end;

Statistics: Posted by joffo78 — 30 Jan 2026, 09:44


]]>
2026-01-30T10:41:05+02:00 2026-01-30T10:41:05+02:00 https://brainmodular.com/forums/viewtopic.php?t=7402&p=46213#p46213 <![CDATA[Add-ons discussion • Re: light utility brigde between midi and osc on ETC EOS lighting desk]]> which I can complete according to the bold message I need to convey.

Statistics: Posted by joffo78 — 30 Jan 2026, 09:41


]]>
2025-12-01T17:49:17+02:00 2025-12-01T17:49:17+02:00 https://brainmodular.com/forums/viewtopic.php?t=7402&p=46162#p46162 <![CDATA[Add-ons discussion • Re: light utility brigde between midi and osc on ETC EOS lighting desk]]> but I 'm working on it.

About your stuff for the wheels :
I was wondering about shutter how do you choose wich shutter you act on ?

Statistics: Posted by grego mondo — 01 Dec 2025, 16:49


]]>
2025-11-27T22:12:02+02:00 2025-11-27T22:12:02+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46151#p46151 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
++
Olivar

Statistics: Posted by oli_lab — 27 Nov 2025, 21:12


]]>
2025-11-27T18:37:52+02:00 2025-11-27T18:37:52+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46150#p46150 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
They're all okay.
But the Patch exemple "OlilloscOPe.pat" is not OK.
Olilloscope-2.jpg
Olilloscope.jpg

Statistics: Posted by cmodica — 27 Nov 2025, 17:37


]]>
2025-11-26T21:13:06+02:00 2025-11-26T21:13:06+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46149#p46149 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> these have been updated for Macos and should be OK now, thanx for checking if they alright on you side.

It is uploaded in the addons :


Olilloscope 3ch (Olilloscope)

in the modulilab :
ADDSR V3
wavetable reader V2
wave packet V3
Velvet Noise (added the sparsity input for fun)
Wave Extractor-V2
++
Olivar

Statistics: Posted by oli_lab — 26 Nov 2025, 20:13


]]>
2025-11-26T20:18:12+02:00 2025-11-26T20:18:12+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46148#p46148 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> can't find those :
- Wave Recorder V2 is Invalid
- Wave Recorder V3 is OK

do you mean wavetable reader ?

Statistics: Posted by oli_lab — 26 Nov 2025, 19:18


]]>
2025-11-21T15:58:24+02:00 2025-11-21T15:58:24+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46141#p46141 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> Statistics: Posted by oli_lab — 21 Nov 2025, 14:58


]]>
2025-11-21T15:36:56+02:00 2025-11-21T15:36:56+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46140#p46140 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> Thank you, I look into that asap.

Statistics: Posted by oli_lab — 21 Nov 2025, 14:36


]]>
2025-11-21T13:36:03+02:00 2025-11-21T13:36:03+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46139#p46139 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
All the Data_Lab are loading well. Except "ADDSR V3". The "ADDSR V2" is OK, but the V3 is invalid.

All the Moduli_Lab are loading well. But
- "Velvet Noise" and "Wave Extractor-V2" send a "(2) Error : in Process" in the Trace panel.

- Wave Recorder V2 is Invalid
- Wave Recorder V3 is OK

- OliloscPe-3ch is Invalid

- Legacy_Lab -> all OK
- MorphFilters3 -> all OK
- Multitrack recorder -> all OK
- Physic_Lab -> all OK
-RythmBox 2 -> all OK
- RythmBox1 -> all OK
Spices -> all OK

I hope it helps.
Have a nice day.

Statistics: Posted by cmodica — 21 Nov 2025, 12:36


]]>
2025-11-21T12:55:48+02:00 2025-11-21T12:55:48+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46138#p46138 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
- I delete all the data_lab, moduli_lab and Multitrack recorder from the application/config/addons.
- I download the new addons from Usine - > OK.

There is in each folder, a sub folder _MACOSX -> of course, nothings loads well in MAC OS 15 with my M4
modulilab :
PAF (phase aligned formant)
gen wave packet V3
wavetable reader V3
phase distorsion V3

datalab :
event recorder V2

multitrack recorder :
multitrack recorder
Everything loads well. But i didn't find "gen wave packet V3" ...

Statistics: Posted by cmodica — 21 Nov 2025, 11:55


]]>
2025-11-19T18:40:26+02:00 2025-11-19T18:40:26+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46134#p46134 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> On my side, I will compile all the most recent ones and put them online

here is the list of updated modules so far : (you'll need to remove the current addons then reload them, otherwise you'll get doubles)

modulilab :
PAF (phase aligned formant)
gen wave packet V3
wavetable reader V3
phase distorsion V3

datalab :
event recorder V2

multitrack recorder :
multitrack recorder

cheers

Statistics: Posted by oli_lab — 19 Nov 2025, 17:40


]]>
2025-11-19T18:21:41+02:00 2025-11-19T18:21:41+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46133#p46133 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> I will tell you.

Statistics: Posted by cmodica — 19 Nov 2025, 17:21


]]>
2025-11-19T15:56:49+02:00 2025-11-19T15:56:49+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46132#p46132 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> that is the good news,
now, the bad one :
I need to know all the modules that are not working so I can fix them.
and they are hundreds...

Statistics: Posted by oli_lab — 19 Nov 2025, 14:56


]]>
2025-11-19T15:01:41+02:00 2025-11-19T15:01:41+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46131#p46131 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>

Statistics: Posted by cmodica — 19 Nov 2025, 14:01


]]>
2025-11-19T13:24:25+02:00 2025-11-19T13:24:25+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46130#p46130 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> If someone with an M2 can have a try, it will clear things up

I compiled an example from the SDK and a module of mine (with clean xcode project) can you give it a try again ?
thanx
Olivar

Statistics: Posted by oli_lab — 19 Nov 2025, 12:24


]]>
2025-11-19T11:18:58+02:00 2025-11-19T11:18:58+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46129#p46129 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
Sorry but I tested both and neither one loads. They appear as Invalid.

Statistics: Posted by cmodica — 19 Nov 2025, 10:18


]]>
2025-11-18T20:44:54+02:00 2025-11-18T20:44:54+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46127#p46127 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
I suspect it doesn't come from the compilation settings as they are all the same. I need to be sure it comes from something else in Xcode.

I recompiled the gcd module (gcd_test) if it doesn't work >> problem with Xcode if it works>>it will mean that I have an issue with with my settings for the other module (phase distorsion V3)

thanx for your time

Olivar

Statistics: Posted by oli_lab — 18 Nov 2025, 19:44


]]>
2025-11-16T19:36:05+02:00 2025-11-16T19:36:05+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46123#p46123 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> Sorry for the late reply.
I tested on a Mac M4
can you try ADDSRV3 and phaseDistortionV3 from modulilab34 ?
ADDSRV3 and PhaseDistorsionV3 not loaded (Invalid)
can you try to load the GCD module (datalab/math) into a M4 and tell me if it is loading ok ?
load ok ! 8)

Thank you.

Statistics: Posted by cmodica — 16 Nov 2025, 18:36


]]>
2025-11-11T17:47:05+02:00 2025-11-11T17:47:05+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46113#p46113 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
Hello Olivar.
I tested it with my new MacBook Pro M4 and it doesn't work.
Both seem to be invalid. I downloaded the latest Modulilab update (Modulilab 34) to test them.

They you for your work.
Hi !
can you try to load the GCD module (datalab/math) into a M4 and tell me if it is loading ok ?
I'm puzzled !

find out so far that M4 need ARM64e and M2 only ARM64

thanx

Statistics: Posted by oli_lab — 11 Nov 2025, 16:47


]]>
BrainModular BrainModular Users Forum 2026-03-27T12:25:16+02:00 https://brainmodular.com/forums/app.php/feed/forum/13 2026-03-27T12:25:16+02:00 2026-03-27T12:25:16+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46247#p46247 <![CDATA[Add-ons discussion • Re: Leap, HH6, M4]]>
did you saw the addon about leap ? Some audio patch

can be a good start

have a nice patching !

Statistics: Posted by BM2F — 27 Mar 2026, 11:25


]]>
2026-03-25T11:52:02+02:00 2026-03-25T11:52:02+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46246#p46246 <![CDATA[Add-ons discussion • Re: Leap, HH6, M4]]>
May be it's a good opportunitie to get involved with Arrays :-)

I believe you can't really "faire l'impasse" on Arrays because it's such a powerfull tool !

There it looks you can get number of hands valids (> palms) recognized (1 or 2)
From there you can know wich value of the Array you're intereseted in (first or second)
I guess you can even reorganize dynamically the values order > so when 2 hands are recognized : the first value is always the one with the smaller x value (the one one the left) ...

May be you'll spend more time today learning to work with Arrays but you'll be quicker next time and you'll learn powerfull tools

Il est toujours bon d'apprendre à pêcher ;-)

Statistics: Posted by grego mondo — 25 Mar 2026, 10:52


]]>
2026-03-25T11:14:56+02:00 2026-03-25T11:14:56+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46245#p46245 <![CDATA[Add-ons discussion • Re: Leap, HH6, M4]]> I haven't find v5xx gemini driver, but I found tracking-software-apple-silicon-6.2.0 and Leap_Motion_Setup_Mac_2.3.1, and I've installed the UltraLeap add-on.
I don't know if this is what you were suggesting, but my hands are being recognized—it works.
Now I have to build the UltraLeap patch.
I’m not used to working with arrays. My initial tests to link hand or finger gestures to audio parameters doesn't work.
Would anyone have a template?
Or I've seen the idea of using Geco. Is that an alternative?
If you have an idea, please let me know :-)
Capture d’écran 40.png

Statistics: Posted by gwennaelle — 25 Mar 2026, 10:14


]]>
2026-03-23T21:22:20+02:00 2026-03-23T21:22:20+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46244#p46244 <![CDATA[Add-ons discussion • Re: Leap, HH6, M4]]> Statistics: Posted by 23fx23 — 23 Mar 2026, 20:22


]]>
2026-03-23T16:34:32+02:00 2026-03-23T16:34:32+02:00 https://brainmodular.com/forums/viewtopic.php?t=7433&p=46243#p46243 <![CDATA[Add-ons discussion • Leap, HH6, M4]]> I've been using the Leap and Usine's modules, but it doesn't work now with Usine version MacOS-M-Series 6.0.250506 on an M4 Pro, Mac OS Sequoia version 15.7.1.72.
Is there a driver or update that needs to be installed?
Thank you for your reply
Gwennaelle

Statistics: Posted by gwennaelle — 23 Mar 2026, 15:34


]]>
2026-01-30T10:44:28+02:00 2026-01-30T10:44:28+02:00 https://brainmodular.com/forums/viewtopic.php?t=7425&p=46214#p46214 <![CDATA[Add-ons discussion • new script midi transpose with wrap function ( for creating voice leading chords)]]> Overview

This script is an advanced evolution of the standard MIDI Transpose module. While it retains the core functionality of pitch shifting, it introduces an intelligent Auto-Wrap system. This feature ensures that transposed notes stay within a specific musical range (octave), effectively creating automatic inversions and smoother voice leading for generative patches and chords.

Core Functionalities

Standard Transposition: Functions exactly like the original script, shifting incoming MIDI notes by a user-defined interval (+/- 24 semitones).

Polyphonic Support: Handles multiple MIDI messages (chords) simultaneously, maintaining the integrity of Note-On, Note-Off, and Velocity data.

New Advanced Features

Dynamic Root Control: A new Root Note input allows you to define the start of your "active window." All harmonized notes will be mathematically forced to stay relative to this reference.

Intelligent Auto-Wrap: When active, the script monitors the output pitch. If a transposed note exceeds the Root + 12 boundary, it is automatically shifted down by octaves until it fits the window. Conversely, if it falls below the Root, it is shifted up.

Switchable Inversions: A dedicated Wrap Active switch allows you to toggle between "Block Chords" (standard parallel movement) and "Smart Voicing" (inversions within a single octave).
//////////////////////////
// transpose midi with optional auto-wrap
// Window defined by Root and Root+12
/////////////////////////
var input : Tparameter;
var output : Tparameter;
var transpo : TParameter;
var active : TParameter;
var root : TParameter;

procedure init;
begin
Input := CreateParam('midi in', ptMidi, pioInput);
Output := CreateParam('midi out', ptMidi, pioOutput);

transpo := CreateParam('transpo', ptDataFader, pioInput);
transpo.Format('%.0f');
transpo.Min(-24);
transpo.Max(24);

root := CreateParam('root note', ptDataFader, pioInput);
root.Format('%.0f');
root.Min(0);
root.Max(115);
// On ne met pas de .Value() ici pour éviter l'erreur

active := CreateParam('wrap active', ptSwitch, pioInput);

SetModuleColor($FF3298DB);
end;

procedure Process;
var i : integer;
var nbOfMidi : integer;
var ReceivedMidi : TMidi;
var TranspoVal : integer;
var RootVal : integer;
var HighLimit : integer;
begin

nbOfMidi := input.Length;
output.length(nbOfMidi);

if (nbOfMidi > 0) then
begin
TranspoVal := transpo.asInteger;
RootVal := root.asInteger;
HighLimit := RootVal + 12;

for i := 0 to nbOfMidi-1 do
begin
ReceivedMidi := input.asMidi(i);

ReceivedMidi.data1 := ReceivedMidi.data1 + TranspoVal;

if (active.asInteger > 0) then
begin
while (ReceivedMidi.data1 > HighLimit) do
begin
ReceivedMidi.data1 := ReceivedMidi.data1 - 12;
end;

while (ReceivedMidi.data1 < RootVal) do
begin
ReceivedMidi.data1 := ReceivedMidi.data1 + 12;
end;
end;

output.asMidi(i, ReceivedMidi);
end;
end;
end;

Statistics: Posted by joffo78 — 30 Jan 2026, 09:44


]]>
2026-01-30T10:41:05+02:00 2026-01-30T10:41:05+02:00 https://brainmodular.com/forums/viewtopic.php?t=7402&p=46213#p46213 <![CDATA[Add-ons discussion • Re: light utility brigde between midi and osc on ETC EOS lighting desk]]> which I can complete according to the bold message I need to convey.

Statistics: Posted by joffo78 — 30 Jan 2026, 09:41


]]>
2025-12-01T17:49:17+02:00 2025-12-01T17:49:17+02:00 https://brainmodular.com/forums/viewtopic.php?t=7402&p=46162#p46162 <![CDATA[Add-ons discussion • Re: light utility brigde between midi and osc on ETC EOS lighting desk]]> but I 'm working on it.

About your stuff for the wheels :
I was wondering about shutter how do you choose wich shutter you act on ?

Statistics: Posted by grego mondo — 01 Dec 2025, 16:49


]]>
2025-11-27T22:12:02+02:00 2025-11-27T22:12:02+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46151#p46151 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
++
Olivar

Statistics: Posted by oli_lab — 27 Nov 2025, 21:12


]]>
2025-11-27T18:37:52+02:00 2025-11-27T18:37:52+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46150#p46150 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
They're all okay.
But the Patch exemple "OlilloscOPe.pat" is not OK.
Olilloscope-2.jpg
Olilloscope.jpg

Statistics: Posted by cmodica — 27 Nov 2025, 17:37


]]>
2025-11-26T21:13:06+02:00 2025-11-26T21:13:06+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46149#p46149 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> these have been updated for Macos and should be OK now, thanx for checking if they alright on you side.

It is uploaded in the addons :


Olilloscope 3ch (Olilloscope)

in the modulilab :
ADDSR V3
wavetable reader V2
wave packet V3
Velvet Noise (added the sparsity input for fun)
Wave Extractor-V2
++
Olivar

Statistics: Posted by oli_lab — 26 Nov 2025, 20:13


]]>
2025-11-26T20:18:12+02:00 2025-11-26T20:18:12+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46148#p46148 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> can't find those :
- Wave Recorder V2 is Invalid
- Wave Recorder V3 is OK

do you mean wavetable reader ?

Statistics: Posted by oli_lab — 26 Nov 2025, 19:18


]]>
2025-11-21T15:58:24+02:00 2025-11-21T15:58:24+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46141#p46141 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> Statistics: Posted by oli_lab — 21 Nov 2025, 14:58


]]>
2025-11-21T15:36:56+02:00 2025-11-21T15:36:56+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46140#p46140 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> Thank you, I look into that asap.

Statistics: Posted by oli_lab — 21 Nov 2025, 14:36


]]>
2025-11-21T13:36:03+02:00 2025-11-21T13:36:03+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46139#p46139 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
All the Data_Lab are loading well. Except "ADDSR V3". The "ADDSR V2" is OK, but the V3 is invalid.

All the Moduli_Lab are loading well. But
- "Velvet Noise" and "Wave Extractor-V2" send a "(2) Error : in Process" in the Trace panel.

- Wave Recorder V2 is Invalid
- Wave Recorder V3 is OK

- OliloscPe-3ch is Invalid

- Legacy_Lab -> all OK
- MorphFilters3 -> all OK
- Multitrack recorder -> all OK
- Physic_Lab -> all OK
-RythmBox 2 -> all OK
- RythmBox1 -> all OK
Spices -> all OK

I hope it helps.
Have a nice day.

Statistics: Posted by cmodica — 21 Nov 2025, 12:36


]]>
2025-11-21T12:55:48+02:00 2025-11-21T12:55:48+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46138#p46138 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
- I delete all the data_lab, moduli_lab and Multitrack recorder from the application/config/addons.
- I download the new addons from Usine - > OK.

There is in each folder, a sub folder _MACOSX -> of course, nothings loads well in MAC OS 15 with my M4
modulilab :
PAF (phase aligned formant)
gen wave packet V3
wavetable reader V3
phase distorsion V3

datalab :
event recorder V2

multitrack recorder :
multitrack recorder
Everything loads well. But i didn't find "gen wave packet V3" ...

Statistics: Posted by cmodica — 21 Nov 2025, 11:55


]]>
2025-11-19T18:40:26+02:00 2025-11-19T18:40:26+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46134#p46134 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> On my side, I will compile all the most recent ones and put them online

here is the list of updated modules so far : (you'll need to remove the current addons then reload them, otherwise you'll get doubles)

modulilab :
PAF (phase aligned formant)
gen wave packet V3
wavetable reader V3
phase distorsion V3

datalab :
event recorder V2

multitrack recorder :
multitrack recorder

cheers

Statistics: Posted by oli_lab — 19 Nov 2025, 17:40


]]>
2025-11-19T18:21:41+02:00 2025-11-19T18:21:41+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46133#p46133 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> I will tell you.

Statistics: Posted by cmodica — 19 Nov 2025, 17:21


]]>
2025-11-19T15:56:49+02:00 2025-11-19T15:56:49+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46132#p46132 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> that is the good news,
now, the bad one :
I need to know all the modules that are not working so I can fix them.
and they are hundreds...

Statistics: Posted by oli_lab — 19 Nov 2025, 14:56


]]>
2025-11-19T15:01:41+02:00 2025-11-19T15:01:41+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46131#p46131 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>

Statistics: Posted by cmodica — 19 Nov 2025, 14:01


]]>
2025-11-19T13:24:25+02:00 2025-11-19T13:24:25+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46130#p46130 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> If someone with an M2 can have a try, it will clear things up

I compiled an example from the SDK and a module of mine (with clean xcode project) can you give it a try again ?
thanx
Olivar

Statistics: Posted by oli_lab — 19 Nov 2025, 12:24


]]>
2025-11-19T11:18:58+02:00 2025-11-19T11:18:58+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46129#p46129 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
Sorry but I tested both and neither one loads. They appear as Invalid.

Statistics: Posted by cmodica — 19 Nov 2025, 10:18


]]>
2025-11-18T20:44:54+02:00 2025-11-18T20:44:54+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46127#p46127 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
I suspect it doesn't come from the compilation settings as they are all the same. I need to be sure it comes from something else in Xcode.

I recompiled the gcd module (gcd_test) if it doesn't work >> problem with Xcode if it works>>it will mean that I have an issue with with my settings for the other module (phase distorsion V3)

thanx for your time

Olivar

Statistics: Posted by oli_lab — 18 Nov 2025, 19:44


]]>
2025-11-16T19:36:05+02:00 2025-11-16T19:36:05+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46123#p46123 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]> Sorry for the late reply.
I tested on a Mac M4
can you try ADDSRV3 and phaseDistortionV3 from modulilab34 ?
ADDSRV3 and PhaseDistorsionV3 not loaded (Invalid)
can you try to load the GCD module (datalab/math) into a M4 and tell me if it is loading ok ?
load ok ! 8)

Thank you.

Statistics: Posted by cmodica — 16 Nov 2025, 18:36


]]>
2025-11-11T17:47:05+02:00 2025-11-11T17:47:05+02:00 https://brainmodular.com/forums/viewtopic.php?t=7404&p=46113#p46113 <![CDATA[Add-ons discussion • Re: UserModule and MAC M4]]>
Hello Olivar.
I tested it with my new MacBook Pro M4 and it doesn't work.
Both seem to be invalid. I downloaded the latest Modulilab update (Modulilab 34) to test them.

They you for your work.
Hi !
can you try to load the GCD module (datalab/math) into a M4 and tell me if it is loading ok ?
I'm puzzled !

find out so far that M4 need ARM64e and M2 only ARM64

thanx

Statistics: Posted by oli_lab — 11 Nov 2025, 16:47


]]>