Skip to content
New issue

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

Add more vowel qualities for the vowels function #907

Merged
merged 4 commits into from Jan 16, 2024

Conversation

fnordomat
Copy link

In addition to the [a] [e] [i] [o] [u] that were already present, this adds

ae aa oe ue y uh un en an on

corresponding to IPA vowels
[æ] [ɑ] [ø] [y] [ɯ] [ʌ] [œ̃] [ɛ̃] [ɑ̃] [ɔ̃]

Formant values and gains were tuned empirically,
additionally validated by comparing with

@yaxu
Copy link
Member

yaxu commented Jan 13, 2024

Nice! As far as I know Unicode should work, if you'd like to add the symbols as additional aliases.

@fnordomat
Copy link
Author

fnordomat commented Jan 13, 2024

I tried that and it worked, except for the nasal vowels, which the parser didn't like. But I'll add the others!

@yaxu
Copy link
Member

yaxu commented Jan 13, 2024

Aha, well free to add them all and open an issue for the parsing, I'm looking at the parser at the moment

@fnordomat
Copy link
Author

OK, doing that now!

Hm, it's a bit unfortunate that I chose y for the high back unrounded vowel (Turkish ı), because according to IPA, this stands for high front rounded (ü). 🤔

@fnordomat
Copy link
Author

fnordomat commented Jan 13, 2024

Maybe like this, as a compromise?

get æ() { return this.ae; },
get ø() { return this.oe; },
get ɑ() { return this.aa; },
get å() { return this.aa; },
get ö() { return this.oe; },
get ü() { return this.ue; },
get ı() { return this.y; },

@fnordomat
Copy link
Author

Added an issue for the parser thing and a commit to define 7 aliases.

@felixroos
Copy link
Collaborator

very nice! do we need to wait for #908 or can this be merged before?

@fnordomat
Copy link
Author

I'd like to suggest that it's independent. Unless one wants to use strictly IPA symbols, the choice of aliases is arbitrary

@felixroos felixroos merged commit 80d861c into tidalcycles:main Jan 16, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants