<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles]]></title><description><![CDATA[<p>I compiled TheTechnobear's mutable instruments externals and made some slightly better helpfiles from the info in orac plugin descriptions and source.<br />
so far only compiled for osx:<br />
<a href="/uploads/files/1620498903036-mi4pd-osx-x86_64.zip">Mi4Pd-OSX-x86_64.zip</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Jul 2026 23:46:14 GMT</lastBuildDate><atom:link href="http://forum.pdpatchrepo.info/topic/13439.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 08 May 2021 18:35:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Sat, 08 May 2021 18:35:40 GMT]]></title><description><![CDATA[<p>I compiled TheTechnobear's mutable instruments externals and made some slightly better helpfiles from the info in orac plugin descriptions and source.<br />
so far only compiled for osx:<br />
<a href="/uploads/files/1620498903036-mi4pd-osx-x86_64.zip">Mi4Pd-OSX-x86_64.zip</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles</guid><dc:creator><![CDATA[seb-harmonik.ar]]></dc:creator><pubDate>Sat, 08 May 2021 18:35:40 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Sun, 04 Jul 2021 19:32:42 GMT]]></title><description><![CDATA[<p>Hello, I'm trying to build these wonderfull externals on windows 64bit without success for the moment.<br />
You can see here the issue I made <a href="https://github.com/TheTechnobear/Mi4Pd/issues/12" rel="nofollow">https://github.com/TheTechnobear/Mi4Pd/issues/12</a></p>
<p>If someones achieve to build them (or can explain how it should be done) I would be super happy <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/grinning.png" title=":)" alt=":)" /></p>
<p>Thank you everyone</p>
<p>Guillaume</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/2</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/2</guid><dc:creator><![CDATA[Guillaume]]></dc:creator><pubDate>Sun, 04 Jul 2021 19:32:42 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Mon, 05 Jul 2021 01:44:02 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/guillaume">@Guillaume</a> It seems like it can't find pd.dll in <code>PD_CMAKE_PATH</code> from what I can tell.<br />
Btw it doesn't seem like windows is supported by the author unfortunately (according to the Readme)</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/3</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/3</guid><dc:creator><![CDATA[seb-harmonik.ar]]></dc:creator><pubDate>Mon, 05 Jul 2021 01:44:02 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Mon, 05 Jul 2021 15:32:03 GMT]]></title><description><![CDATA[<p>Arg... This is what I was fear about... So I hope one day someone with more knowledge than me on building will port this on windows</p>
<p>Thanks for your answer</p>
<p>Guillaume</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/4</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/4</guid><dc:creator><![CDATA[Guillaume]]></dc:creator><pubDate>Mon, 05 Jul 2021 15:32:03 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Sat, 24 Jul 2021 12:31:45 GMT]]></title><description><![CDATA[<p>I managed to compile in <code>msys2 MinGW 64-bit</code> on win10 after adding this to <code>CMakeList.txt</code></p>
<pre><code>if(WIN32)
    message(&quot;windows support limited&quot;)
    set(CMAKE_CXX_FLAGS &quot;${CMAKE_CXX_FLAGS} -DTEST -fPIC&quot; )
    set(PD_CMAKE_PATH &quot;C:/Program Files/Pd&quot;) 
    set(EXECUTABLE_NAME mi4pd)
endif()
</code></pre>
<p>also, to force <code>cmake</code> to use <code>Unix Makefile</code> generator instead of default MSVC<br />
I added file next to <code>CMakeList.txt</code> called <code>PreLoad.cmake</code> with following:</p>
<pre><code>set(CMAKE_GENERATOR &quot;Unix Makefiles&quot; CACHE INTERNAL &quot;&quot; FORCE)
</code></pre>
<p>So,</p>
<pre><code>mkdir build &amp;&amp; cd build &amp;&amp; cmake .. &amp;&amp; make
</code></pre>
<p>produces <code>DLLs</code> in <code>./release/bin/</code> with some minor warnings, but all audio object causes segmentation fault and crashes <code>Pd</code> straight after enabling DSP. Only <code>grids</code> is usable.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/5</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/5</guid><dc:creator><![CDATA[software-materialism]]></dc:creator><pubDate>Sat, 24 Jul 2021 12:31:45 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Mon, 09 Aug 2021 15:10:19 GMT]]></title><description><![CDATA[<p>thanx man !<br />
made already some little track with it</p>
<p><div class="embed-container"><iframe src="//www.youtube.com/embed/C4DK1xMFeYw" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div><img src="/uploads/files/1628521792532-tjssm08082021.jpg" alt="tjssm08082021.jpg" class="img-responsive img-markdown" /></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/6</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/6</guid><dc:creator><![CDATA[pajzd]]></dc:creator><pubDate>Mon, 09 Aug 2021 15:10:19 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Tue, 07 Sep 2021 17:12:48 GMT]]></title><description><![CDATA[<p>One thing to keep in mind with these externals (unless you have modified them, which I don't know how to do) is that they were created/adapted for use in Organelle, that is, at 44.1K and 16 bits.</p>
<p>The original hardware modules have different and very varied sample rates. In short, I think clouds uses 32k, rings 48k, braids 96k, etc...</p>
<p>They are great externals, I managed to compile them in Linux after looking for some information and since then I haven't stopped using them.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/7</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/7</guid><dc:creator><![CDATA[macrogmittrei]]></dc:creator><pubDate>Tue, 07 Sep 2021 17:12:48 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Thu, 21 Oct 2021 20:22:54 GMT]]></title><description><![CDATA[<p>I just noticed a few days ago, that shortly after commenting on the forum or even at the same time, a couple of externals (brds and rngs) were updated on TheTechnobear's GitHub.<br />
They can now run at their original sample rate and if not, a message like this now pops up in the console:<br />
&quot;brds~.pd is designed for 96k, not 44100.000000, approximating pitch&quot;.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/8</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/8</guid><dc:creator><![CDATA[macrogmittrei]]></dc:creator><pubDate>Thu, 21 Oct 2021 20:22:54 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Mon, 31 Jan 2022 10:09:38 GMT]]></title><description><![CDATA[<p>Hi, looking at the lmnts help file, seems none of the blow or strike parameters do anything...then looking at the code in Github <a href="https://github.com/TheTechnobear/Mi4Pd/blob/master/lmnts/lmnts~.cpp#L163-L166" rel="nofollow">https://github.com/TheTechnobear/Mi4Pd/blob/master/lmnts/lmnts~.cpp#L163-L166</a>, it looks like it's been disabled.</p>
<p>Does that sound about right? Are samples in the actual hardware, therefore subject to copyright stuff etc..?</p>
<p>Of course can make our own impulse..but just struck (no pun intended) me as a little odd.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/9</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/9</guid><dc:creator><![CDATA[boonier]]></dc:creator><pubDate>Mon, 31 Jan 2022 10:09:38 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Sun, 03 Apr 2022 19:44:52 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/boonier">@boonier</a> I don't think there's any copyright issue as the Mutable Instruments source code is freely distributed... I'm not sure why the code you mentioned was commented out.</p>
<p>I made some changes to the code and built another version:</p>
<p><a href="/uploads/files/1648875560186-lmnts.pd_linux">lmnts~.pd_linux</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/10</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/10</guid><dc:creator><![CDATA[ryansprott]]></dc:creator><pubDate>Sun, 03 Apr 2022 19:44:52 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Sun, 03 Apr 2022 14:06:07 GMT]]></title><description><![CDATA[<p>I must be missing something, but both blow and strike parameters have always worked flawlessly for me without having made any changes to the code.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/11</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/11</guid><dc:creator><![CDATA[macrogmittrei]]></dc:creator><pubDate>Sun, 03 Apr 2022 14:06:07 GMT</pubDate></item><item><title><![CDATA[Reply to TheTechnobear&#x27;s Mi4Pd (Mutable Instruments modules) with updated helpfiles on Sun, 03 Apr 2022 19:43:46 GMT]]></title><description><![CDATA[<p>Well, this is strange.  I've just compared both versions (with and without code changes) on a different machine and these strike/blow parameters affect the sound output for both.  <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/confused.png" title="confused" alt=":confused:" /></p>
<p>There do seem to be some subtle variations between the versions' responses to strike_timbre but this could just be my imagination.</p>
<p>Not sure what happened here, perhaps a sample-rate issue?  In any case, I have closed the GitHub issue for now.  I am still wondering if any other users have experienced this behavior.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/12</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13439/thetechnobear-s-mi4pd-mutable-instruments-modules-with-updated-helpfiles/12</guid><dc:creator><![CDATA[ryansprott]]></dc:creator><pubDate>Sun, 03 Apr 2022 19:43:46 GMT</pubDate></item></channel></rss>