Search found 6 matches

by SBAudio
Thu Jan 11, 2018 5:28 am
Forum: General
Topic: De-zipper code?
Replies: 23
Views: 69955

Re: De-zipper code?

Needed the dezipper code myself. This seems to be very close, and possibly more stable as well.


streamin i;
streamin duration;
streamout o;

float samplerate = 44100;
float coef;
float last;
float step;

coef = 1 / (duration / 1000 * samplerate);

step = step + (last != i) & (coef * (i - o ...
by SBAudio
Sat Dec 06, 2014 6:51 am
Forum: General
Topic: View bug??
Replies: 17
Views: 29059

Re: View bug??

Hi, I read this post a while back, and just a tip for anyone with the same problem:

If you translate a bitmap to a value that is not a integral value of the grid (e.g. X=10.3,Y=5.66), make sure the decimal is a multiple of 0.125 (at default 8x8 grid, 1 pixel = 0.125). So, change the values to X=10 ...
by SBAudio
Sat Nov 15, 2014 12:18 am
Forum: General
Topic: DropList Options
Replies: 7
Views: 13906

Re: DropList Options

Thank you Tulamide! That is exactly what i was looking for! The horizontal rule is just a separator line. I could create an item with the label as "____________", but if there is a way to do that is ruby, that'd be awesome!
by SBAudio
Fri Nov 14, 2014 7:25 am
Forum: General
Topic: DropList Options
Replies: 7
Views: 13906

DropList Options

Hi all,

I know with the DropList module you can input an array like shown below and get a list with 1 category and 3 sub items, but are there any tricks to get a horizontal rule or to disable an item? (e.g. right-clicking on your desktop shows a list with hr and disabled items)


Category ...
by SBAudio
Tue Apr 15, 2014 3:26 pm
Forum: General
Topic: Logarithmic Spectrum Analyzer
Replies: 4
Views: 14406

Re: Logarithmic Spectrum Analyzer

Thanks for explaining, I understand much better now! I think using lines was messing with my head or something, but yours works great!
by SBAudio
Mon Apr 14, 2014 5:33 am
Forum: General
Topic: Logarithmic Spectrum Analyzer
Replies: 4
Views: 14406

Logarithmic Spectrum Analyzer

Hello everybody! First time poster, long time creeper here (and synthmaker too) , and I figured It was finally time to ask for help.

So basically, I'm making a spectrum analyzer and I can't seem to figure out how to transform the frequency axis from linear to logarithmic. I'm not using the graph ...