admsyn / ofxAudioUnit

An openFrameworks addon which makes it easy to work with Audio Units on OSX and iOS
MIT License
120 stars 24 forks source link

Couldn't locate component for description on Yosemite #21

Closed vorg closed 9 years ago

vorg commented 9 years ago

example-1-hello and example-2-oscilloscope don't work on Yosemite. During the init the app crashes with "Couldn't locate component for description".

The others are fine..

admsyn commented 9 years ago

Interesting, I don't have Yosemite yet with which to test but maybe it's due to the speech synth unit (which is using some stuff deprecated in 10.8).

If you take the speech synth out of the oscilloscope example entirely does it still crash?

admsyn commented 9 years ago

Alright, just updated to Yosemite :)

It looks like the speech synth unit is the issue. The unit itself is still present on Yosemite, but the component manager refuses to find it from inside an OF app. It looks like they've removed the 32bit version of the AU, hence the fail. Not much that can be done from within ofxAudioUnit, though the two examples should probably be reworked to not require the speech synth.

Thanks for the heads up!