<?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[RMS slow human]]></title><description><![CDATA[<p>Hello everyone! I was wondering if there was the possibility to dynamically change the Hann windowing to change the update rate of the spectrum.<br />
What could be a feasible solution to move from a fast-peak spectrum to a slow-human one such as in the TDR prism?<br />
Thank you for your attention!</p>
<p><a href="/uploads/files/1746614476119-rmsslowhuman.mp4">rmsslowhuman.mp4</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 15:50:45 GMT</lastBuildDate><atom:link href="http://forum.pdpatchrepo.info/topic/15114.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 07 May 2025 10:49:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to RMS slow human on Wed, 07 May 2025 10:49:40 GMT]]></title><description><![CDATA[<p>Hello everyone! I was wondering if there was the possibility to dynamically change the Hann windowing to change the update rate of the spectrum.<br />
What could be a feasible solution to move from a fast-peak spectrum to a slow-human one such as in the TDR prism?<br />
Thank you for your attention!</p>
<p><a href="/uploads/files/1746614476119-rmsslowhuman.mp4">rmsslowhuman.mp4</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human</guid><dc:creator><![CDATA[theunknownproducer]]></dc:creator><pubDate>Wed, 07 May 2025 10:49:40 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Thu, 08 May 2025 12:54:11 GMT]]></title><description><![CDATA[<p>this is not a precise imitation and i'm not sure if it can be done more efficiently - but it works quite well by smoothing the graph value updates, effectively low-passing them by only adding a fraction of the difference (i'm also differentiating between rising and falling values - the rising ones are less filtered):</p>
<p><a href="/uploads/files/1746660211059-smoothed_spectrum.mp4">smoothed_spectrum.mp4</a></p>
<p>this could be done in vanilla - but the <code>tab_*</code> objects of the <code>iem_tab</code> library are certainly a lot faster.<br />
for smoothing the graph itself, i use convolution (<code>tab_conv</code>) with a small smoothing kernel. another option there is tabreceive~ -&gt; lop~ -&gt; tabsend~. the result looks ok as well, but it's obviously not symmetrically smoothed then.</p>
<p>not sure if these explanations make sense. but since i was working on some spectrogram stuff today, this question resonated and made me try to respond. <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/grinning.png" title=":)" alt=":)" /></p>
<p>EDIT: btw., the signal in the video is just pink noise on/off.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/2</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/2</guid><dc:creator><![CDATA[ben.wes]]></dc:creator><pubDate>Thu, 08 May 2025 12:54:11 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Thu, 08 May 2025 12:41:35 GMT]]></title><description><![CDATA[<p>WOW <a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/ben-wes">@ben-wes</a> that's a great looking solution! Thanks for the answer <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/smile.png" title="smile" alt=":smile:" /><br />
I tried to create the idea, having two smoothing factors.<br />
The first concerns the transition between peak and rms response.<br />
The second, as you well thought, with a lop~. The smoothing is quite evident, as is a frequency shifting/spectrum translation (probably phase problems caused by the filter). I would have to study quite a bit about rephasing the signal <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/laughing.png" title="laughing" alt=":laughing:" /><br />
I'm really out of ideas, as I would like to stay in the plugdata environment to take advantage of the patch in the DAW.</p>
<p><a href="/uploads/files/1746707810165-freqshifting.mp4">Freqshifting.mp4</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/3</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/3</guid><dc:creator><![CDATA[theunknownproducer]]></dc:creator><pubDate>Thu, 08 May 2025 12:41:35 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Thu, 08 May 2025 13:47:24 GMT]]></title><description><![CDATA[<p>yep - smoothing the spectrum with a lop~ was not a good idea, i assume. and also my convolution with the kernel i used was not a good idea, since it created an offset of the frequencies in the final spectrum. but that smoothing kernel can also be properly represented really symmetrically if half of it is in the negative frequencies (at the end of the array). and i omitted the convolution with <code>tab_conv</code> in favor of frequency domain convolution with vanilla objects which should be quite fast as well:</p>
<p><img src="/uploads/files/1746711552107-screenshot-2025-05-08-at-15.17.39.png" alt="Screenshot 2025-05-08 at 15.17.39.png" class="img-responsive img-markdown" /></p>
<p>the smoothing kernel in this case is just a 64 sample hann window (split in half). barely visible here - and possibly, it might be a good idea to use an uneven width and offset it. not sure ...</p>
<p><img src="/uploads/files/1746711561159-screenshot-2025-05-08-at-15.33.50.png" alt="Screenshot 2025-05-08 at 15.33.50.png" class="img-responsive img-markdown" /></p>
<p>here's the result (original, smoothed values and smoothed spectrum) - looks quite correct. there's a 4000Hz signal peak here besides the pink noise now that makes it more obvious:</p>
<p><img src="/uploads/files/1746712029470-screenshot-2025-05-08-at-15.45.22.png" alt="Screenshot 2025-05-08 at 15.45.22.png" class="img-responsive img-markdown" /></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/4</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/4</guid><dc:creator><![CDATA[ben.wes]]></dc:creator><pubDate>Thu, 08 May 2025 13:47:24 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Thu, 08 May 2025 14:44:52 GMT]]></title><description><![CDATA[<p>ok, damn ... this solution with iem_tab was really pointless! feeding back the signal as you did is smarter and certainly more efficient! i also like the approach using <code>max~</code> to keep the immediate peaks. so here's now an all vanilla solution (except for the <code>tabredraw</code> i'm using to redraw the array). thanks a lot for the inspiration!</p>
<p>video: <a href="/uploads/files/1746715490394-2025-05-08-16-44-26.mp4">2025-05-08 16-44-26.mp4</a></p>
<p><img src="/uploads/files/1746715116643-image.png" alt="image.png" class="img-responsive img-markdown" /></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/5</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/5</guid><dc:creator><![CDATA[ben.wes]]></dc:creator><pubDate>Thu, 08 May 2025 14:44:52 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Thu, 08 May 2025 20:26:58 GMT]]></title><description><![CDATA[<p>Omg <a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/ben-wes">@ben.wes</a> you went godmode! Well, you are really sophisticated. I think yours is a much cleaner solution (mathematically speaking), but it affects cpu cycles a lot.<br />
Your intuition about the filter was definitely the best.<br />
I dont need to explain my solution, I just positioned the filter in the right spot and simply exploited the feedback in the correct way (or at least I think).<br />
And here's the grand finale <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/smile.png" title="smile" alt=":smile:" /></p>
<p><a href="/uploads/files/1746735948900-gran-finale.mp4">Gran Finale.mp4</a></p>
<p>Thanks for everything Ben, you will definitely be mentioned in this work!</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/6</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/6</guid><dc:creator><![CDATA[theunknownproducer]]></dc:creator><pubDate>Thu, 08 May 2025 20:26:58 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Sat, 10 May 2025 10:34:03 GMT]]></title><description><![CDATA[<p>glad you found a good solution! and thanks for your words <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/grinning.png" title=":)" alt=":)" /> - but i'm actually just starting to learn a bit more about that frequency domain stuff. and i think that my patch still has quite some flaws concerning the scales for example! anyway - i'll try to clean this up a bit more and share when ready (also to document it for myself) ... would be fun to check out your result as well!</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/7</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/7</guid><dc:creator><![CDATA[ben.wes]]></dc:creator><pubDate>Sat, 10 May 2025 10:34:03 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Sat, 10 May 2025 17:38:21 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/ben-wes">@ben.wes</a> Have you seen <a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/katjav">@katjav</a>'s site...?<br />
<a href="https://www.katjaas.nl/home/home.html" rel="nofollow">https://www.katjaas.nl/home/home.html</a><br />
There is some of her thinking on this subject in / applied tech / low latency FIR filters.<br />
David.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/8</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/8</guid><dc:creator><![CDATA[whale-av]]></dc:creator><pubDate>Sat, 10 May 2025 17:38:21 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Sun, 11 May 2025 00:12:24 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/whale-av">@whale-av</a> thank you for the pointer, david! i've stumbled upon her site multiple times in the past years (mainly through old threads on this forum, i think). she made incredible contributions to the Pd world! i've yet to properly work through this stuff though ...</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/9</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/9</guid><dc:creator><![CDATA[ben.wes]]></dc:creator><pubDate>Sun, 11 May 2025 00:12:24 GMT</pubDate></item><item><title><![CDATA[Reply to RMS slow human on Tue, 13 May 2025 17:46:44 GMT]]></title><description><![CDATA[<p>This is what I managed to create. There is still a lot to fix, but I think it's a good starting point  <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/smile.png" title="smile" alt=":smile:" /><br />
<a href="/uploads/files/1747158374081-hypercurves-v1.0.pd">HyperCurves v1.0.pd</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/10</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/15114/rms-slow-human/10</guid><dc:creator><![CDATA[theunknownproducer]]></dc:creator><pubDate>Tue, 13 May 2025 17:46:44 GMT</pubDate></item></channel></rss>