If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
Oscillators
Re: Oscillators
martinvicanek wrote:@tester: I deliberately left out sync inputs because naive hard syncing causes terrible aliasing. I thought it is useless and only increases CPU load. Do you have a particular use for it? And yes, it is possible to create a multiple oscillator (straightforward code replication) however there is not much to gain to be expected in terms of efficiency compared to individual modules, no overhead that could be shared.
When rendering audio in DAWs like reaper, often crucial to my projects is whether I can hard sync phase offsets or not. When playing with relatively slow modulations and relatively slow differential beats, syncing the and phases bands does matter and is very audible (i.e. not only "subtle effect"). I don't use "clear audio" for that because while I'm not sure if it does hard resync - it affects all stuff, and using just hard resync - I can manipulate individual selected units.
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
Feel free to donate. Thank you for your contribution.
- tester
- Posts: 1786
- Joined: Wed Jan 18, 2012 10:52 pm
- Location: Poland, internet
Re: Oscillators
@Martin, that's brilliant. Never seen such a simple implementation. You also adjust the initial offset, which I've never seen in any FS/SM Osc, haven't bothered to do that in my own Oscs.
The possibility to get a band-limited saw and a non-limited saw at the same time is great. Sometimes you might want to mix those to get some more "energy" (eg. for JP8000 kind of saws).
I'm wondering if it's possible to implement hard-sync in a naive way, by just hard syncing the non-limited wave.
The possibility to get a band-limited saw and a non-limited saw at the same time is great. Sometimes you might want to mix those to get some more "energy" (eg. for JP8000 kind of saws).
I'm wondering if it's possible to implement hard-sync in a naive way, by just hard syncing the non-limited wave.
-
MyCo - Posts: 718
- Joined: Tue Jul 13, 2010 12:33 pm
- Location: Germany
Re: Oscillators
MyCo wrote:I'm wondering if it's possible to implement hard-sync in a naive way, by just hard syncing the non-limited wave.
from what I can see in the code it should be. The BLEB seems to calculated from the saw itself, so it should work. there is one way to find out...
- KG_is_back
- Posts: 1196
- Joined: Tue Oct 22, 2013 5:43 pm
- Location: Slovakia
Re: Oscillators
I've updated the code versions, so it behaves like the ASM versions. Changed some tiny bits in the ASM as well, so all Oscs output a non band limited version of their waveforms as well.
Now that I've the right code version, I'll try to add the hard sync stuff.
Now that I've the right code version, I'll try to add the hard sync stuff.
- Attachments
-
- MVsClassicalOsc (+MyCo).fsm
- (72.66 KiB) Downloaded 1686 times
-
MyCo - Posts: 718
- Joined: Tue Jul 13, 2010 12:33 pm
- Location: Germany
Re: Oscillators
Hard sync doesn't work that way... A solution would be to mix in a minBLEP, when there is a hard sync. It's not that easy though...
-
MyCo - Posts: 718
- Joined: Tue Jul 13, 2010 12:33 pm
- Location: Germany
Re: Oscillators
Thanks for the clean-up, MyCo, much appreciated!
Of course you could easily add a naive hard sync, resulting in some 50% CPU overhead and terrible aliasing . I think MyCo refers to an alias-suppressed hard sync, which is a bit tricky to implement because you need subsample resolution for the sync event. I have a prototype here, never bothered to dig deeper.
Of course you could easily add a naive hard sync, resulting in some 50% CPU overhead and terrible aliasing . I think MyCo refers to an alias-suppressed hard sync, which is a bit tricky to implement because you need subsample resolution for the sync event. I have a prototype here, never bothered to dig deeper.
-
martinvicanek - Posts: 1328
- Joined: Sat Jun 22, 2013 8:28 pm
Re: Oscillators
Basically, when I play with my designs - when I find something interesting, I must be sure that when rendering audio or storing the presets, the "interesting" part remains and is replicable. In these situations I use manual hard resync button for groups of oscillators. As for the hard resync itself - it does not matter that it produces a glitch (sometimes it's even a helpful audible reference; or we talking about heavy long loud crackle?). An audio part can be deleted after render. What matters is - that audio layers are not out of sync in relation to each other.
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
Feel free to donate. Thank you for your contribution.
- tester
- Posts: 1786
- Joined: Wed Jan 18, 2012 10:52 pm
- Location: Poland, internet
Noise Generators
(MV's Oscillators Part III)
Noise is a useful ingredient in modelling wind or percussion instruments. The term “white noise” describes a hissing sound with a flat frequency spectrum, which is perceived as a sound with strong high-frequency content. One can also create noise with a power spectral density inversely proportional to the frequency. The result is called pink noise, and is used for instance by sound engineers to calibrate PA loudspeaker systems. Brown noise has a power density inversely proportional to the frequency squared, so it has more low frequency content in proportion.
Technically, white noise can be generated from a sequence of uncorrelated (pseudo)-random numbers. For musical applications, one needs random number generators with sufficiently long cycles, because the human ear will recognize a periodic pattern if the random sequence repeats itself after a few seconds or less. It is also important to have a seed input to be able to generate different sequences if needed.
A simple and fast way to generate random numbers is via the linear congruential method. The resulting white noise can be processed by a specially designed pinking filter to yield pink noise. The schematic has a fast white noise generator and pinking and "Browning" filters.
Wanna make some noise?
Noise is a useful ingredient in modelling wind or percussion instruments. The term “white noise” describes a hissing sound with a flat frequency spectrum, which is perceived as a sound with strong high-frequency content. One can also create noise with a power spectral density inversely proportional to the frequency. The result is called pink noise, and is used for instance by sound engineers to calibrate PA loudspeaker systems. Brown noise has a power density inversely proportional to the frequency squared, so it has more low frequency content in proportion.
Technically, white noise can be generated from a sequence of uncorrelated (pseudo)-random numbers. For musical applications, one needs random number generators with sufficiently long cycles, because the human ear will recognize a periodic pattern if the random sequence repeats itself after a few seconds or less. It is also important to have a seed input to be able to generate different sequences if needed.
A simple and fast way to generate random numbers is via the linear congruential method. The resulting white noise can be processed by a specially designed pinking filter to yield pink noise. The schematic has a fast white noise generator and pinking and "Browning" filters.
Wanna make some noise?
- Attachments
-
- MVsNoiseGen_1.1.fsm
- (90.59 KiB) Downloaded 1658 times
Last edited by martinvicanek on Wed Oct 22, 2014 7:13 pm, edited 1 time in total.
-
martinvicanek - Posts: 1328
- Joined: Sat Jun 22, 2013 8:28 pm
Re: Oscillators
Great stuff loving these. Thanks for sharing!
- Exo
- Posts: 426
- Joined: Wed Aug 04, 2010 8:58 pm
- Location: UK
Re: Oscillators
Thanks Martin!
Will play them soon.
FM can create noise to some degree,
and is the stock method in FS.
ty also for the background on the established science.
Can I get a quick reference on brown noise too?
I'll Google now actually, but would like to hear your breakdown.
Cheers
edit- here is the wiki->
http://en.wikipedia.org/wiki/Colors_of_noise
looks like the freq response defines it,
but within a broadly defined response, we can have all kinds of looking waves prolly,
on a 1024(say) sample window
Will play them soon.
FM can create noise to some degree,
and is the stock method in FS.
ty also for the background on the established science.
Can I get a quick reference on brown noise too?
I'll Google now actually, but would like to hear your breakdown.
Cheers
edit- here is the wiki->
http://en.wikipedia.org/wiki/Colors_of_noise
looks like the freq response defines it,
but within a broadly defined response, we can have all kinds of looking waves prolly,
on a 1024(say) sample window
Last edited by nix on Wed Oct 22, 2014 1:18 am, edited 1 time in total.
-
nix - Posts: 817
- Joined: Tue Jul 13, 2010 10:51 am
Who is online
Users browsing this forum: No registered users and 58 guests