We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure if by design, but it is unusable with other synths (and it makes a great bass synth imo).
d1 $ note "c" # s "superchip"
should yield a note somewhere near [email protected]
Instead, it's a very sharp [email protected]
The text was updated successfully, but these errors were encountered:
Yes, it seems to be the freqtotone method of the AY ugen is not correct.
freqtotone
AY
*freqtotone { |freq| // Approximate empirical... //^(109300 / (freq - 3.70727)) ^(110300 / (freq - 0.5)) }
Here is a test:
( Ndef(\x, { var freq = AY.freqtotone(300); AY.ar(freq, freq, freq) * 0.1 }).play; ) Ndef(\x, { Saw.ar(300) * 0.1 }).play;
it would be really nice if you could find a way to tune it.
Here is the datasheet: https://www.cpcwiki.eu/index.php/Datasheet_AY-8913
Sorry, something went wrong.
I've moved the issue here: supercollider/sc3-plugins#348
No branches or pull requests
Not sure if by design, but it is unusable with other synths (and it makes a great bass synth imo).
should yield a note somewhere near [email protected]
Instead, it's a very sharp [email protected]
The text was updated successfully, but these errors were encountered: