Hello TigerBalm.
I've had this problem too, when building my synthesizer. You can access the audio objects from an array, like described in this post. ...
Type: Posts; User: flo
Hello TigerBalm.
I've had this problem too, when building my synthesizer. You can access the audio objects from an array, like described in this post. ...
Hello TigerBalm,
weird, I noticed too that somehow, there are different versions of the gui tool. (with different indexes? :confused:)
This here -> https://www.pjrc.com/teensy/gui/ does not...
Hi Richard,
thank you, I changed the coefficients and corrected the bug you found in the poly update routine and now it works great with relatively low CPU usage (also 4% for 2x oversampling and...
Hello all.
First, many thanks for all the effort, the filter sounds great! I am using the "simplified model", that is currently in the official Audio Library.
But it really is ressource-hungry....
I don't think it would fit the fixed-point, optimized style of the library. All the calculations are in float (and I feel not competent enough to implement the BLEPs and sync in integer math).
But...
I've already run into some light performance issues, so I don't want to "bloat" to code any more by moving to proper bleps. When using lots of polyphony (currently I'm at 16 voices for my synth), the...
Hello MarkT,
my implementation is only a two-sample polyBLEP, so it will only reduce the aliasing. What exactly do you mean with spurs? Spikes in the Frequency spectrum?
No, not yet. Maybe there's a fix from the faust developers, but I think not.
I have been given up on faust for Teensy because of the big data overhead.
Seems like different people are working in parallel at the same problems :D
I recently created a polyBLEP oscillator, you might have a look at it...
Hello there :)
I have been digging deep into the rabbit hole of anti-aliasing lately and have succeeded to finish an oscillator object for my Teensy synth, which I want to share with you.
Since...
I also have the same problem and accidently started a new thread here on the forum (didn't use the search function, shame on me).
I noticed, that you get those errors with " multiple definition of...
Hello folks,
I have started experimenting with Faust DSP objects for the Teensy Audio Library and came across some weird linker error. I already started an Github issue on the Faust Github website...
Maybe you got a short circuit in your keyboard matrix when pressing multiple keys? Short circuits crashing the Teensy happened to me once with a faulty pushbutton. But since you said, that your...
So, recently I have been experimenting with polyBLEPS a little bit.
I tried to implement the algorithm described in this blog:...
Hello folks!
I recently ran into the same aliasing problem while building a synthesizer. The standard sawtooth waveform is indeed strongly affected.
I'd ask, since @ohoomens built this really...
@ houtson
Thank you very much!
Hello @houtson
I would be very glad, if you could share those tables for the standard audio library waveshaper module. Where can I find them? :)
I should've spent some time with looking up the problem myself before posting, sorry.
I'm finally going to settle on this form:
int* ary = new int[sizeX*sizeY];
// ary[i][j] is then...
Many thanks!
Does this also work with 2D -Arrays?
Calling
AudioSynthWaveformModulated* oscillators = new AudioSynthWaveformModulated[16][3];
doesn't compile
Hello Folks!
I'm very happy with the Teensy Boards and am currently building a polyphonic synthesizer based on the Teensy 4.0 and the Audio Shield Rev C.
Therefore, I'd like to store some...